* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: CiscoSansTT-Light;
    src: url("../static/fonts/CiscoSansTTLight.woff2") format("woff2"), url("../static/fonts/CiscoSansTTLight.woff") format("woff");
}
@font-face {
    font-family: CiscoSansTT-Regular;
    src: url("../static/fonts/CiscoSansTTRegular.woff2") format("woff2"), url("../static/fonts/CiscoSansTTRegular.woff") format("woff");
}
@font-face {
    font-family: CiscoSansTT-Bold;
    src: url("../static/fonts/CiscoSansTTBold.woff2") format("woff2"), url("../static/fonts/CiscoSansTTBold.woff") format("woff");
}

body {
    margin: 0;
    font-size: 16px;
    padding: 0 !important;
    overflow-x: hidden;
}
body *, body * {
    font-family: CiscoSansTT-Regular;
}
body h1 {
    font-family: CiscoSansTT-Light;
    font-size: 1.75rem;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #686767;
    margin-bottom: 8px;
    text-transform: capitalize;
}
body h2 {
    font-family: CiscoSansTT-Regular;
    font-size: 1.5rem;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #686767;
    margin-bottom: 8px;
    text-transform: capitalize;
}
body h3 {
    font-family: CiscoSansTT-Bold;
    font-size: 1rem;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #686767;
    margin-bottom: 8px;
    text-transform: capitalize;
}
body h4 {
    font-family: CiscoSansTT-Bold;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    min-height: 20px;
    line-height: 20px;
    letter-spacing: normal;
    color: #686767;
    margin-bottom: 16px;
    text-transform: capitalize;
}
body p {
    font-family: CiscoSansTT-Regular;
    color: #58585b;
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}
body label {
    font-family: CiscoSansTT-Regular;
    color: #9194a7;
    font-size: 0.75rem;
    letter-spacing: 0;
    margin: 0;
}
body div.comments {
    color: #9194a7;
    font-size: 12px;
    letter-spacing: 0;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #b5b6b9 white;
}
*::-webkit-scrollbar {
    width: 8px !important;
}
*::-webkit-scrollbar-track {
    background: #f6f7fa;
}
*::-webkit-scrollbar-thumb {
    background-color: #b5b6b9;
    border-radius: 20px;
    border: 3px solid white;
}

.buttonControlWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    min-width: 130px;
    margin: 0 8px;
    width: min-content;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    padding: 0 32px;
    font-family: 'CiscoSansTT-Regular', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}
.primaryButton {
    border-color: #099ad6;
    background-color: #099ad6;
    color: #fff !important;
}
.secondaryButton {
    border-color: #099ad6;
    background-color: #fff;
    color: #099ad6;
}
.primaryButton:hover {
    background-color: #005073;
    border-color: #005073;
}
.secondaryButton:hover {
    background-color: rgba(9, 154, 214, 0.1);
    border-color: #005073;
    color: #005073;
}
.buttonControlDisabled {
    border-color: #9194a7 !important;
    background-color: #9194a7 !important;
    color: #fff !important;
    cursor: default !important;
    box-shadow: 0 0 0 0 transparent !important;
}
.buttonControlWrapper:focus, .buttonControlWrapper:active {
    box-shadow: 0 0 2px 1px #099ad6 !important;
}
.buttonControlWrapper:not(:focus), .buttonControlWrapper:not(:active) {
    box-shadow: 0 0 0 0 transparent !important;
}
