
/*global.css is a stylesheet that contains CSS rules shared across the entire website or application.*/

:root {
    scroll-behavior: unset;
    scroll-behavior: inherit !important;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    list-style: none;
    padding: 0;
    text-decoration: none;
}

body {
    position: relative;
    overflow-x: hidden;
    font-size: 15px;
    font-weight: 500;
    padding: 0 !important;
    margin: 0px !important;
    font-family: 'Switzer', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    background-color: var(--BackgroundColor);
}

a {
    color: var(--Interactive-Default);
    text-decoration: none;
}

.buttonlink a {
    color: black;
    text-decoration: underline !important;
}

a:hover, a:focus {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--primarycolor );
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {  *zoom: 1;}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

