
.profile-panel {
    position: relative;
}

@media (min-width: 992px) {
    .profile-panel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .profile-panel__small {
        width: 230px;
    }

    .profile-panel__large {
        width: calc(100% - 260px);
    }
}

@media (max-width: 991.98px) {
    .profile-panel__small {
        display: contents;
    }
}
.content-box {
    width: 100%;
    position: relative;
    border: solid 1px #dee2e6;
    border-radius: 6px;
    background-color: #FFF;
}

.content-box:not(:first-child) {
    margin-top: 2rem;
}

.content-box__head {
    border-bottom: solid 1px #dee2e6;
    padding: 1.2rem 1.4rem;
    background-color: rgba(0, 0, 0, 0.03);
}

.content-box__body {
    padding: 1.6rem;
    min-height: 100px;
}

.profile-controls {
    border: solid 1px #dee2e6;
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    z-index: 1;
}

@media (min-width: 1200px) {
    .profile-controls {
        position: sticky;
        top: 140px;
    }
}

@media (max-width: 1199.98px) {
    .profile-controls {
        position: sticky;
        top: 90px;
    }
}


@media (max-width: 991.98px) {
    .profile-controls {
        position: sticky;
        top: 52px;
        margin-bottom: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .profile-controls ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
        white-space: nowrap;
        background-color: rgba(0, 0, 0, 0.03);
        padding: 0.6rem;
    }
}

@media (min-width: 1200px) {
    .profile-controls ul {
        padding: 0.8rem 0;
    }
}

@media (max-width: 991.98px) {
    .profile-controls ul li {
        margin-right: 0.5rem;
    }
}

.profile-controls ul li a {
    display: block;
    padding: 0.6rem 1.4rem;
    padding-right: 2.4rem;
    color: inherit;
    font-size: 0.9rem;
    position: relative;
}

@media (min-width: 1200px) {
    .profile-controls ul li a:hover {
        color: var(--brand-color);
        background-color: rgba(0, 0, 0, 0.04);
    }
}

@media (max-width: 991.98px) {
    .profile-controls ul li a {
        padding: 0.6rem 1.8rem;
        background-color: #fff;
        border: solid 1px #dee2e6;
    }

    .profile-controls ul li a:after {
        display: none;
    }
}

.profile-controls ul li a.is-active {
    color: var(--brand-color);
    font-weight: 500;
}
.profile-controls ul li a.is-active:after {
    position: absolute;
    right: 1.4rem;
    top: 50%;
    content: "";
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.video-tag iframe{
    width: 100%;
    height: 400px;
}
.file{
	padding:10px;
}.image-block {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line if necessary */
  gap: 10px; /* Optional: adds spacing between items */
  list-style: none; /* Removes default list styling */
  padding: 0;
  margin: 0;
}

.image-block li {
  flex: 0 0 auto; /* Prevents items from shrinking or growing */
  width: 50px; /* Sets a fixed width for each item */
  text-align: center;
  padding-top:10px;
}