/*@font-face {
    font-family: "Roboto";
    src: url('../font/Roboto/Roboto-Regular.ttf') format("truetype");
    font-weight: normal;
}
@font-face {
    font-family: "Sulphur_Point";
    src: url('../font/Roboto/Roboto-Bold.ttf') format("truetype");
    font-weight: bold;
}*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,200;0,300;0,400;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
:root {
    /*--font-base: 'IBM Plex Sans', sans-serif;*/
    --font-base: 'Open Sans', sans-serif;
    --base-color: #C33EB1;
}

h1, h2, h3, h4, h5, h6, body {
    font-family: var(--font-base);
}

body {
    font-size: 16px;
    color: #272735;
    background-color: #F4F4F7;
}
.bold{
    font-weight: bold;
}
*{
    word-break: break-word;
}
.box{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px 45px;
    width: 100%;
}
.box-shadow {
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    padding: 10px;
}
.flex-1{
    flex: 1;
}
.text-base {
    color: #C33EB0;
}
.btn-base{
    background: #C33EB0;
    color: #fff;
}
.bg-base {
    background: #C33EB0;
    color: #fff;
}
.btn-base:hover {
    color: #fff;
}
.text-orange {
    color: #F55A38 !important;
}
.bg-orange {
    background-color: #F55A38;
}
.btn-orange {
    color: #fff !important;
    background-color: #F55A38 !important;
}
.badge-base {
    background: #C33EB0 !important;
    color: #fff;
}
.badge-orange {
    background: #F55A38 !important;
}
.badge {
    font-weight: normal;
}
.text-decoration-underline {
    text-decoration: underline;
}
.center-box{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.between-box{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.between-x{
    display: flex !important;
    justify-content: space-between;
}
.align-center-box{
    display: flex !important;
    align-items: center;
}
.between-x{
    display: flex;
    justify-content: space-between;
}
.cursor-pointer{
    cursor: pointer;
}
.w-3{
    width: calc(100% / 4);
}
.text-line-through{
    text-decoration: line-through;
}