﻿
@font-face {
    font-family: 'NeueHaas-Medium';
    src: url('../Content/font/neue-haas-grotesk/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    ascent-override: 90%;
}

@font-face {
    font-family: 'NeueHaas-Bold';
    src: url('../Content/font/neue-haas-grotesk/NeueHaasDisplayBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    ascent-override: 90%;
}

@font-face {
    font-family: 'NeueHaas-light';
    src: url('../Content/font/neue-haas-grotesk/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    ascent-override: 90%;
}
:root {
    --esscBlue: #354a9d;
    --essRadius: 5px;
    --essDarkGrey: #404040;
    --esscRed: #ed4646;
}

.essCBlue{
    color: var(--esscBlue);
}

.esscRed {
    color: var(--esscRed) !important;
}

.essBgBlue {
    background-color: var(--esscBlue);
}

.essRadius{
    border-radius: var(--essRadius);
}

a {
    text-decoration:none !important;
}

.neueMedium {
    font-family: 'NeueHaas-Medium';
}
.neueBold {
    font-family: 'NeueHaas-Bold';
}

.neurLight {
    font-family: 'NeueHaas-light';
}

.greyEss {
    color: #BDBDBD;
}

.darkGreyrEss {
    color:var(--essDarkGrey)
}

.form-control:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgb(53 74 157 / 25%);
}

.verticallyheight100 {
    height:100vh;
}

.bottomGreyBorder {
    border-bottom: solid #ededed 1px;
}