/* =========================================
   WHISTLEBLOWING CHANNEL
   desktop Separator 
   ========================================= */

.whistle-right {
    position: relative;
    padding-left: 40px !important;
}

/* Vertical separator */
.whistle-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Mobile */
@media (max-width: 767px) {
    .whistle-right {
        padding-left: 0 !important;
    }

    .whistle-right::before {
        display: none;
    }
}