<style>
.da_review_prv .dsm_card_badge_text {
position: absolute;
padding: 5px 5px!important;
width: 50px;
height: 70px;
border-radius: 0;
font-size: 12px;
border-style: solid;
border-width: 0;
line-height: 1.4em;
z-index: 3;
-webkit-clip-path: polygon(100% 0,100% 100%,50% 80%,0 100%,0 0);
clip-path: polygon(100% 0,100% 100%,50% 80%,0 100%,0 0);
}
.reveal_button{
cursor: pointer;}
.ba-job-card .bricks-shape-divider {
border-radius: 00px;}
.da_review_prv {
-webkit-clip-path: polygon(100% 0%,calc(100% - 0.75rem) 50%,100% 100%,0 100%,0% 50%,0 0);
clip-path: polygon(100% 0%,calc(100% - 0.75rem) 50%,100% 100%,0 100%,0% 50%,0 0);
margin: 1rem 0;
padding: 1.5rem 2.5rem 1.5rem 1.5rem!important;
}
</style>
<script>
jQuery(document).ready(function($) {
//Hide all content to be revealed
$('.reveal_content').hide();
//Create the click event for each reveal button
$('.reveal_button').click(function (e) {
//Prevent the default button action (i.e. redirecting to a url)
e.preventDefault();
//Get the parent section for the button clicked
$parent_section = $(this).closest('.reveal_section');
//Remove the opened class from all other buttons
$('.reveal_button').not(this).removeClass('opened');
//Close all content in other sections
$('.reveal_section').not($parent_section).find('.reveal_content').fadeOut('slow');
//Hide/Reveal the content in the same section as the button clicked
$(this).addClass('opened');
$parent_section.find('.reveal_content').each(function() {
$(this).slideToggle();
}
)
});
}
)
</script>