#spothit_notification {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 99999;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);

    .content {
        position: relative;
        padding: 1.5em 0.7em;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        min-height: 100px;
        height: fit-content;
        min-width: 450px;
        max-width: 50%;
        width: fit-content;
        width: 30%;
        background-color: white;
        border-radius: 25px;
        @extend %shadow-out;

        .state_icon {
            padding-bottom: 2.5rem;

            &.error {
                padding-bottom: 0;
                color: $red-danger;
                border: none;
            }

            &.success {
                padding-bottom: 0;
                color: $green-success;
            }

            font-size: 8em;
        }

        .message,
        .list {
            text-align: center;
            font-size: 20px;

            * {
                font-size: 18px;
            }

            ul {
                padding: 0;
            }
        }
    }

    #spothit_notification_close_btn {
        position: absolute;
        top: 1.5em;
        right: 1.5em;

        :hover {
            color: $red-danger;
            cursor: pointer;
            transition: ease 0.3s;
        }
    }

}

#spothit_advertising {
    position: fixed;
    padding: 1em;
    bottom: 1em;
    right: 1em;
    border-radius: 15px;
    max-width: 450px;
    background-color: white;
    @extend %shadow-out;

    .title {
        color: $blue-primary;
        font-weight: 300;
    }

    .content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;

        p {
            font-size: 15px;

        }

        a {
            font-size: 20px;
            text-align: center;
            font-weight: 600;
            text-decoration: none;
            color: $blue-primary;
        }
    }
}

#campaign_confirmation {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 99999;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);

    .campaign_confirmation {
        position: relative;
        padding: 1.5em;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        height: fit-content;
        min-width: 450px;
        width: 30%;
        background-color: white;
        border-radius: 25px;
        @extend %shadow-out;

        &-content, &-header {
            p {
                text-align: center;
                font-size: 20px !important;
            }

        }

        &-buttons {
            :nth-child(2) {
                background-color: $green-success;
            }
        }
    }
}

#carac_doubl {
    padding: 1em;
    background-color: $blue-secondary;
    color: white;
    border-radius: 10px;
    p {
        margin: 0;
    }
}