.popup-notice {
    position: fixed;
    bottom: 10px;
    left: 10px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    padding: 35px 30px 30px 30px;
    z-index: 999;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
    transform: translateY(0);
    opacity: 1;

    &.type-form {
        .popup-notice-icon {
            display: none;
        }
    }
}

.popup-notice:not(.popup-triggered) {
    transform: translateY(120%);
    opacity: .8;
}

a.popup-notice-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    margin-top: 10px;
    background: var(--blue-button);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
}

a.popupo-notice-button:hover {
    background: var(--blue-button-hover);
}

button.popup-notice-close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    transform: scale(1.4, 1);
    background-color: transparent;
}

h3.popup-notice-headline {
    margin-bottom: 8px;
    max-width: calc(100% - 20px);
}

.popup-form-container {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-notice-inner .boxed_wrapper {
    background: transparent;
    padding: 0px;
}

@media (max-width:768px) {
    .popup-notice {
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 8px 8px 0 0;
        padding: 30px 20px 20px 20px;

        &.type-form {
            background-color: orange;
            left: 10px;
            bottom: 10px;
            border-radius: 999px;
            max-width: fit-content;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            height: 45px;
            width: 45px;

            .popup-form-container {
                min-height: 0px;
            }

            .popup-notice-icon {
                display: block;
                margin-bottom: -2px;

                img {
                    width: 25px;
                    height: 25px;
                }
            }

            .popup-notice-inner {
                display: none;
            }
        }
    }
}