﻿html {
    scroll-behavior: smooth;
}

:root {
    /* Margin for items */
    --margin-items: 24px;
    /* Primary */
    --font-family-primary: 'Roboto', sans-serif;
    --font-weight-primary-regular: 600;
    /* Secondary */
    --font-family-secondary: 'Roboto', sans-serif;
    --font-weight-secondary-regular: 400;
    --font-weight-secondary-bolder: 700;
}


@media (max-width:1440px) {
    :root {
        --margin-items: 14px;
    }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.landing {
    max-width: 1120px;
    margin: 50px auto 0;
}

.landing-first-half > div > h1 {
    font-size: 36px;
    line-height: 45px;
    color: #0f2137;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    margin-top: revert;
}

.landing-first-half > div > span {
    color: #343d48cc;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


.landing-first-half > div > h1 > br {
    display: none;
}

@media (min-width: 1366px) {
    .landing-first-half > div > h1 > br {
        display: block;
    }
}

@media (min-width: 1520px) {
    .landing {
        padding: 0 0 0 9vw;
    }
}

@media (min-width: 960px) and (max-width: 1519px) {
    .landing {
        padding: 0 0 0 6vw;
    }
}

@media (min-width: 960px) {
    .landing {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1520px;
        margin: 0 auto 5vh;
    }

    .header {
        max-width: 1350px;
        margin: 0 auto;
        padding: 0 4vw;
    }

    .landing-first-half {
        width: 50%;
    }


        .landing-first-half > div {
            width: 74%;
        }

            .landing-first-half > div > h1 {
                font-size: 50px;
                line-height: 60px;
            }

            .landing-first-half > div > span {
                font-size: 20px;
            }
}

@media (max-width: 575px) {
    .landing-first-half > div > h1 {
        font-size: 28px;
        line-height: 1.5;
    }
}


@media (min-width: 960px) and (max-width: 1366px) {
    .landing-first-half > div > h1 {
        font-size: 40px;
        line-height: 1.2;
    }
}


@media (max-width: 959px) {
    .landing-first-half {
        text-align: center;
        padding: 0 4vw;
        max-width: 500px;
        margin: 0px auto;
    }

    .landing-second-half {
        text-align: center;
    }
}

.landing-first-half > div > button {
    background-color: rgb(106, 82, 253);
    color: white;
    padding: 15px 50px;
    margin: 30px 0;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: rgb(106, 82, 253);
}

    .landing-first-half > div > button:hover {
        opacity: 90%;
    }

    .landing-first-half > div > button > a {
        text-decoration: none;
        color: inherit;
    }

.landing-second-half .phone-background {
    position: relative;
}

@media(max-width: 1900px) and (min-width: 1701px) {
    .phone-background {
        max-width: 95% !important;
        max-height: 95% !important;
    }
}

@media(max-width: 1700px) and (min-width: 1400px) {
    .phone-background {
        max-width: 90% !important;
        max-height: 90% !important;
    }

    .phone {
        height: 83% !important;
    }
}

@media(max-width: 1399px) and (min-width: 1100px) {
    .phone-background {
        max-width: 85% !important;
        max-height: 85% !important;
    }

    .phone {
        height: 83% !important;
    }
}

@media(max-width: 500px) {
    .landing-second-half .phone-background {
        max-width: 140%;
        right: 10%;
    }
}

.landing-second-half .phone {
    position: absolute;
    left: 20%;
    top: 9%;
    height: 85%
}

.landing-second-half {
    overflow-x: hidden;
}

.site-head {
    padding: 30px;
}

@media(max-width : 759px) {
    .site-head {
        padding: 4vw;
    }
}

.phone-background {
    max-width: 100%;
    max-height: 100%
}

.site-nav-item {
    display: inline-block;
    padding: 5px 25px;
    color: #696969;
    font-weight: 600;
    font-size: 17.5px;
    opacity: 0.7;
}

    .site-nav-item > a {
        text-decoration: none;
        color: black;
    }

    .site-nav-item:hover {
        text-decoration: none;
        opacity: 1;
    }

.site-nav-item-selected {
    color: #44b3e0 !important;
}

    .site-nav-item-selected > a {
        text-decoration: none;
        color: inherit;
    }

.site-nav-icon {
    height: 15px;
    margin: -5px 0 0;
}

.site-logo {
    height: 50px;
}

.zerodha-logo {
    height: 25px;
}

.site-mast {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(min-width: 971px) and (max-width: 1300px) {
    .site-nav-item {
        padding: 5px 6px;
        font-size: 15px;
    }
}

@media(min-width: 971px) {
    .site-mast-right {
        display: flex;
        align-items: center;
    }

    .site-mast-right-mobile {
        display: none;
    }
}

@media(max-width: 970px) {
    .site-logo {
        height: 40px;
    }

    .site-mast-right {
        display: none;
    }

    .site-mast-right-mobile > img {
        transform: scaleX(-1);
        height: 25px;
    }
}

.header {
    max-width: 1350px;
    margin: 0 auto;
}

.global-footer,
.pinned-section,
.loop-section,
.special-section {
    margin-right: auto;
    margin-left: auto;
    max-width: 1350px;
}

.infographic-section {
    margin-bottom: 10vh !important;
}

@media(max-width: 1368px) {

    .loop-section,
    .global-footer {
        margin: 0 15px;
    }
}

.pinned-title {
    font-weight: 600;
}


@media (min-width: 1441px) {
    .pinned-image {
        height: 230px;
    }
}

@media (max-width: 1440px) and (min-width: 1281px) {
    .pinned-image {
        height: 200px;
    }
}


@media (max-width: 1280px) and (min-width: 1025px) {
    .pinned-image {
        height: 180px;
    }
}



@media (min-width: 1281px) {
    .loop-item-image {
        height: 200px;
        min-height: 200px;
    }

    .loop-item-title {
        font-size: 22px;
    }
}

@media (max-width: 1280px) and (min-width: 1025px) {
    .loop-item-image {
        height: 180px;
        min-height: 180px;
    }
}

@media (min-width: 480px) and (max-width: 1280px) {
    .loop-item-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .loop-item-title {
        font-size: 20px;
    }
}

@media (max-width: 1281px) {
    .loop-item-image {
        height: 150px;
        min-height: 150px;
    }
}

/**********************************************************/

.containerClass {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 94px 6px rgba(107, 83, 254, 0.1);
    padding: 80px 0;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .juFLto {
        max-width: 750px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .juFLto {
        max-width: 970px;
        width: 100%;
    }
}

@media (min-width: 1220px) {
    .juFLto {
        max-width: 1350px;
        width: 100%;
    }
}

.kYJEJY {
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #32325d;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
    -webkit-letter-spacing: -0.010em;
    -moz-letter-spacing: -0.010em;
    -ms-letter-spacing: -0.010em;
    letter-spacing: -0.010em;
}

@media screen and (min-width: 575px) {
    .kYJEJY {
        line-height: 32px;
    }
}

@media screen and (min-width: 768px) {
    .kYJEJY {
        line-height: 40px;
    }
}

@media screen and (min-width: 990px) {
    .kYJEJY {
        line-height: 50px;
    }
}

@media screen and (min-width: 1440px) {
    .kYJEJY {
        line-height: 55px;
    }
}

@media screen and (min-width: 575px) {
    .kYJEJY {
        text-align: center;
    }
}

@media screen and (min-width: 575px) {
    .kYJEJY {
        font-size: 26px;
    }
}

@media screen and (min-width: 768px) {
    .kYJEJY {
        font-size: 30px;
    }
}

@media screen and (min-width: 990px) {
    .kYJEJY {
        font-size: 36px;
    }
}

@media screen and (min-width: 1440px) {
    .kYJEJY {
        font-size: 40px;
    }
}

.ftqvGS {
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 16px;
    color: #525f7f;
    font-weight: 400;
    text-align: center;
    line-height: 28px;
}

@media screen and (min-width: 575px) {
    .ftqvGS {
        text-align: center;
    }
}

@media screen and (min-width: 575px) {
    .ftqvGS {
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 768px) {
    .ftqvGS {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 990px) {
    .ftqvGS {
        margin-bottom: 30px;
    }
}




@media screen and (min-width: 1440px) {
    .ftqvGS {
        margin-bottom: 45px;
    }
}

.fiwyRa {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gSuvvI {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-right: auto;
    margin-bottom: 25px;
    position: relative;
    width: 450px;
}

    .gSuvvI .field-wrapper {
        height: 100%;
    }

.FXrPt .field-wrapper {
    position: relative;
}

.gSuvvI .email_input {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 10px;
}


    .gSuvvI .email_input input {
        height: 100%;
        background: #fff;
        font-size: 16px;
        font-weight: 500;
        color: #343d48;
        padding: 5px 15px;
        border-color: #dadada;
        border-style: solid;
        border-width: 2px;
        border-color: rgb(233, 227, 254);
        border-radius: 10px;
        background-color: rgb(243, 242, 250);
        height: 56px;
    }

.FXrPt textarea,
.FXrPt input {
    font-size: 16px;
    padding: 11px;
    display: block;
    width: 100%;
    color: #5d646d;
    box-shadow: none;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #EBEBEB;
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}

.iXqKdl {
    position: absolute;
    left: -5000px;
}


.gSuvvI button {
    border-radius: 10px;
    background-color: rgb(106, 82, 253);
    height: 56px;
    margin: auto;
}

@media (max-width: 990px) {
    .gSuvvI {
        margin-left: auto;
    }
}

@media (max-width: 575px), (min-width: 961px) and (max-width: 1280px) {
    .gSuvvI {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 25px;
        width: 100%;
    }

        .gSuvvI .email_input {
            width: 100%;
            margin-right: 0;
            margin-bottom: 20px;
        }

        .gSuvvI button {
            position: relative;
            right: 0;
            top: 0;
            height: 56px;
            width: 100%;
        }
}


.FXrPt {
    position: relative;
}


.jYbQMV span.btn-text {
    padding-left: 5px;
    padding-right: 5px;
}

.jYbQMV {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background-color: #5268db;
    min-height: 46px;
    min-width: 48px;
    border-radius: 3px;
    font-family: Roboto, sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: capitalize;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    border: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
    background-color: #5268db;
    border-color: #5268db;
    background-image: linear-gradient(31deg, rgba(215, 178, 233, 0.4) 0%, rgba(83, 105, 220, 0.4) 100%);
    box-sizing: border-box;
    padding-left: 22px;
    padding-right: 22px;
    height: 48px;
    font-size: 14px;
    border-radius: 4px;
}

.diyzVK {
    margin-top: 8vh;
    margin-bottom: 2vh;
    font-family: Roboto, sans-serif !important;
}

    .diyzVK .containerClass .contactdes {
        text-align: center;
        padding: 10px;
    }

.jHHZcE {
    box-sizing: border-box;
}

.ipZiHA {
    box-sizing: border-box;
    width: 90%;
}

@media screen and (min-width: 575px) {
    .ipZiHA {
        width: 90%;
    }
}


@media screen and (min-width: 768px) {
    .ipZiHA {
        width: 90%;
    }
}


@media screen and (min-width: 990px) {
    .ipZiHA {
        width: 45%;
    }
}

.play-store {
    height: 80px;
    max-width: 190px;
}

.app-store {
    height: 55px;
}

.footer-nav-column ul li {
    font-weight: normal;
    font-family: Roboto, serif;
}

.footer-description {
    font-weight: normal;
    font-family: Roboto, serif;
}

@media (max-width: 560px) {
    .footer-nav-column {
        width: 100% !important;
    }
}

.app-links {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    text-align: center;
}

.join-us-tw {
    font-size: 16px;
    color: rgb(85, 26, 139);
}

.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 10;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    right: 0;
    background-color: white;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 20px;
        display: block;
    }

        /* When you mouse over the navigation links, change their color */
        .sidenav a:hover {
            color: #808080;
        }

    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

#overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

#mobile-item a {
    display: none;
}

.mobile-item-fadeIn {
    animation: fadeIn ease-in-out 1s;
    -webkit-animation: fadeIn ease-in-out 1s;
    -moz-animation: fadeIn ease-in-out 1s;
    -o-animation: fadeIn ease-in-out 1s;
    -ms-animation: fadeIn ease-in-out 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.7;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.7;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.7;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.7;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .loop-item {
        flex-basis: calc(50% - var(--margin-items)) !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .loop-item {
        flex-basis: calc(33.333% - var(--margin-items)) !important;
    }
}

@media(max-width: 481px) {
    .loop-item {
        flex-basis: calc(51% - var(--margin-items));
    }

    .containerClass {
        padding: 50px 0px 30px;
        margin: 0 20px;
    }
}

@media (max-width: 1024px) {
    .loop-item-meta {
        display: block !important;
    }
}

/************* Markets & Infographic Section ***************/

.market-top-articles-section {
    padding: 24px 0;
    margin: 0 auto 8vh;
    max-width: 1350px;
    border-radius: 3px;
}

.market,
.top-articles {
    width: 100%;
}

.no-bg-color {
    background-color: unset !important;
}

@media (min-width: 1281px) {
    .info-graphic-image {
        height: 250px;
        min-height: 250px;
    }
}

.info-graphic-info {
    padding: 15px;
}

.info-graphic-title {
    font-size: 1.3rem !important;
    margin-top: 10px;
}

.info-graphic-date {
    margin: 5px auto;
}

@media(min-width: 40em) {
    .market-top-articles-section {
        display: flex;
    }

    .market,
    .top-articles {
        width: 55%;
    }

    .market {
        margin-left: -24px;
    }

    .top-articles {
        margin-right: -24px;
    }
}

@media (max-width: 1400px) and (min-width: 640px) {
    .market-top-articles-section {
        padding-right: calc(24px - (var(--margin-items) / 2));
        padding-left: calc(24px - (var(--margin-items) / 2));
    }
}

.post-item {
    margin: 0 24px;
    display: flex;
    padding: 10px 0;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: inset 0 -1px 0 0 #ECECEC;
    transition: transform .2s ease-in-out;
    flex: 1 0 auto;
}

.post-item__flex {
    display: flex;
    width: 100%;
}

.post-item__content {
    flex: 1;
}

.post-item__title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-primary-regular);
    display: inline;
    font-size: 22px;
    line-height: 24px;
    transition: .26s;
}

@media (min-width: 800px) {
    .post-item__title_mobile {
        display: none;
    }
}

@media (max-width: 799px) {
    .post-item {
        flex-direction: column;
    }

    .post-item__title_mobile {
        display: block;
    }

    .post-item__title_desktop {
        display: none;
    }
}

.post-item__date {
    display: block;
    color: #585858;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .5px;
    margin-top: 8px;
}

.post-item__excerpt {
    font-family: Roboto, sans-serif;
    display: block;
    color: #585858;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: .5px;
    margin-top: 8px;
}

.post-item__media {
    margin-left: 24px;
}

.post-item__image {
    display: block;
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: 2px;
}

@media (min-width:481px) and (max-width:1280px) {
    .post-item__title {
        font-size: 18px;
    }
}

@media(min-width: 64em) {
    .post-item {
        min-height: 120px;
    }

    .post-item__image {
        width: 150px !important;
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .post-item__title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hide-on-mobile {
        display: none;
    }
}

@media (min-width: 481px) {
    .hide-on-desktop {
        display: none;
    }
}

._lazyloaded {
    transition: opacity .5s ease;
}

.post-item__media img {
    max-width: 100%;
    font-style: italic;
    border-style: none;
}

.title-bar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 24px;
    padding-bottom: 8px;
    box-shadow: inset 0 -2px 0 0 #222222;
}

.title-bar__title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-primary-regular);
    line-height: 24px;
    letter-spacing: .5px;
}

    .title-bar__title h3 {
        font-size: 22px;
    }

@media (min-width:1025px) and (max-width:1280px) {
    .title-bar__title h3 {
        font-size: 20px;
    }
}

@media (max-width:1024px) {
    .title-bar__title h3 {
        font-size: 18px;
    }
}

.title-bar__link {
    display: flex;
    align-items: center;
    transition: .5s;
    margin: unset !important;
}

.svg_img {
    position: relative;
    right: 0;
    bottom: -2px;
    width: 13px;
    height: 13px;
    margin-left: 7px;
    transition: right .15s ease;
    fill: #999;
}

@media (max-width: 63.99em) {
    .market:not(:last-child) {
        margin-bottom: 32px;
    }
}

.loop-item-excerpt {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    color: #585858;
    letter-spacing: .3px;
}

@media (max-width:1024px) {
    .loop-item-excerpt {
        font-size: 15px;
    }
}

@media (min-width:1025px) and (max-width:1280px) {
    .loop-item-excerpt {
        font-size: 14px;
    }
}


@media (min-width:1281px) and (max-width:1440px) {
    .loop-item-excerpt {
        font-size: 15px;
    }
}

.landing-subscribe-form {
    margin-top: 40px;
}

/* do not group these rules */
.subscribe-input::placeholder {
    color: #343d48cc;
}

/* Heading for special section */
.custom-heading {
    display: flex;
    width: 100%;
    padding: 30px 0px 15px;
    align-items: flex-end;
}

    .custom-heading,
    .custom-heading h3 {
        box-sizing: border-box;
    }

        .custom-heading h3 {
            font-size: 22px;
            margin: 0;
            padding-right: 20px;
        }

        .custom-heading a {
            flex-basis: unset;
            font-family: var(--font-family-primary);
            font-size: 16px;
            font-weight: var(--font-weight-primary-regular);
            line-height: 1.4;
            display: inline-block;
            margin: auto 0px auto 20px;
            text-align: right;
            color: #999;
        }

        .custom-heading span {
            background: #7B756F;
            height: 1px;
            flex-grow: 2;
            margin: auto;
        }

        .custom-heading svg {
            position: relative;
            right: 0;
            bottom: -2px;
            width: 13px;
            height: 13px;
            margin-left: 7px;
            transition: right .15s ease;
            fill: #999;
        }

        .custom-heading a:hover svg {
            right: -4px;
        }

@media (max-width:768px) {
    .custom-heading svg {
        display: none;
    }
}

@media (min-width:1025px) and (max-width:1280px) {
    .custom-heading {
        padding: 25px 0px 15px;
    }

        .custom-heading h3 {
            font-size: 20px;
        }
}

@media (max-width:1024px) {
    .custom-heading {
        padding: 20px 0px 15px;
    }

        .custom-heading h3 {
            font-size: 18px;
        }
}

@media (max-width:1280px) {
    .custom-heading a {
        margin-right: 0;
    }
}

.m-l-auto {
    margin-left: auto;
}

.landing-pill {
    display: inline-block;
    border-radius: 4em;
    border: 1px solid #f1f4f6;
    padding: 7px 25px;
    box-shadow: 0px 7px 25px 0px rgba(22, 53, 76, 0.05);
    background-color: #fff;
    white-space: nowrap;
}

.pill-text {
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #0f2137;
    font-weight: 500;
}

.pill-count {
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0.4em;
    font-size: 16px;
    color: #eb4d4b;
    font-weight: 700;
}

.nav-item-subscribe {
    opacity: unset;
    height: unset;
    width: unset;
}

    .nav-item-subscribe a button {
        opacity: unset;
        height: unset;
        min-height: unset;
        width: unset !important;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        color: #fff;
        background-color: #5268db;
        font-family: inherit;
        -webkit-text-decoration: none;
        text-decoration: none;
        text-transform: capitalize;
        border: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-color: #5268db;
        background-image: linear-gradient(31deg, rgba(215, 178, 233, 0.4) 0%, rgba(83, 105, 220, 0.4) 100%);
        box-sizing: border-box;
        font-family: Roboto, sans-serif !important;
        font-size: 14px;
    }

.is-active {
    color: #2076ac !important;
}

.finshots_daily,
.infographics {
    margin: 0 !important;
}

/***Search Changes***/
.c-search-result {
    padding: 16px !important;
}

@media (max-width: 650px) {

    .c-search-results,
    .c-search__form {
        margin-left: 0 !important;
        padding-right: 0 !important;
    }

    .c-search-result__title {
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 1.3 !important;
    }

    .c-search-result__excerpt {
        font-size: 14px !important;
    }

    .c-search__close {
        top: 10px !important;
    }

    .c-search {
        padding-top: 70px !important;
    }

    .c-search-results {
        height: calc(100vh - 220px) !important;
    }

    .c-spinner__icon {
        right: 7% !important;
    }
}

.c-search-result {
    align-items: flex-start !important;
}

.c-search-result__image {
    box-shadow: none !important;
    border-radius: 5px !important;
}

.c-search-no-result__title {
    margin: 0 !important;
    text-align: center !important;
}

.c-spinner__icon {
    position: absolute !important;
    fill: #585858 !important;
    width: 32px !important;
    height: 32px !important;
    right: 35px;
}

.c-spinner__icon_hide {
    display: none !important;
}

@media screen and (max-width: 2000px) and (min-width: 1700px) {
    .c-search__close {
        right: 23% !important;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1400px) {
    .c-search__close {
        right: 17% !important;
    }
}

@media screen and (max-width: 1399px) and (min-width: 1100px) {
    .c-search__close {
        right: 8% !important;
    }
}

.icon--ei-search {
    color: #000;
    height: 34px !important;
    width: 34px !important;
}

.ditto-banner {
    display: flex;
    justify-content: center;
    background: rgb(255,245,179);
    background: linear-gradient(90deg, rgba(255,245,179,0.4) 0%, rgba(212,178,255,0.4) 100%);
    padding: 15px;
}

.ditto-banner-text {
    margin: 0px;
    cursor: pointer;
    font-weight: 500;
    color: rgb(15, 33, 55) text-align: center;
    font-size: 17px;
}

@media (max-width: 650px) {
    .ditto-banner-text {
        margin: 0px;
        cursor: pointer;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
    }
}

.book-banner img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.wide-banner, .mobile-banner {
    height: auto;
    display: none;
}

.mobile-banner {
    display: block;
    width: 80%;
}

@media screen and (min-width: 640px) {
    .wide-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }
}


li {
    padding-left: 0px;
}

img {
    display: initial;
}

*, ::after, ::before {
    box-sizing: unset;
}
