@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --primary: #023E7D;
    --secondary: #8f94fb;
    --light: #F4F7FE;
    --dark: #14183E;
    --bg-secondary: #d0d6df;
    --font-family: 'Montserrat', sans-serif;
    --blue: #1569b2;
    --skyblue: #45c5d2;
    --skylighblue: #d8f9ff;
    --green: #a0cc3c;
    --font: "Poppins", sans-serif;
    --white: #ffff;
    --rfs-title: 2.3rem --rfs-sub-title: calc(0.5rem + 0.5vw);
    --bg-grey: #F8F8F8
}

* {
    margin: 0px;
    padding: 0px;
}

body,
html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    /* font-weight: 400; */
    font-style: normal;
}


.img-effect {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.text-bg-blue {
    background: hsla(211, 97%, 25%, 1);

    background: linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

    background: -moz-linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

    background: -webkit-linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#023E7D", endColorstr="#0471E3", GradientType=1);

    color: white !important;
}



.text-bg-lightblue {
    background-color: var(--secondary) !important;
    color: #0000 !important;
}

.text-blue {
    color:var(--primary) !important;;
}

.display-between {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    /* margin-top: .5rem !important;
    margin-bottom: .5rem !important */
}

.text-justify {
    text-align: justify;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: lightgray;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--fc-primary);
    border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* Stcok Marquee */
/* .stock-marquee {
    margin-top: 1rem;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 50px;
    overflow-x: hidden;
} */

.stock-marquee {
    margin-top: 1rem;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 110px;
    overflow-x: hidden;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}





.btn-xs {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    border: 0px;
    border-radius: 0.5rem;
    text-decoration: none !important;
}





.share-list {
    font-size: 13px;
    height: 400px;
    overflow-y: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.share-list::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.share-list {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


.footer {
    background-color: var(--primary) !important;
    color: white !important;
}

.footer .footer-title {
    font-size: 16px;
}

.footer-subtitle li a {
    font-size: 12px !important;
    text-decoration: none !important;
    color: #ffff !important;
}



.stock-bg{
    background-image: url('../images/wave-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom;
}



.share-table{
    height: 500px;
}

.share-table-img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.share-thead th{
    
    background: hsla(211, 97%, 25%, 1);

background: linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

background: -moz-linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

background: -webkit-linear-gradient(180deg, hsla(211, 97%, 25%, 1) 0%, hsla(211, 97%, 45%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#023E7D", endColorstr="#0471E3", GradientType=1);
    color: white;
}

.share-name {
    display: inline-block;
}

.table .share-thead th,
.table td {
    border: none;
    font-size: 12px;
}

.table tbody td:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.table tbody td:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

@media(max-width:575px) {
    .table-container {
        width: 125%;
        padding: 20px 10px;
    }
}