
:root{
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    scroll-padding-top: calc(var(--header-height)+10px);
    scroll-behavior: smooth;
    --background:#F2F6FC;
    --card:#FFFFFF;
    --border: #E2E8F0;
    --primary-blue:#2563EB;
    --positive:#16A34A;
    --negative:#DC2626;
    --text: #1E293B;
    --header-height: 40px;
}


/* nude Theme */
body.theme-nude {
  --background:#fff1e5;
}

/* Light Grayish Blue Theme */
body.theme-blue {
  --background:#F2F6FC;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    color: var(--text);
    font-family: var(--font-family);
    background-color: var(--background);

}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
.flex{
    max-width: 100%;
    display: flex;
    
}
.flex-row{
   display: flex;
   flex-direction: row;
   align-items: center;
}
.flex-col {
    display: flex;
    flex-direction: column;   
}
#main-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: var(--header-height);
    width: 100%;
    background: var(--background);
    box-shadow: rgba(0, 0, 0, 0.01) 0px 1px 1px;

}
#start{
    justify-content: start;
    align-items: center;
    flex-basis:22%;
    padding-left: 10px;
   
}

.logo-stock,
.logo-insides{
    font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
    letter-spacing: -0.2px;
    line-height: 1;
    transition: opacity .25s ease, color .25s ease;
}

.logo-stock{
    color: #7d2eff;
    font-weight: 700;
}

.logo-insides{
    color: #7d2eff;
    font-weight: 400;
    opacity: .82;
    padding-right: 10px;
}


.logo-stock:hover{
    transform: translateY(-1px);
}

.logo-insides:hover{
    opacity: 1;
}
#center{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 56%;
}
#end{
    justify-content: end;
    align-items: center;
    flex-basis: 22%;
    padding-right: 10px;
}
#second-nav{
    display: flex;
    justify-content: space-between;
}
.grid-layout {
    display: grid;
    grid-template-columns: 22fr 56fr 22fr;
    column-gap: 1em;
    background-color: var(--background);
    margin-bottom: 5%;
}


.m-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
    grid-gap: 1em;
    margin-top: 1em;
}

#mountroot {
    clear: both;
   /* min-height: 200vh;*/
    height: 100%;
    margin-bottom: 2em;
}

.main-h {
    flex-basis: 744px;
}

header {
    grid-column: span 3;
    text-align: center;
    position: sticky;
    top: 0;
    background-color: var(--background);
    z-index: 1000;
}

nav {
    grid-column: span 3;
    background-color: var(--background) !important;
}

main::-webkit-scrollbar {
    width: 6px;
}
main::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
/* New class for scrollable middle column */
.scrollable-content {
    overflow-y: auto;
    margin-top: 10px;
    
}
.scrollable-content::-webkit-scrollbar{
    width: 0; height: 0;
}
main h1 {
    margin: 0 !important;
    font-size: 1.8em;
    max-width: 800px;
    font-family: var(--font-family);
    color: var(--text);
}

main h2 {
    margin: 0 !important;
    font-size: 1.4em;
    max-width: 800px;
    font-family: var(--font-family);
    color: var(--text);
}

main image {
    width: 100%;
}

main p {
    line-height: 2em;
    font-size: 1em !important;
    color: var(--text);
}
main{
    position:sticky;
    align-self:start;
}

.center-col{
    position:sticky;
    top:10px;
    align-self:start;
}

aside {
    padding: 0em 1em;
    background-color: var(--background);
}

footer {
    grid-column: span 3;
    text-align: center;
    border-top: 1px solid #eee;
    background-color: #363d42;
    padding-top: 25px;
    padding-bottom: 50px;
}

/* Responsive */
@media screen and (min-width: 1400px) {
    .grid-layout {
        grid-template-columns: 1fr minmax(auto, 900px) 1fr;
        column-gap: 1em;
    }
}

@media screen and (max-width: 1200px) {
    nav {
        grid-column: span 3;
        border-right: 0;
    }

    main {
        grid-column: span 2;
        padding-left: 15px;
    }
}

@media screen and (max-width: 980px) {
    .grid-layout {
        column-gap: 10px !important;
    }
    .m-grid {
        grid-template-columns: 1fr;
    }
    #mountroot {
        margin-top: 0 !important;
        min-height: 60vh !important;
    }
    nav, main, aside {
        grid-column: span 3;
    }
    aside {
        border-left: 0;
        background-color: var(--background); 
    }

    main {
        margin-top: 0px !important;
        padding: 0em 1em;
    }
    main h2 {
        font-size: 1.2em;
    }

    #nav-sticky{
        position: sticky;
        top: var(--header-height);
        z-index: 100 !important;
        background: var(--background) !important; 
    }
}

ins.adsbygoogle[data-ad-status='unfilled'] {
    display: none !important;
}

.ad-box {
    display: flex;
    justify-content: center;
}

.mark-row{
    border: 2px solid #ff0000;
}





.blink-text{    
  -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Safari 4+ */
  -moz-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Fx 5+ */
  -o-animation: NAME-YOUR-ANIMATION 1s infinite;  /* Opera 12+ */
  animation: NAME-YOUR-ANIMATION 1s infinite;  /* IE 10+, Fx 29+ */
        
    }
@-webkit-keyframes NAME-YOUR-ANIMATION {
        0%,49%  { color: var(--color-gray);}
        50%,100% { color: var(--color-red);}
}
.market{
   margin-top: 40px !important;
}
