.wpgcp-popover,
.wpgcp-popover * {
    box-sizing: border-box;
}
.wpgcp-popover {
    position: fixed;
    bottom: 0;
    z-index: 2147483647;
    max-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 -16px 48px rgb(0 0 0 / 25%), 0 0 0 2160px rgb(0 0 0 / 25%);
    padding: 2em;
    margin: 2em;
    border-radius: 24px;
}

.wpgcp-popover--grid-container {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
}

@media all and (max-width: 768px) {
    .wpgcp-popover--grid-container {
        grid-template-columns: 1fr;
    }
}

.wpgcp-popover--grid-container svg {
    width: 48px;
    background-color: #dfe6e9;
    padding: 4px;
    border-radius: 100%;
}
.wpgcp-popover--actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.wpgcp-popover--actions a {
    padding: 8px 24px;
    border: 2px solid #2d3436;

    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #2d3436;
    color: #fff;
    z-index: 1;
}
.wpgcp-popover--actions a.faded {
    border-color: #636e72;
    background: transparent;
    border: 0 none;
    color: #636e72;
}

.wpgcp-popover--actions a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: #dfe6e9;
    transition: all 0.3s ease;
}
.wpgcp-popover--actions a:hover {
    color: #000;
}
.wpgcp-popover--actions a:hover:after {
    left: 0;
    width: 100%;
}
.wpgcp-popover--actions a:active {
    top: 2px;
}
