/* Global keyboard focus style */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 3px solid #005FCC !important;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Better: show only for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #005FCC !important;
    outline-offset: 3px;
    /* box-shadow: 0 0 0 4px rgba(0, 95, 204, 0.25); */
}

/* Products Tab : Sub Menu */
.sub-menu {
    display: none;
}

.sub-menu.show {
    display: block;
}

/* keyboard focus */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #005FCC !important;
    outline-offset: 3px;
}

/* Products dropdown */
.inlineBlk:focus-within>.sub-menu,
.inlineBlk:hover>.sub-menu {
    display: block;
}

/* India submenu */
.productIndia .sub-menu-inner {
    display: none;
}

/* Open when hovering India */
.productIndia:hover .sub-menu-inner {
    display: block;
}

/* Open when keyboard focus is on India */
.productIndia:focus-within .sub-menu-inner {
    display: block;
}

/* visible focus */
a:focus-visible {
    outline: 3px solid #005FCC !important;
    outline-offset: 3px;
}

.productIndia.active .sub-menu-inner {
    display: block;
}

.toggle-button {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

#indiaMenu {
    display: block !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Trending Blogs Css for : Keybord navigation */
.articleItem:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 4px;
    border-radius: 6px;
}

/* Execution Partners Css For : Keyboard Navigation */
.partnerBtn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    /* remove default browser focus */
}

/* remove browser focus ring */
.partnerBtn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* image styling */
.partnerBtn img {
    display: block;
    max-width: 250px;
    border-radius: 16px;
}

/* Single custom focus border */
.partnerBtn:focus-visible img {
    outline: 3px solid #005FCC;
    outline-offset: 3px;
    border-radius: 16px;
}

/* Scroll Down Arrow Section */
#goDown {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #FAF7E9;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Down arrow */
.downArrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #958F7B;
    transition: transform .3s;
}

/* Up arrow */
.downArrow.up {
    transform: rotate(180deg);
}

#goDown:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 4px;
}

/* FAQ CSS */
.tabs-container label:focus-visible {
    outline: 3px solid #005FCC;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Screen Reader Css */

#productsMenu {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 4px;

    text-decoration: none;
    line-height: normal;

    font-size: 16px;
    color: #000;
    font-family: 'GTAmerica-Regular';
    letter-spacing: 1px;
}

#productsMenu:hover {
    color: inherit;
}

#productsMenu:focus {
    outline: 2px solid #17778C;
    /* accessible focus */
    outline-offset: 2px;
}

/* Video Description : Screen Reader Css */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* AlphaBaskets Cards Screen Reader Css */
.prodListing li .productWrp .prodInfo .prodLabel {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #0b5e26;
    font-weight: 600;
}

.prodListing li .productWrp .prodInfo .prodValue {
    width: 100%;
    float: left;
    font-size: 32px;
    color: #0b5e26;
    font-weight: 700;
}

/* Alphastock Screen Reader css */
.cardContent .innerCnt {
    display: inline-block;
    text-align: center;
}

.cardContent .innerCnt .cardLabel {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cardContent .innerCnt .cardValue {
    font-size: 25px;
    color: #444;
    font-weight: 700;
    /* make value bold like h2 */
    line-height: 1.2;
    margin-top: 3px;
}

.cardContent .innerCnt .cardValue span {
    color: green;
    font-size: 14px;
    font-weight: 500;
}

/* Skip To main Content Css */


.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    /* hidden */
    padding: 0.75rem 1rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus,

.skip-link:focus-visible {
    top: 1rem;
    /* visible */
}