.color-white {
    color: white;
}

.color-black {
    color: black !important;
}

.bg-white {
    background-color: white;
}

.bg-size-cover {
    background-size: cover;
}

.center-block {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

.flex {
    display: flex;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.flex-align-start {
    align-items: flex-start;
}
.flex-justify-start {
    justify-content: flex-start;
}
.flex-center-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}
.flex-align-end {
    align-items: flex-end;
}
.flex-justify-end {
    justify-content: flex-end;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-pink {
    /* background-color: antiquewhite; */
}

.bg-black {
    background-color: black;
    color: white;
}

.bg-pos-center {
    background-position: center;
}

.bg-size-cover {
    /* background-size: cover; */
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.grayscale {
    filter: grayscale();
    /*filter: grayscale();*/
}

    .grayscale:hover {
        /*filter: none;*/
    }

.overlay-black {
    background-color: black;
    position: relative;
}

.overlay-black::before {
    content: "";
    background-color: rgba(0,0,0,0.4);
    height: 10px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.padding-sm {
    padding: 5px;
}

.padding-md {
    padding: 15px;
}

.padding-left-15 {
    padding-left: 15px;
}

.padding-right-15 {
    padding-right: 15px;
}

.vertial-divider {
    border-left: 2px solid;
}

.card-2 {
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.1);
}

.card-style-1 {
    background-color: antiquewhite;
    color: black;
}

.list-style-1 {
    list-style: none;
    margin: 0;
    padding: 5px;
}
    .list-style-1 li {
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.4);
    }
    .list-style-1 li:last-child {
        padding: 10px;
        text-align: center;
        border-bottom: none;
    }
.scroll-y {
    overflow-y: auto;
}
.width-500 {
    max-width: 500px;
}

.width-full {
    max-width: 100%;
}

.min-height-viewport-full {
    min-height: 100vh;
}

.height-viewport-full {
    height: 100%;
    width: 100%;
}

.width-viewport-full {
    width: 100vw;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.border-radius-50 {
    border-radius: 50%;
}


