.stc-create-request-form fieldset {
    border: none;
}

.stc-create-request-form table td {
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.stc-create-request-form .file-cell {
    width: calc(50% - 10px);
    max-width: 100%;
}

.stc-create-request-form .actions {
    border-top: none;
    margin-top: 30px;
}

@media screen and (max-width:767px) {
    .stc-create-request-form .file-cell {
        width: 100%;
    }
}

/* Exam Details */
.exam-details__labels {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    border-bottom: 2px solid var(--color-accent);
    margin-bottom: 25px;

}

.exam-details__labels .tab-header {
    cursor: pointer;
    margin-bottom: 0;
    flex: 1;
    text-align: center;
}

.exam-details__labels .tab-header a  {
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 500;
    /* border-bottom: 1px solid var(--color-border-grey); */
    padding: 10px;
    display: block;
    position: relative;
    cursor: pointer;
}

.exam-details__labels .tab-header a:before {
    content: "";
    position: absolute;
    background-color: var(--color-accent);
    height: 100%;
    width: 0;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease-in;
    z-index: -1;
}

.exam-details__labels .tab-header.active a{
    /* background-color: var(--color-accent); */
    color: var(--color-primary);
    font-weight: 600;
    background-color: var(--color-accent);
}

.exam-details__labels .tab-header a:hover:before,
.exam-details__labels .tab-header a:active:before,
.exam-details__labels .tab-header a:focus:before,
.exam-details__labels .tab-header.active a:before
 {
    width: 100%;
}

.stc-fees-table {
    width: 500px;
    max-width: 100%;
}

.tabl.exam-details__item {
    display: none;
}