:root{
    --prim: #1d8e1bff;
    --sec: #fce267ff;
    --blue: #222e50ff;
    --orange: #d36135ff;
    --bg: #9bbec7ff;
    --size: 950px;
}
.rs_body {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: var(--prim);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr;
    grid-gap: 0px;
    z-index: 100006!important;
}
.rs_screen {
    background-color: var(--prim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position:relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center;
    position:absolute;
    left: 0px;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
}

.rs_graphic {
    width: var(--size);
    background-color: var(--prim);
    height: var(--size);
    position:relative;
    margin-top: -80px;
}
#wpadminbar{
    display: none;
}
.rs_header {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: stretch;
    justify-content: space-between;
    background-color: white;
    z-index: 9999999999999999999999999;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}
.sector {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.sector > img{
    width: 30px;
}
.sector {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
}

.sector_switcher {
    padding: 5px;
    /* display: flex; */
    flex-direction: column;
    gap: 5px;
}
.logo{
    margin-left: 5px;
    width: 200px;
    height: 60px;
    background-image: url("https://rs.ruw-web.nl/wp-content/uploads/2023/04/rs-logo-klein.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center;

}
.sector_active{
    background-color: var(--prim);
}
.sector_active > img{
    filter: invert(1);
}

.rs_sector_img , .rs_markers {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position:absolute;
    left: 0px;
    top: 0px;
}
.rs_markers{
    z-index: 9999;
}
.rs_marker{
    width: 50px;
    height: 50px;
    background-color: var(--sec);
    border-radius: 50%;
    position:absolute;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.rs_marker > img{
    width: 70%;
}
.rs_kenmerk {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 2fr;
    box-sizing: border-box;
    padding: 30px;
    align-items: stretch;
    background-color: #f6f6f6;
    grid-gap: 30px;
    overflow: scroll;
}
.kenmerk_info {
    background-color: white;
    display: grid!important;
    grid-gap: 5px;
    grid-template-columns: 40px 1fr;
    grid-template-rows: 50px 230px 1fr 35px;
    grid-template-areas:
        "icon title"
        "video video"
        "text text"
        "button button";
    overflow: hidden;
    padding: 13px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
}
.kenmerk_info > *{
    padding: 0px!important;
    margin: 0px!important;
}
.kenmerk_info > h1{
    grid-area: title;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 800;
    font-style: italic;
}
.kenmerk_info > img{
    grid-area: icon;
    width: 30px;
}
.kenmerk_info > .rs_omschrijving{
    grid-area: text;
}
.rs_video {
    width: 100%;
    grid-area: video;
    background-color: #e3e3e3;
    background-image: url("https://rs.ruw-web.nl/wp-content/uploads/2023/04/play-button-arrowhead.svg");
    background-size: 80px;
    background-position:center;
    background-repeat: no-repeat;
}
.kenmerk_info > button{
    grid-area: button;
    background-color: var(--orange);
    border: 0px solid red;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: white;
    border-radius: 5px;
}
.rs_products > span {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(260px , 1fr));
    overflow: scroll;
    background-color: rgba(0,0,0,0)!important;
    grid-gap: 8px;
}
.rs_product {
    background-color: white;
    padding: 10px;
    display: grid;
    grid-template-rows: 110px auto 1fr;
    grid-gap: 5px;
}
.p_title {
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    color: black;
}
.p.desc > *,
.p.desc > * > *,
.p.desc > * > * > *,
.p.desc > * > * > * > *
{
    font-size: 12px;
    font-weight: 300;
    color: grey;
}
.p_foto{
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center;
}
.animate__delay-1s
{
    animation-delay: 0.2s!important;
}
.sector_switcher {
    display: flex;
    flex-direction: row-reverse;
}