.cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 16px;
    background: var(--ylw);
    border: none;
    -webkit-box-pack: center;
    -ms-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    transition: 0.2s;
}
.cta:focus,
.cta:hover {
    outline: none;
    background: var(--d-ylw);
    color: #000;
}

.share-button {
    font-size: 12px;
    color: #fff;
    padding: 4px 16px;
    display: inline-flex;
    transition: 0.2s ease;
}
.share-button:hover {
    color: #fff;
}
.share-button i {
    width: auto;
    margin-right: 8px;
}
.fb-share {
    background: #3b5998;
}
.fb-share:hover {
    background: #2f426f;
}
.wp-share {
    background: #25d366;
}
.wp-share:hover {
    background: #128c7e;
}

.closer {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: var(--ylw);
    font-size: 20px;
}
