.popover {
    position: fixed;
    z-index: 2258594000;
    top: 0;
    left: 0;
    right: 0;
    -webkit-font-smoothing: initial;
    font-size: 14px;
}
.popover__box {
    font-family: Roboto, Arial, sans-serif;
    box-sizing: border-box;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.22);
    background: #fff;
    padding: 1.286em;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(-100%);
    transition: transform 0.2s ease-out;
}
.popover__box.popover__box--slide-down {
    transform: translateY(0);
}
.popover__box-header {
    display: flex;
    align-items: flex-start;
}
.popover__box-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    margin: 0.5em 0.25em 0 0;
}
.popover-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    margin-right: 20px;
    background-color: #359b13;
    padding: 5px;
}
.popover-icon img {
    display: block;
    max-width: 100%;
}
.popover-message {
    box-sizing: border-box;
    padding: 0 0.2em 0 0;
    font-size: 1.3em;
    line-height: 1.45em;
    -o-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    color: #666;
}
.popover-btn {
    cursor: pointer;
    padding: 0.714em 1.5em;
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 400;
    border: none;
    text-decoration: none;
}
.popover-btn.popover-btn--primary {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 6px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    background: #359b13;
}
.popover-btn.popover-btn--primary:hover {
    color: #fff;
    text-decoration: none;
}
.popover-btn.popover-btn--primary:visited {
    color: #fff;
}
.popover-btn.popover-btn--secondary {
    box-shadow: none;
    color: #359b13;
    background: #fff;
}
.popover-btn:hover {
    color: #fff;
    text-decoration: none;
}
.popover-btn:visited {
    color: #fff;
}