@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;700&display=swap');

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: url("/Fonts/Roboto-Light.ttf") format("opentype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("/Fonts/Roboto-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: url("/Fonts/Roboto-Medium.ttf") format("opentype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("/Fonts/Roboto-Bold.ttf") format("opentype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: url("/Fonts/Roboto-Black.ttf") format("opentype");
}

@font-face {
    font-family: "Gill Sans";
    font-style: normal;
    font-weight: 700;
    src: url("/Fonts/Gill Sans Bold.otf") format("opentype");
}

@font-face {
    font-family: "Gill Sans";
    font-style: normal;
    font-weight: 400;
    src: url("/Fonts/Gill Sans.otf") format("opentype");
}

@font-face {
    font-family: "Gill Sans";
    font-style: normal;
    font-weight: 500;
    src: url("/Fonts/Gill Sans Medium.otf") format("opentype");
}


:root {
    --Primary-color: #0068A7;
    --secondary-color: #BD9533;
    --primary-font-family: "Gill Sans", Inter, Helvetica;
    --body-text: #444E59;
    --white: #ffffff;
    --numbering-background: rgba(0, 117, 201, 0.1);
    --top-banner-background: #0068A7;
    --footer-background: #0068A7;
}

html {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    color: #000;
    font-size: 10pt;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.registrationDiv{
    padding-bottom:20px;
}

.progressTracker {
    max-width: none !important;
    padding-top: 110px;
}


.overlay {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.overlayContent {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 300px;
    background-color: White;
    border-radius: 10px;
    text-align: center;
}



.overlayContent img {
    height: 128px;
    width: 128px;
    margin: 0 auto;
    text-align: center;
}