/**
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.txt
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to a newer
* versions in the future. If you wish to customize this module for your
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
*
* @author Webkul IN
* @copyright Since 2010 Webkul
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/

.ps-share-toggle,
.ps-share-toggle:focus,
.ps-share-toggle:active,
.ps-share-toggle:focus-visible {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cc-primary);
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}
.ps-share-toggle::-moz-focus-inner {
    border: 0;
}
.ps-share-wrapper {
    position: relative;
    display: inline-block;
}
.ps-share-toggle {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cc-primary);
}
.ps-share-toggle i {
    font-size: 18px;
}
.ps-share-dropdown {
    position: absolute;
    top: 30px;
    right: 0;
    width: 130px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 9999;
}
.ps-share-wrapper.active .ps-share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ps-share-dropdown li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 14px;
    color: #555;
}
.ps-share-dropdown li a:hover {
    color: var(--cc-primary);
}
.ps-share-dropdown li a i {
    font-size: 18px;
}
.wk-social-share-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.wk-related-categories a {
    margin-right: .8rem;
}