/* poor (/desperate) developers' bootstrap */

.text-white, .text-white * {
    color: white !important;
}

.text-center, .text-ceter * {
    text-align: center !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.position-absolute {
    position: absolute !important;
}

.d-flex {
    display: flex !important;
}

.flex1 {
    flex: 1;
}

.flex-center {
    align-items: center;
}

.flex-column.flex-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}

.top {
    top: 0;
}

.right {
    right: 0;
}

.left {
    left: 0;
}

.bottom {
    bottom: 0;
}

.position-absolute {
    position: absolute !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.py-5 {
    padding-top: 5em;
    padding-bottom: 5em;
}

.pt-5 {
    padding-top: 5em;
}

.pb-5 {
    padding-bottom: 5em;
}

@media screen and (min-width: 1200px) {
    .py-md-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .pt-md-0 {
        padding-top: 0;
    }

    .pb-md-0 {
        padding-bottom: 0;
    }
}