@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    outline: none;
}

/* =================================================== VARIABLE CSS */
:root {
    --header-height: 3rem;
    /* ===================================================  COLORS  */

    --red: #e70302;
    --blue: #3d7be8;
    --yellow: #deff0d;
    --purple: #8f2292;
    --white: #fff;
    --white-light: #fff4f4;
    --white-medium: #f4f4ff;
    --green-light: #b5f3ea;
    --green-dark: #3c8f72;
    --primary-color: #8f2292;
    --gray-light: #d0d0d0;
    --gray-medium: #808080;
    --black: #000;
    --black-medium: #313131;
    --wrapper-body-bg: #f5f4fa;
    --orange: orange;

    /* ===================================================  FONT AND TYPOGRAPHY  */
    --primary-font: "Poppins", sans-serif;

    /* ===================================================  Z INDEX  */

    --z-tooltip: 10;
    --z-fixed: 100;
}

/* =================================================== VARIABLE CSS END */

/*GENERAL BASE CSS */

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--primary-font);
    /*    line-height: 28px;*/
    overflow-x: hidden;
    background: #f5f4fa;
    border-top-right-radius: 20px;
    text-align: left;
    /* background: linear-gradient(
            -10deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)
        ),
        url("../images/main_bg.png") no-repeat center center !important;
    background-size: cover;
    background-position: center; */
    position: relative;
    min-height: 100vh;
    width: 100%;
    /* background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/main_bg.png") no-repeat center center; */
}

img {
    vertical-align: middle;
    /* height: auto; */
}

a {
    text-decoration: none;
    display: inline-block;
}

/* a:hover {
  color: var(--white);
} */

ul {
    list-style: none;
}

ol li{
    margin-bottom: 10px;
}

button:focus {
    outline: none;
}

/*GENERAL BASE CSS END */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

table.table {
    white-space: nowrap;
}

.page-item.disabled .page-link {
    font-size: 14px !important;
}
