html {
    font-size: clamp(14px, 11px + 0.4vw, 16px);}
*,
ul,
li,
::after,
::before {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
/* fonts */
@font-face {
    font-family: p200;
    src: url(../fonts/Pangram-ExtraLight.otf);
}
@font-face {
    font-family: p300;
    src: url(../fonts/Pangram-Light.otf);
}
@font-face {
    font-family: p400;
    src: url(../fonts/Pangram-Regular.otf);
}
@font-face {
    font-family: p500;
    src: url(../fonts/Pangram-Medium.otf);
}
@font-face {
    font-family: p700;
    src: url(../fonts/Pangram-Bold.otf);
}
@font-face {
    font-family: p800;
    src: url(../fonts/Pangram-ExtraBold.otf);
}
@font-face {
    font-family: p900;
    src: url(../fonts/Pangram-Black.otf);
}
/* \ fonts */
:root {
    --theme: #3166a9;
    --themebg: linear-gradient(90.3deg, #003396 -48.56%, #86cefa 192.1%);
}
body {
    font-family: p400;
    color: #242424;
}
/* scrollbar style */
* {
    scrollbar-width: 6px;
    scrollbar-color: var(--theme);
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #e4e4e3;
    border-radius: 7px;
}
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 7px;
}
/* \ scrollbar style */
/* primary classes */
.text_theme {
    color: var(--theme) !important;
}
.bg_theme {
    background: var(--theme) !important;
}
.bg_G_theme {
    background: var(--themebg) !important;
}
.fw200 {
    font-family: p200;
    font-weight: 200;
}
.fw300 {
    font-family: p300;
    font-weight: 300;
}
.fw400 {
    font-family: p400;
    font-weight: 400;
}
.fw500 {
    font-family: p500;
    font-weight: 500;
}
.fw700 {
    font-family: p700;
    font-weight: 700;
}
.fw800 {
    font-family: p800;
    font-weight: 800;
}
.fw900 {
    font-family: p900;
    font-weight: 900;
}
.fs12 {
    font-size: 0.75rem;
}
.fs13 {
    font-size: 0.8125rem;
}
.fs14 {
    font-size: 0.875rem;
}
.fs16 {
    font-size: 1rem;
}
.fs18 {
    font-size: 1.125rem;
}
.fs20 {
    font-size: 1.25rem;
}
.fs22 {
    font-size: 1.375rem;
}
.fs24 {
    font-size: 1.5rem;
}
.fs26 {
    font-size: 1.625rem;
}
.fs27 {
    font-size: 1.6875rem;
}
.fs28 {
    font-size: 1.75rem;
}
.fs30 {
    font-size: 1.875rem;
}
.fs36 {
    font-size: 2.25rem;
}
.text_muted {
    color: #acacac;
}
.text_muteder {
    color: #7c7c7c;
}
.theme_card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0px 2px 25px 0px #3166a91c;
     
}
.white_space_nowrap {
    white-space: nowrap;
}

/* Aspect ratio image use with widht and padding-bottom or top prop can not use max and min widht*/
.ratio_img {
    width: 100%;
    padding-bottom: var(--ratioimg);
    position: relative;
}
.ratio_img > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}
.max_w_none{
    max-width: none !important;
}
/* \ primary classes */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
html .passwordGroup .passicon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}
.passicon.show .passHideIco,
.passicon.hide .passShowIco {
    display: none;
}
@media (max-width: 767.98px) {
    .fs27 {
        font-size: 1.4875rem;
    }
}
@media (max-width: 567.98px) {
    .fs27 {
        font-size: 1.2rem;
    }
}
