﻿:root {
   --tb-red: #D92045;
    --font:'Montserrat', sans-serif;
    --background: #fafaff;
}
body {
    font-family: var(--font);
    background: var(--background);
}

.no-ext {
    display: none;
}

.no-ext.active {
    display: block;
}
.logo-container {
    text-align: center;
    padding: 50px 0 50px 0;
    background: #fff;

    img {

        max-width: 200px;
    }
}

.bot-container {
    display: block;
    width: 100%;
    position: relative;
    background: #fff;

    &::before {
        content: '';
        height: 25%;
        width: 100%;
        bottom: 0;
        left: 0;
        position: absolute;
        background: var(--background);
    }

    img {
        margin: 0 auto;
        display: block;
        width: 100%;
        max-width: 200px;
        position: relative;
        z-index: 20;
    }
}



.content-container {
    padding: 10px 10px 50px 10px;
    background: #fafaff;
    margin: 0 auto;
    max-width: 492px;

    h2 {
        color: #000;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 160%; /* 32px */
        margin-bottom: 24px;

        .callout {
            display: block;
            color: var(--tb-red)
        }
    }

    p {
        color: #262626;
        line-height: 1.3;
    }

    a {
        background: var(--tb-red);
        border-radius: 50px;
        text-decoration: none;
        text-align: center;
        display: block;
        box-shadow: 0px 4.54545px 4.54545px rgba(0, 0, 0, 0.25);
        color: var(--Colors-Background-White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        margin: 0 auto;
        width: calc(100% - 10px);
        line-height: normal;
        padding: 16px;
        align-self: stretch;

        i {
            margin: 0 8px 0 0;
        }
    }

    .failedNotifiers {
        margin: 0 auto 40px;
        padding: 0;

        p {
            font-size: 14px;
        }
        h3 {
            margin: 8px 0;
            font-size: 20px;
        }

        li {
            padding: 16px;
            display: flex;

            &.highlighted {
                border-radius: 8px;
                background: #FFF;
                box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
            }

            &.active {
                i.untitled-ui-x-close-line {
                    display: block;
                }

                i.untitled-ui-check-line {
                    display: none;
                }
            }
        }

        i {
            margin: 8px;
            padding: 5px;
            color: #fff;
            font-weight: bold;
            border-radius: 24px;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);

            &.untitled-ui-x-close-line {
                display: none;
                background: #E1123D;
            }

            &.untitled-ui-check-line {
                display: block;
                background: #6FC032;
            }
        }
    }

    .os-container {
        text-align: center;
        display: none;

        &.active {
            display: block;
        }

        .os-icons {
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin: 5px;
            display: flex;

            img {
                height: 28px;
                width: 28px;
            }
        }
    }

    .copy-link-container {
        display: none;
        text-align: center;

        &.active {
            display: block;
        }
    }

    .get-chrome-container {
        display: none;

        &.active {
            display: block;
        }
    }

    .get-extension-container {
        display: none;

        &.active {
            display: block;
        }
    }
}

