.pga-header {
    height: var(--pga-header-size);
    width: 100%;
    background-color: var(--pga-color-primary);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
}

.pga-header>.wrapper {
    height: 100px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.pga-header>.wrapper>.logos-wrapper {
    display: flex;
    justify-content: space-around;
}

.pga-header>.wrapper>.logos-wrapper>.image-wrapper {
    height: var(--pga-header-size);
    padding: 16px 0;
}


.pga-header>.wrapper>.logos-wrapper>.image-wrapper>.logo-instituicao {
    height: 100%;
}


.pga-header>.wrapper>.logos-wrapper>.image-wrapper>.logo-pga {
    height: 100%;
    margin-left: 20px;
}

.pga-header>.wrapper>.form-wrapper {
    height: var(--pga-header-size);
    margin-top: 25px;
    margin-left: 100px;
}
.pga-header>.wrapper>.form-wrapper >.row >.col-md-10  {
    display: flex;
    justify-content:flex-end;
    }

    .pga-header>.wrapper>.form-wrapper >.row >.col-md-10 >.col-md-3 {
      margin-left: 10px;
        }

.pga-header >.wrapper >.form-wrapper >.row >.col-md-2 {
     display: flex;
    justify-content:flex-start;
}

.pga-header>.wrapper>.user {
    text-align: right;
    display: flex;
    align-items: center;
}

.pga-header>.wrapper>.user>.info>.name {
    margin-top: -15px;
    display: block;
    font-family: 'Raleway', sans-serif;
    color: white;
    font-weight: 600;
    font-size: calc(var(--pga-font-size-base)+1);
    margin-bottom: 5px;
}

.pga-header>.wrapper>.user>.info>.level {
    display: block;
    font-family: 'Raleway', sans-serif;
    color: white;
    font-size: calc(var(--pga-font-size-base));

}

.pga-header>.wrapper>.user>.photo-wrapper {
    margin-top: -15px;
    margin-left: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid white;
    overflow: hidden;
}

.pga-header>.wrapper>.user>.photo-wrapper>img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.pga-header>.wrapper>.user>.photo-wrapper>.bx {
    font-size: calc(var(--font-size-base) + 34px);
    margin-left: -4px;
    margin-top: -3px;
    color: var(--pga-color-gray-lightest);
}


@media(max-width: 920px) {

    .pga-header>.wrapper>.logos-wrapper>.image-wrapper>.logo-instituicao {
        margin-top: 15px;
        margin-left: 5px;
        height: 60%;
    }


    .pga-header>.wrapper>.logos-wrapper>.image-wrapper>.logo-pga {
        margin-top: 15px;
        height: 60%;
        margin-left: 5px;
    }

    .pga-header>.wrapper>.form-wrapper {
        height: var(--pga-header-size);
        margin-top: 35px;
        margin-left: 10px;
    }

    .pga-header>.wrapper {
        height: 100px;
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
    }

}