.top-section {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    margin: 0 auto 0 auto;
    box-sizing: border-box;
}

.top-section-sidebar {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    padding: 0px;
    margin: 22px 0px 24px 0px;
    justify-content: stretch;            
}

.top-section-sidebar--content {
    background: #D9D9D9;
    width: 100%;
    border-radius: 7px 7px;
    font-family: Rubik;
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    color: #3B4153;
    padding: 22px 26px;
}

.top-section-sidebar-red--content {
    color: #F81E0A;
}

.top-section-sidebar--end {
    display: none;
}

.top-section-sidebar--line {
    width: 100%;
    border: #D9D9D9 solid 1px;
    margin: 0px
}

.top-section-header-container {
    display: flex;
    width: 100%;
    margin: 31px 0px 0px 0px;
    flex-flow: column;
    column-gap: 10px;
}

.top-section-header-container-main-container {
    display: flex;
    flex-flow: row wrap;
    padding-top: 14px;
    gap:10px;
}

.top-section-header-container-main--title {
    display: flex;
    width: auto;
    flex-flow: row wrap;
    font-family: Rubik;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #2575A6;
    align-items: center;
}

.top-section-header-container-main--title span{
    display: inline;
    height: 100%;
    align-content: center;    
}

.top-section-header-container-main--title .arrow{
    margin: 0px 8px;
}

.top-section-header-container-main--list {
    font-family: Rubik;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: #3B4153;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
    flex: 1 auto;
    flex-flow: column;
    width: min-content;
    row-gap: 32px;
}

.top-section-header-container-main--important-text {
    color: #F81E0A;
    font-family: Rubik;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    max-width: 90%;
}

.top-section-header-container-main--list ul{
    margin: 0px;
    padding: 0px;
    list-style-position: inside;
}

.top-section-header-container-main--list a{
    text-decoration: underline solid;
    color: #3B4153;
}

.top-section-header-container-manager-container {
    display: flex;
    width: 100%;
    max-width: 330px;
    border: 1px #D9D9D9 solid;
    border-radius: 4px;
    padding: 18px 12px;
    box-shadow: 3px 3px 10px 0px #00000014;
    flex-grow: 0;
}

.top-section-header-container-manager-name {
    display: flex;
    flex-grow: 1;
    flex-flow: column;                
}
.top-section-header-manager-name--name {
    font-family: Rubik;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #2575A6;
}
.top-section-header-manager-name--position {
    font-family: Rubik;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color:#A3A3A3;
}
.top-section-header-manager-contact {
    font-family: Rubik;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color:#3B4153;
    display:flex;
    flex-flow: column nowrap;
    min-width: 140px;
}

@media(max-width: 680px) {
    .top-section-sidebar--content {
        font-size: 18px;
    }
    .top-section-header-container-main--title {
        font-size: 18px;
        line-height: 20px;
    }
    .top-section-header-container-main--title .arrow svg {
        height: 10px;
    }
    .top-section-header-container-manager-container {
        max-width: 100%;
    }
}

@media(min-width: 860px) {
    .top-section-sidebar--end {
        background-image: url('/images/page_rate_top_sidebar_background.svg');
        background-repeat: no-repeat;
        background-position-x: right;
        padding: 0px;
        margin: 0px;
        width: 180px;
        display: flex;
        background-size: cover;
    }

    .top-section-sidebar--content {
        background: #D9D9D9;
        width: 60%;
        min-width: 600px;
        border-radius: 7px 0px 0px 7px;
        font-family: Rubik;
        font-size: 24px;
        line-height: 100%;
        font-weight: 500;
        color: #3B4153;
        padding-left: 26px;
        padding-top: 22px;
    }
}

.top-section + .page-rate-container {
    margin-top: 35px;
}