/* start modern css */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul,
ol[role='list'] {
    list-style: none;
}
html:focus-within {
    scroll-behavior: smooth;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
a{
    text-decoration: none;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input,
button,
textarea,
select {
    font: inherit;
}
/* end modern css */
/* start global style */
body {
    font-family:'poppins';
}
@font-face {
    font-family:pro;
    src: url('/fonts/SourceSansPro-Regular.otf');
    font-weight: 400;
}
@font-face {
    font-family:pro; 
    src: url('/fonts/SourceSansPro-Semibold.otf');
    font-weight: 600;
}
@font-face {
    font-family:pro; 
    src: url('/fonts/SourceSansPro-Bold.otf');
    font-weight: 700;
}

.error-msg {
    font-size: 12px;
    font-weight: 400;
    color: #EB5757;
    margin-top: 5px;
    margin-inline: 23px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0px !important;
}
.error-txt {
    min-width: 14px;
    min-height: 14px;
    border: 1px solid;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:0px !important
}
.error-icon {
    font-size: 8px !important;
}