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

@font-face {
    font-family: 'segoe_uibold_italic';
    src: url('../fonts/segoe_ui_bold_italic-webfont.woff2') format('woff2'),
         url('../fonts/segoe_ui_bold_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uibold';
    src: url('../fonts/segoe_ui_bold-webfont.woff2') format('woff2'),
         url('../fonts/segoe_ui_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uiitalic';
    src: url('../fonts/segoe_ui_italic-webfont.woff2') format('woff2'),
         url('../fonts/segoe_ui_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uiregular';
    src: url('../fonts/segoeui-webfont.woff2') format('woff2'),
         url('../fonts/segoeui-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uiitalic';
    src: url('../fonts/segoeuii-webfont.woff2') format('woff2'),
         url('../fonts/segoeuii-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uilight';
    src: url('../fonts/segoeuil-webfont.woff2') format('woff2'),
         url('../fonts/segoeuil-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uibold_italic';
    src: url('../fonts/segoeuiz-webfont.woff2') format('woff2'),
         url('../fonts/segoeuiz-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uiblack';
    src: url('../fonts/seguibl-webfont.woff2') format('woff2'),
         url('../fonts/seguibl-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'segoe_uilight_italic';
    src: url('../fonts/seguili-webfont.woff2') format('woff2'),
         url('../fonts/seguili-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
:root {
    --nexus-white: #ffffff;
    --nexus-black: #000000;
    --nexus-green: #00ff00;
    --nexus-dark-green: #198961;
    --nexus-greenish-teal: #1c895f;
    --nexus-green-shade: #33ff33;
    --nexus-light-green: #66ff66;
    --nexus-lightgreen-shade: #9aff9a;
    --nexus-lighter-green: #cdffcd;
    --nexus-gray-shade: #ebebeb;
    --nexus-dark-gray: #4d4d4d;
    --nexus-darkgray-shade: #707070;
    --nexus-light-gray: #949494;
    --nexus-lightgray-shade: #b8b8b8;
    --nexus-lighter-gray: #dcdcdc;
    --nexus-blue: #5d36ff;
    --nexus-strong-blue: #2573b4;
    --nexus-purple: #373575;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: var(--psp-font-regular);
    font-size: 16px;
    line-height: 2;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 5px;
}

::-webkit-scrollbar{
    width: 5px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb{
    background-color: #828080;
    border: 2px solid #828080;
    border-radius: 5px;
}

.sales-insights-btn {
    display: inline-block;
    position: relative;
    cursor: pointer;
    background: var(--nexus-greenish-teal);
    color: white;
    padding: 0px 30px;
    z-index: 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    min-height: 40px;
}
.sales-insights-btn:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nexus-green);
    transform: scaleX(0);
    transform-origin: 0 50%;
    border: none;
    border-radius: 5px;
    transition: transform .5s ease-out;
    padding: 7px 20px;
    text-decoration: none;
}
.sales-insights-back-btn, .sales-insights-btn-green {
    display: inline-block;
    position: relative;
    cursor: pointer;
    background: var(--nexus-green);
    color: white;
    padding: 0px 30px;
    z-index: 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    min-height: 40px;
}
.sales-insights-back-btn:before, .sales-insights-btn-green:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nexus-greenish-teal);
    transform: scaleX(0);
    transform-origin: 0 50%;
    border: none;
    border-radius: 5px;
    transition: transform .5s ease-out;
    padding: 7px 20px;
    text-decoration: none;
}
.sales-insights-btn:hover:before, .sales-insights-btn-green:hover:before {
    transform: scaleX(1);
}
.hide-tab3 {
    display: none;
}