/* vim: set ts=2 sw=2 sts=2 et: */

/**
 * style.less
 *
 * Copyright (c) 2001-present Qualiteam software Ltd. All rights reserved.
 * See https://www.x-cart.com/license-agreement.html for license details.
 */
.checkout_fastlane_navigation {
    @media(min-width: @screen-sm-min) {
    	.tab + .tab {
        	margin-left: 5px;
    	}
    }

    @media(max-width: @screen-xs-max) {
        .tab {
            width: 100%;
            text-align: left;
        }
    }

	.tab {
		cursor: pointer;

		& > a[role='tab'] {
			border-radius: 0px;
    		padding: 10px 15px 5px 15px;
    		font-size: 16px;
    		text-decoration: none;
			background: none;
    		color: desaturate(@brand-primary, 20%);
    		border-bottom: 5px solid fade(@brand-primary, 60%);

    		&:hover{
    			background: fade(@brand-primary, 5%);
	    		color: saturate(@brand-primary, 30%);
	    		border-bottom: 5px solid saturate(@brand-primary, 30%);
    		}
		}

		&.active > a[role='tab'] {
    		color: @brand-primary;
    		border-bottom: 5px solid @brand-primary;
		}

		&.disabled > a[role='tab'] {
    		color: @gray-light;
    		border-bottom: 5px solid @gray-lighter;

    		&:hover{
    			background: none;
    		}
		}
	}
}