.sidebar {
    width: 400px;
    height: 100%;
    border: 1px solid black;
}

.header {
    width: 100%;
    min-height: 100px;
    border: 1px solid red;
}

.admin-dashboard {
    display: flex;
    height: 100vh;
}


.profile-card-wrap {
    position: relative;
    background: var(--a-pure-white);
    border: 1px solid var(--a-gray-tint-2);
    border-radius: 15px;
    width: 345px;
}

.gardient-card {
    /* min-height: 150px; */
    border-radius: 15px 15px 0px 0px;
}

.gardient-card img {
    object-fit: cover;
    width: 100%;
    max-height: 150px;
    border-radius: 15px 15px 0px 0px;
}

.profile-img img {
    margin-top: -75px;
    width: 148px;
    height: 148px;
    border-radius: 100%;
    outline: 2px solid var(--a-pure-white);
}

.header-title {
    margin: 43px 0 40px 0;
}

.profile-info {
    padding: 25px 20px;
}

.profile-info:not(:last-child) {
    border-bottom: 1px solid var(--a-gray-tint-2);
}

.profile-info svg {
    flex-shrink: 0;
}

.spanLabel {
    bottom: -4px;
    right: 50%;
    transform: translate(50%, 50%);
    border-radius: 4px;
    background: var(--a-green-shad-1);
    padding: 4px 12px;
    font-size: 12px;
    color: var(--a-pure-white);
    line-height: 15px;
}

.menu-header-title {
    margin-bottom: 30px;
}

/* .menu-header-title a {
    color: var(--a-gray);
}

.menu-header-title a:hover {
    color: var(--a-theme-blue);
} */

.menu-header-title img {
    padding: 0 9px;
}

.profile-content-wrap {
    padding: 40px 0;
    width: calc(100% - 345px);
    margin-left: 20px;
    background: var(--a-pure-white);
    border: 1px solid var(--a-gray-tint-2);
    border-radius: 15px;
}

.profile-content-spacing {
    padding: 0 30px;
}

.profile-content-spacing h6 {
    margin-bottom: 10px;
}

.about-wrap p {
    color: var(--a-gray-shad-1);
}

.gray-border {
    width: 100%;
    height: 1px;
    margin: 20px 0;
    background-color: var(--a-gray-tint-2);
}

.skills-label {
    background: var(--a-slate-gray);
    border-radius: 5px;
    padding: 5px 9px;
    font-weight: 500;
    color: var(--a-title);
}

.skills-label:not(:last-child) {
    margin-right: 5px;
}

.documents-upload {
    width: 100%;
    max-width: 240px;
    border: 1px solid var(--a-gray-tint-4);
    border-radius: 5px;
    padding: 10px 15px 10px 10px;
}

.documents-upload:not(:last-child) {
    margin-right: 10px;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid var(--a-gray-tint-6);
}

.university-title {
    position: relative;
    padding-left: 34px;
}

.university-title::before,
.university-title::after {
    content: '';
    position: absolute;
}

.university-title::before {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--a-title);
    top: 3px;
    left: 10px;
    z-index: 10;
}

.university-title::after {
    width: 1px;
    height: calc(100% + 43px);
    background-color: var(--a-gray-tint-1);
    top: 6px;
    left: 12px;
    z-index: 0;
}

.university-degree-wrap:last-child .university-title::after {
    display: none;
}

.university-degree-wrap {
    height: 100%;
}

.university-degree-wrap:not(:last-child) {
    padding-bottom: 43px;
}

.year-title {
    width: 100%;
    max-width: 67px;
}

.year-title-md{
    max-width: max-content;
}

.profile-content-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}

.profile-content-grid .documents-upload {
    max-width: 100%;
}
/* Video Questions page css start by AVN */
/* .video-player {
    position: relative;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    max-height: 150px;
    width: 100%;
} */

/* .video {
    width: 100%;
    max-width: inherit;
    border-radius: 5px;
    height: inherit;
    max-height: inherit;
} */
.question-video-wrapper-image {
    position: relative;
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.question-video-wrapper-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    transform: translate(-50%, -50%);
    height: 20px;
}

.video-model-wrapper .modal-body-custom {
    max-height: unset;
    position: relative;
    flex: 1 1 auto;
    padding: 15px 18px 15px;
    overflow-y: auto;
}

.video-model-wrapper video {
    width: 100%;
    height: auto;
    max-height: inherit;
    object-fit: cover;
}

.video-model-wrapper .modal-header-custom {
    position: relative;
    padding: 0;
}
.video-model-wrapper .modal-header-custom .btn-close.custom{
    position: absolute;
    right: 10px;
    top: -58px;
    font-size: 15px;
}
/* Video Questions page css end by AVN */

/* media  query */
@media screen and (max-width:1599px) {
    .profile-img img {
        width: 128px;
        height: 128px;
        margin-top: -70px;
    }

    .gardient-card img {
        max-height: 140px;
    }

    .header-title {
        margin: 35px 0 20px 0;
    }

    .profile-info {
        padding: 22px 20px;
    }

    
    .profile-content-grid{
        grid-template-columns: repeat(3, 1fr);
        gap:12px;
    }
}

@media screen and (max-width:1365px) {
    .profile-content-wrap {
        padding: 30px 0;
    }
    .profile-content-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:1199px) {
    .profile-img img {
        width: 110px;
        height: 110px;
        margin-top: -60px;
    }

    .gardient-card img {
        max-height: 120px;
    }
    .profile-content-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:991px) {

    .profile-card-wrap {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .profile-content-wrap {
        width: 100%;
        border-radius: 10px;
        margin-left: 0;
    }

    .gardient-card img {
        border-radius: 10px 10px 0px 0px;
    }
    .profile-content-grid{  
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:767px) {
    .profile-content-wrap {
        padding: 24px 0;
    }

    .documents-upload:not(:last-child) {
        margin-right: 10px;
    }

    .documents-upload {
        max-width: 225px;
    }

    .profile-content-spacing {
        padding: 0 20px;
    }

    .profile-img img {
        width: 100px;
        height: 100px;
        margin-top: -60px;
    }
}

@media screen and (max-width:575px) {
    .profile-info {
        padding: 15px 20px;
    }

    .university-degree-wrap:not(:last-child) {
        padding-bottom: 30px;
    }

    .documents-upload {
        max-width: 100%;
    }

    .documents-upload:not(:last-child) {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .university-title::after {
        height: calc(100% + 30px);
    }

    .header-title {
        margin: 30px 0 15px 0;
    }

    .gardient-card img {
        max-height: 100px;
    }

    .profile-img img {
        width: 80px;
        height: 80px;
        margin-top: -50px;
    }
    .profile-content-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}