
.rounded-custom{
	border-radius: 20px;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

.d-flex {
    display: flex;
}

.vh-100 {
    height: 100vh;
}

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

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

#page {
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-img {
width: 25%; /* default width */
}

@media (max-width: 1200px) { /* xl breakpoint */
.custom-img {
	width: 30%;
}
}

@media (max-width: 992px) { /* lg breakpoint */
.custom-img {
	width: 35%;
}
}

@media (max-width: 768px) { /* md breakpoint */
.custom-img {
	width: 60%;
}
}

@media (max-width: 576px) { /* sm breakpoint */
.custom-img {
	width: 70%;
}
}
