﻿/* 
FileName: tabs.css
Copyright: 2020 Conligo Corporation - All rights reserved
Version: 1.0
Description: Styling for custom tabs on main page.
*/
a {
    color: #135285;
}
.with-arrow .nav-link.active {
    position: relative;
}

    .with-arrow .nav-link.active::after {
        content: '';
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #61ce70;
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

/* lined tabs */

.lined .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
    background: none;
    color: #555;
    border-color: #61ce70;
}


/* Added to address the slow animation on page reloads of collapsing summary area */
.collapsing {
    transition: none !important;
}

