.my-circle-info {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.my-image-add {
    padding-top: 0.63rem!important;
    padding-bottom: 0.63rem!important;
}
.mobile a {
    width: 100%;
}

.mobile a.mx-2 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.card-header > .col-1 {
    width: 3%;
}
@media screen and (min-width: 768px) {
    a.desktop-0 {
        position: absolute;
        right: 0;
    }
    a.desktop-40 {
        position: absolute;
        right: 40px;
    }
    a.desktop-80 {
        position: absolute;
        right: 80px;
    }
}
@media screen and (max-width: 768px) {
    div.card-header > .row {
        flex-direction: row;
    }
    div.card-footer > .row {
        flex-direction: row;
    }
}
@media screen and (max-width: 900px) {
    .container {
      margin: 1em auto;
      max-width: 100%;
    }
}

/* AuditMasterPage Question Loading */
div.question-loading-cover {
	width: 100%;
    height: 100%;
	position: fixed;
	z-index: 10000;
	background-color: hsla(0, 0%, 75%, 0.9);
}
div.question-loading-cover.show {
    display: block;
}
div.question-loading-cover.hide {
    display: none;
}
div.question-loading-cover > .loading-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
div.question-loading-cover > .loading-card > .inside-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 5px solid #B09E80;
    width: 80%;
}
div.question-loading-cover > .loading-card > .inside-card > .inside-card-body {
    margin: 25%;
}
.inside-card-body > h4 {
    margin: 0;
    padding: 0;
    text-align: center;
}
@media screen and (min-width: 768px) {
    div.question-loading-cover > .loading-card > .inside-card {
        width: 25%;
    }
}