#side_rollout {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    overflow-x: hidden;
    /*transition: 0.5s ease-in;*/
}

.side_rollout_overlay {
    height: 100%;
    width: 50%;
    background: var(--side-rollout-overlay-background);
    transition: all 0.15s ease-in;
    opacity: 0;
}

.side_rollout_wrapper {
    width: 50%;
    padding: 35px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /*transition: all .25s ease-in;*/
}

.side_rollout_wrapper .side_rollout_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side_rollout_wrapper .side_rollout_header a.side_rollout_close {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 22px;
}

.side_rollout_wrapper .side_rollout_header a.side_rollout_close span {
    font-size: 20px;
}

.side_rollout_wrapper .side_rollout_header a.side_rollout_close span.material-icons-outlined {
    font-size: 32px;
}

.side_rollout_wrapper .side_rollout_body_wrapper {
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.side_rollout_wrapper .side_rollout_body_wrapper::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.side_rollout_wrapper .side_rollout_body_wrapper .side_rollout_body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.side_rollout_wrapper .side_rollout_body .side_rollout_content_header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.side_rollout_wrapper .side_rollout_content_header .side_rollout_content_icon {
    width: 40px;
    height: 40px;
}

.side_rollout_wrapper .side_rollout_content_icon img {
    width: 100%;
    height: 100%;
}

.side_rollout_wrapper .side_rollout_content_header h4 {
    font-size: 28px;
    margin-bottom: 5px;
    line-height: 1;
    color: var(--side-rollout-content-title-color);
}

.side_rollout_wrapper .side_rollout_content_header h5 {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: var(--side-rollout-content-subtitle-color);
}

.side_rollout_wrapper .side_rollout_content_body {
    padding: 0 20px;
}

.side_rollout_content_body .side_rollout_content_list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.side_rollout_content_body .side_rollout_content_list .side_rollout_content_list_item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: #555;
    font-size: 18px;
    border-bottom: 1px solid rgba(204, 204, 204, .25);
}

.side_rollout_content_list .side_rollout_content_list_item span {
    color: #808080;
}