/**
 * @version     1.0
 * @package     prevent_blindness
 * @copyright   Copyright (C) 2024. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Mike Hill <mike@firstresultmedia.com> - https://firstresultmedia.com
 */

.frm-tabs {
	margin-top:20px;
}
.frm-tabs > ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 2px solid #7a7677;
}

.frm-tab > a {
    display: block;
    padding: .75rem 1.25rem;
    color: #404040;;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    margin-bottom: -2px;
    background: 0 0;
    border: 2px solid transparent;
  	border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.frm-tab-active a {
    color: rgb(21, 93, 155);
    background-color: #fff;
    border-top-color: #7a7677;
    border-left-color: #7a7677;
    border-right-color: #7a7677;
    border-bottom-color: #fff;
}



