﻿.m-custom {
    margin-top: 3.75vh;
}

.content-center {
    justify-content: center;
    display: flex;
}

.parent {
    position: relative; /* Set the parent as a positioned element */
}

.child {
    position: absolute; /* Set the child as an absolutely positioned element */
    top: 26px;
    left: 94%; /* Position the left edge of the child 50% from the left of its containing block (the parent) */
    transform: translate(-50%, -50%); /* Center the child using the transform property */
    /* background-color: #f00;   */
    padding: 10px;
}
.overflow-hidden{
    overflow : hidden !important;
}