/*!
 * AD Weave Design System (ad-link.css)
 * Version: 1.0
 * License: GNU General Public License v2.0 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 */

/* This .css file is used for create link, hyperlink and content link classes and standards */

/* --------------------------------------------
/* Table of Content
/* --------------------------------------------
   Link with Default Structure
   Link with Sizing Variations
   Link with Dark Color Style
*/

/* ============================================
/* AD Link Component .ad-link prefix
============================================ */
.ad-link {
    font-family:var(--text-link-font-family);
    font-size:var(--text-link-font-size);
    font-weight:var(--text-link-font-weight);
    color:var(--text-link-color);
    text-decoration:underline;
    background-color:transparent;
    border:none;
}
.ad-link.ad-link-lg {
    font-size:var(--cc-font-size-l-large);
}
.ad-link:hover,
.ad-link:focus,
.ad-link:active{
    color:var(--text-link-color-hover);
    text-decoration:none;
    background-color:transparent;
    border:none;
}
.ad-link:focus,
.ad-link:active {
    color:var(--text-link-color-active);
    text-decoration:none;
}
button.ad-link:not(:disabled):hover,
button.ad-link:not(:disabled):focus,
button.ad-link:not(:disabled):active {
    background-color: var(--btn-bg-transparent);
}

/* Link Dark Style */
.ad-link.ad-link-dark {
    color:rgba(var(--cc-black-alpha), 0.67);
}
.ad-link.ad-link-dark:hover,
.ad-link.ad-link-dark:focus,
.ad-link.ad-link-dark:active {
    color:rgba(var(--cc-black-alpha), 0.87);
}