/* You can add global styles to this file, and also import other style files */ @import "styles/material-theme.scss"; @import "styles/colors"; @import "styles/tooltip.scss"; body { overflow-x: hidden; } * { box-sizing: border-box; font-family: "PT Sans", sans-serif; } html, body { height: 100%; margin: 0; } h1, h2, h3, h4, p { color: $color-text-default; font-family: "PT Sans"; margin-bottom: 0 !important; } .mat-stroked-button{ border-color: $primary-color-main !important; } .mat-checkbox { label { width: 100%; .mat-checkbox-label { width: 100%; display: flex; justify-content: space-between; } } } .cdk-overlay-container { z-index: 3000; } .menu { border-radius: 20px 2px 20px 20px !important; background-color: $primary-color-main; box-shadow: 0 6px 16px 0 rgba(39,42,72,0.4); white-space: pre-line; color: #FFFFFF; font-size: 16px; letter-spacing: 0; line-height: 22px; padding: 10px 20px; button { color: #FFFFFF; font-size: 16px; font-weight: bold; letter-spacing: 0; line-height: 20px; } } .tooltip { h4 { color: #FFFFFF; font-size: 16px; font-weight: bold; letter-spacing: 0; line-height: 20px; text-align: center; } position: absolute; display: inline-block; background-color: $primary-color-main; color: #FFF; font-size: 13px; letter-spacing: 0; line-height: 19px; text-align: center; } .field-link-group { a { top: -14px; position: relative; font-size: 14px; font-weight: bold; letter-spacing: 0.35px; color: $primary-color-main; } } .third-split { display: grid; grid-column-gap: 20px; grid-template-columns: calc(33% - 10px) calc(33% - 10px) calc(33% - 10px); } .half-split { display: grid; grid-column-gap: 20px; grid-template-columns: calc(50% - 10px) calc(50% - 10px); } .forth-split { display: grid; grid-column-gap: 20px; grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px); } .left-biased-split { display: grid; grid-column-gap: 20px; grid-template-columns: calc(67% - 10px) calc(33% - 10px); } .right-biased-split { display: grid; grid-column-gap: 20px; grid-template-columns: calc(33% - 10px) calc(67% - 10px); } .hidden { display: none; }