.absolute{
    position: absolute !important;
}

.top-0{
    top: 0px !important;
}

.left-0{
    left: 0px !important;
}

.right-0{
    right: 0px !important;
}

.bottom-0{
    bottom: 0px !important;
}

.w-100{
    width: 100%;
}

.h-100-vh{
    height: 100vh;
}

.h-100{
    height: 100%;
}

.txt-center{
    text-align: center !important;
}

.transparent{
    background-color: transparent !important;
}

.overflow-y-auto{
    overflow-y: auto;
}

.overflow-x-auto{
    overflow-x: auto;
}
.overflow-x-hidden{
    overflow-x: hidden;
}

.overflow-hidden{
    overflow: hidden !important;
}

.p-0{
    padding: 0 !important;
}


.relative{
    position: relative !important;
}
.d-none{
    display: none;
}

.d-block{
    display: block;
}


@media only screen and (min-device-width: 320px) and (max-device-width: 1200px){
	.d-none-md{
		display: none !important;
	}

	.d-block-md{
		display: block !important;
	}

    .flex-column-md{
        flex-direction: column !important;
    }
}