.slack-feed {
    padding-bottom: 40px;
}
.cta_btn {
    margin-top: -20px;
    padding-bottom: 40px;
    text-align: center;
}

.cta_btn a,
.forum button{
    position: relative;
    overflow: hidden;
    transition: background .2s ease 0s;
    padding: 16px 20px;
    width: 100%;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #043071;
    border: 1px solid #043071;
}
.cta_btn a:after,
.forum button:after{
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.25),transparent);
    z-index: -1;
}
.cta_btn a:hover,
.forum button:hover{
        border: 1px solid #942332;
    background: #942332;
    transition-delay: .25s;
}
.cta_btn a:hover:after,
.forum button:hover:after{
    animation: shine .75s cubic-bezier(.01,.56,1,1);
    z-index: 1;
}
@keyframes shine {
  to { left:-200%; }
}
.posts_forum h2 {
    text-align: center;
}
.forum {
    margin: 20px auto 30px auto;
    max-width: 700px;
    border: 1px solid rgb(204,204,204,0.5);
    border-radius: 8px;
    padding: 10px 20px;
}

.forum textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-family: inherit;
}

.forum .file_upload input {
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
}


.loader_products {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 70%;
    z-index: 33;
      background: #fff;
    border-radius: 8px;
}
.forum.active .loader_products{
  display: flex;
}
.forum {
    position: relative;
    z-index: 1;
}

.forum .file_upload input {
    display: none;
}

div#info {
    display: none;
}
div#info {
    background: #f5f2f2;
    border: 1px solid #ccc;
    padding: 10px 10px 10px 10px;
    margin: 20px 0;
}

div#info p {
    margin: 0 0 10px 0;
    font-weight: 800;
}

div#info p:last-child {
    margin: 0;
}

div#info p span {
    font-weight: normal;
    color: #043071;
    font-size: 80%;
}
.file_upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    max-width: 400px;
    margin: 15px auto 20px auto;
    padding: 15px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.file_upload label span {
    display: inline-block;
}

.file_upload label svg {
    margin-right: 10px;
    width: 25px;
    height: auto;
}