/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common CSS
# Color Css
# Display Css
# Fonts Css
--------------------------------------------------------------*/

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

/* Color Css */
.text-white {
    color: #fff !important;
}
.bg-white {
    background-color: #fff !important;
}
.span_green {
    background-color: #32BA7A;
}
.span_blue {
    background-color: #1E70B9;
}
.span_red {
	background-color: #E33D3D;
}

/* Display Css */
.d-flex {
    display: flex !important;
}
.justify-content-center {
    justify-content: center !important;
}
.align-items-center {
    align-items: center !important;
}

/* Fonts Css */
.fw_600 {
    font-weight: 600;
}
.fw_700 {
    font-weight: 700;
}

/* Font Size */
.page-content p {
	font-size: 18px;
}

/* Border Css */
.border1 {
    border: 1px solid #E3E7ED;
}

/* Flex Css */
.mu-row-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}