/* border-radius */
.BR-5 {
    border-radius: 5px;
}
.BR-10 {
    border-radius: 10px;
}
.BR-15 {
    border-radius: 15px;
}


/* padding */
.M-0 {
    margin: 0 !important;
}


/* padding */
.PT-5 {
    padding-top: 5px;
}
.PT-10 {
    padding-top: 10px;
}
.PT-20 {
    padding-top: 20px;
}
.PT-30 {
    padding-top: 30px;
}
.PT-40 {
    padding-top: 40px;
}
.PT-50 {
    padding-top: 50px;
}

.PB-5 {
    padding-bottom: 5px;
}
.PB-10 {
    padding-bottom: 10px;
}
.PB-20 {
    padding-bottom: 20px;
}
.PB-30 {
    padding-bottom: 30px;
}
.PB-40 {
    padding-bottom: 40px;
}
.PB-50 {
    padding-bottom: 50px;
}

/* flex */
.flex-left {
    display: flex;
    justify-content: flex-start;
}
.flex-right {
    display: flex;
    justify-content: flex-end;
}
.flex-center {
    display: flex;
    justify-content: center;
}



/* other */
body .is-style-flex-column {
    flex-direction: column;
}