body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 40px 0 40px;
  
}
  
html, body {
  
}

@media (max-width: 768px) {
  body {
    margin: 10px;
  }
}


/* FIXES */
/*
Source - https://stackoverflow.com/a/3397158
Posted by CEich, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-22, License - CC BY-SA 4.0
*/

a, a:visited, a:hover {
  color: #1c2c8a;
  text-decoration: none;
}

textarea:focus, input:focus{
    outline: none;
}

[data-once="ajax-pager"] {
  scroll-margin-top: 25rem;
}

/* BASE */

#block-ribo-sitebranding img {
  width: 100px;
  height: auto;
  display: block;
}

.region.region-header {
  margin: 0 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media (max-width: 768px) {
  .region.region-header {
    margin: 10px 0 20px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: normal;
  }
  
  .region.region-header .block-menu a {
    
  }
  
  
  #block-ribo-sidebartoggle {
    justify-self: start;
  }
  
  #block-ribo-sitebranding {
    justify-self: center;
  }
  
  #block-ribo-useraccountmenu {
    justify-self: end;
  }

}


.region.region-header .block-menu a {
  
}

.region.region-header ul.menu {
  margin: 0;
}

.region.region-header ul.menu a {
  display: inline-block;
  background-color: #1c2c8a;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
}




/* SITE MENU */


@media (max-width: 700px) {
  .region.region-header nav.menu--site-menu {
    visibility: hidden;
    width: 10px;
  }

}

.region.region-header nav.menu--site-menu ul.menu {
  display: flex;
  gap: 10px;
}

.region.region-header nav.menu--site-menu ul.menu li a {
  display: none;
  display: inline-block;
  background: transparent;
  color: #1c2c8a;
  border-radius: 10px;
}

.region.region-header nav.menu--site-menu ul.menu li:first-child a {
  padding-left: 0;
}

main[role="main"] {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.layout-sidebar-first {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 2rem;
}

.layout-content {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

#block-ribo-sidebartoggle {
  display: none;
}


#block-ribo-sidebartoggle button {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='screenshot-5c8da088-8494-805d-8003-b433f7259d5c' xmlns='http://www.w3.org/2000/svg' width='17.5' height='13.5' viewBox='0 0 17.5 13.5'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bstroke-miterlimit:10;%7D.cls-1,.cls-2%7Bfill:none;stroke:%231c2c8a;stroke-width:1.5px;%7D.cls-2%7Bstroke-linecap:round;stroke-linejoin:round;%7D%3C/style%3E%3C/defs%3E%3Cg id='fills-5c8da088-8494-805d-8003-b433f72c567e'%3E%3Cpath class='cls-1' d='M.75,6.75h16'/%3E%3C/g%3E%3Cg id='strokes-671a6172-740f-80f7-8008-16a7efcdfb58-5c8da088-8494-805d-8003-b433f72c567e'%3E%3Cpath class='cls-2' d='M.75,6.75h16'/%3E%3C/g%3E%3Cg id='fills-5c8da088-8494-805d-8003-b433f72f6c2a'%3E%3Cpath class='cls-1' d='M.75.75h16'/%3E%3C/g%3E%3Cg id='strokes-671a6172-740f-80f7-8008-16a7efce1307-5c8da088-8494-805d-8003-b433f72f6c2a'%3E%3Cpath class='cls-2' d='M.75.75h16'/%3E%3C/g%3E%3Cg id='fills-5c8da088-8494-805d-8003-b433f7322016'%3E%3Cpath class='cls-1' d='M.75,12.75h16'/%3E%3C/g%3E%3Cg id='strokes-671a6172-740f-80f7-8008-16a7efce7e5a-5c8da088-8494-805d-8003-b433f7322016'%3E%3Cpath class='cls-2' d='M.75,12.75h16'/%3E%3C/g%3E%3C/svg%3E");
  color: transparent;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: left center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 50;
}

@media (max-width: 768px) {
  main[role="main"] {
    display: block;
  }
  
  #block-ribo-sidebartoggle {
    display: block;
  }


  .layout-content {
    min-width: 0;
  }

  .layout-sidebar-first {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;

    width: min(85vw, 320px);
    height: 100vh;
    overflow-y: auto;

    background: white;
    padding: 10px;

    transform: translateX(-100%);
    transition: transform 250ms ease;
    padding-top: 60px;
    border-right: 1px solid black;
  }

  body.sidebar-open .layout-sidebar-first {
    transform: translateX(0);
  }

  body.sidebar-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, 0.35);
  }
}

/* views pager */

.pager__item {
  padding: 0 5px;
}
.pager__item--previous,
.pager__item--next {
  font-weight: bold;
  color: white;
  background: #1c2c8a;
  border-radius: 10px;
  padding: 0;
}

.pager__item--previous a,
.pager__item--next a {
  color: white;
  padding: 2px 7px;
  display: inline-block;
}

/* LOCATION BUTTONS */
.view-display-id-locations_overview_block {
  border: 1px solid black;
  border-radius: 10px;
  height: calc(100vh - 180px);
  overflow: hidden;
  background: #ebebeb;
}

@media (max-width: 768px) {
  .view-display-id-locations_overview_block {

    height: calc(100vh - 80px);

  }

}

.view-display-id-locations_overview_block .view-filters {
  padding: 10px;
  border-bottom: 1px solid black;
}

.view-display-id-locations_overview_block .view-filters .form--inline {
  display: flex;
}

.view-display-id-locations_overview_block .view-filters .form--inline .form-item,
.view-display-id-locations_overview_block .view-filters .form--inline .form-actions {
  margin: 0px;
}

.view-display-id-locations_overview_block .view-filters .form--inline .form-item input {
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid black;
  height: 40px;
  line-height: 40px;
  border-radius: 10px 0 0 10px;
  text-indent: 10px;
}

.view-display-id-locations_overview_block .view-filters {
  padding: 0 10px 10px 10px;
  background: white;
  height: 40px;
}

.view-display-id-locations_overview_block .view-filters input.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: 1px solid black;
  border-left: none;
  color: transparent;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' width='36.6' height='36.6' viewBox='0 0 36.6 36.6'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-miterlimit:10;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='12.7' cy='12.7' r='11.7'/%3E%3Cline class='cls-1' x1='20.81' y1='20.81' x2='35.89' y2='35.89'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  border-radius: 0 10px 10px 0; 
  transition: 0.15s;
  cursor: pointer;
}

.view-display-id-locations_overview_block .view-filters input.button:hover {
  background-color: #1c2c8a;
  border-color: #1c2c8a;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' width='36.6' height='36.6' viewBox='0 0 36.6 36.6'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Ccircle class='cls-1' cx='12.7' cy='12.7' r='11.7'/%3E%3Cline class='cls-1' x1='20.81' y1='20.81' x2='35.89' y2='35.89'/%3E%3C/svg%3E");
}

.view-display-id-locations_overview_block .view-header {
  padding: 10px;
  background: white;
  height: 30px;
}

.view-display-id-locations_overview_block .view-header h3 {
  margin: 0;
  text-transform: uppercase;
  color: #1c2c8a;
  font-weight: bold;
  font-size: 20px;
}


.view-display-id-locations_overview_block .view-content {
  overflow-y: auto;
  height: calc(100vh - 300px);
  padding: 10px;
}


@media (max-width: 768px) {
  .view-display-id-locations_overview_block .view-content {
    height: calc(100vh - 80px);
  }

}

.view-display-id-locations_overview_block .view-content .views-row {
  
}

.view-display-id-locations_overview_block .view-empty {
  padding: 10px;
}

.location-button {
  border: 1px solid black;
  padding: 10px;
  background: white;
  border-radius: 10px;
  margin: 0 0 10px 0;
  display: block;
  text-decoration: none;
  transition: 0.15s;
}

.location-button:hover,
.is-current .location-button {
  background: #1c2c8a;
  color: white;
}

.location-id {
  font-weight: bold;
}

/* common */

.ribo-card {
  border: 1px solid black;
  border-radius: 10px;
  margin: 0 0 10px 0;
  background: white;
}

.ribo-card-header {
  border-bottom: 1px solid black;
  padding: 10px;

}

.ribo-card-content {
  padding: 10px;
  
}

.ribo-card-content span {
  display: block;
  word-break: break-all;
}


.ribo-card-content span.email,
.ribo-card-content span.phone,
.ribo-card-content span.name {
  background-size: 20px 20px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 25px;
  margin-bottom: 5px;
}

.ribo-card-content span label {
  margin-right: 5px;
  font-weight: bold;
  
  
}

.ribo-card-content span label:after {
  content: ":";
}

.ribo-card-content span.email {
  background-image: url("data:image/svg+xml,%3Csvg width='24' xmlns='http://www.w3.org/2000/svg' height='24' id='screenshot-5c8da088-8494-805d-8003-b433f3e7e696' viewBox='0 0 24 24' xmlns:xlink='http://www.w3.org/1999/xlink' fill='none' version='1.1'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b433f3e7e696'%3E%3Cg class='frame-container-wrapper'%3E%3Cg class='frame-container-blur'%3E%3Cg class='frame-container-shadows'%3E%3Cg fill='none'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b433f3e7e696'%3E%3Crect rx='0' ry='0' x='0' y='0' width='24' height='24' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' class='frame-background'/%3E%3C/g%3E%3Cg class='frame-children'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b433f3ea99b9' style='display: none;'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b433f3ea99b9'%3E%3Crect width='23.999999999999886' height='24.000000000000227' x='0' stroke-linejoin='round' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none;' ry='0' fill='none' stroke-linecap='round' rx='0' y='0'/%3E%3C/g%3E%3Cg fill='none' stroke-linejoin='round' stroke-linecap='round' id='strokes-24605d7e-de09-8000-8008-143df943f3b7-5c8da088-8494-805d-8003-b433f3ea99b9' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Crect rx='0' ry='0' x='0' y='0' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' width='23.999999999999886' height='24.000000000000227' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='shape-5c8da088-8494-805d-8003-b433f3ee3fd7'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b433f3ee3fd7'%3E%3Crect width='19.999999999999886' height='16' x='2' stroke-linejoin='round' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none;' ry='2' fill='none' stroke-linecap='round' rx='2' y='4'/%3E%3C/g%3E%3Cg fill='none' stroke-linejoin='round' stroke-linecap='round' id='strokes-24605d7e-de09-8000-8008-143df9441176-5c8da088-8494-805d-8003-b433f3ee3fd7' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Crect rx='2' ry='2' x='2' y='4' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' width='19.999999999999886' height='16' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='shape-5c8da088-8494-805d-8003-b433f3f12efc'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b433f3f12efc'%3E%3Cpath d='M22,7L13.030029296875,12.699951171875C12.4000244140625,13.0947265625,11.5999755859375,13.0947265625,10.969970703125,12.699951171875L2,7' fill='none' stroke-linecap='round' stroke-linejoin='round' style='fill: none;'/%3E%3C/g%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' id='strokes-24605d7e-de09-8000-8008-143df94460b1-5c8da088-8494-805d-8003-b433f3f12efc' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Cpath d='M22,7L13.030029296875,12.699951171875C12.4000244140625,13.0947265625,11.5999755859375,13.0947265625,10.969970703125,12.699951171875L2,7' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ribo-card-content span.phone {
  background-image: url("data:image/svg+xml,%3Csvg width='24' xmlns='http://www.w3.org/2000/svg' height='24' id='screenshot-5c8da088-8494-805d-8003-b4341e7db4cb' viewBox='0 0 24 24' xmlns:xlink='http://www.w3.org/1999/xlink' fill='none' version='1.1'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b4341e7db4cb'%3E%3Cg class='frame-container-wrapper'%3E%3Cg class='frame-container-blur'%3E%3Cg class='frame-container-shadows'%3E%3Cg fill='none'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b4341e7db4cb'%3E%3Crect rx='0' ry='0' x='0' y='0' width='24' height='24' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' class='frame-background'/%3E%3C/g%3E%3Cg class='frame-children'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b4341e810cc9' style='display: none;'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b4341e810cc9'%3E%3Crect width='24' height='24' x='0' stroke-linejoin='round' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none;' ry='0' fill='none' stroke-linecap='round' rx='0' y='0'/%3E%3C/g%3E%3Cg fill='none' stroke-linejoin='round' stroke-linecap='round' id='strokes-091bfa0d-51fd-800e-8008-143e18a5f715-5c8da088-8494-805d-8003-b4341e810cc9' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Crect rx='0' ry='0' x='0' y='0' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' width='24' height='24' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='shape-5c8da088-8494-805d-8003-b4341e85bce6'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b4341e85bce6'%3E%3Cpath d='M22,16.9200439453125L22,19.9200439453125C22.00225830078125,20.483154296875,21.76702880859375,21.0211181640625,21.35205078125,21.40185546875C20.9371337890625,21.7825927734375,20.380859375,21.970703125,19.82000732421875,21.9200439453125C16.74285888671875,21.585693359375,13.7869873046875,20.5341796875,11.19000244140625,18.8499755859375C8.7738037109375,17.314697265625,6.725341796875,15.26611328125,5.19000244140625,12.8499755859375C3.5,10.2412109375,2.4482421875,7.27099609375,2.1199951171875,4.1800537109375C2.0694580078125,3.620849609375,2.25628662109375,3.0662841796875,2.634765625,2.651611328125C3.01324462890625,2.2369384765625,3.548583984375,2.00048828125,4.1099853515625,2L7.1099853515625,2C8.1138916015625,1.9901123046875,8.969482421875,2.7259521484375,9.1099853515625,3.719970703125C9.23663330078125,4.6800537109375,9.471435546875,5.6226806640625,9.80999755859375,6.530029296875C10.084716796875,7.2608642578125,9.90899658203125,8.0848388671875,9.3599853515625,8.6400146484375L8.09002685546875,9.9100341796875C9.5135498046875,12.41357421875,11.58642578125,14.4864501953125,14.09002685546875,15.9100341796875L15.3599853515625,14.6400146484375C15.91522216796875,14.0909423828125,16.7391357421875,13.915283203125,17.469970703125,14.18994140625C18.37725830078125,14.528564453125,19.3199462890625,14.763427734375,20.280029296875,14.8900146484375C21.28558349609375,15.0318603515625,22.02520751953125,15.90478515625,22,16.9200439453125Z' fill='none' stroke-linecap='round' stroke-linejoin='round' style='fill: none;'/%3E%3C/g%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' id='strokes-091bfa0d-51fd-800e-8008-143e18a658b8-5c8da088-8494-805d-8003-b4341e85bce6' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Cpath d='M22,16.9200439453125L22,19.9200439453125C22.00225830078125,20.483154296875,21.76702880859375,21.0211181640625,21.35205078125,21.40185546875C20.9371337890625,21.7825927734375,20.380859375,21.970703125,19.82000732421875,21.9200439453125C16.74285888671875,21.585693359375,13.7869873046875,20.5341796875,11.19000244140625,18.8499755859375C8.7738037109375,17.314697265625,6.725341796875,15.26611328125,5.19000244140625,12.8499755859375C3.5,10.2412109375,2.4482421875,7.27099609375,2.1199951171875,4.1800537109375C2.0694580078125,3.620849609375,2.25628662109375,3.0662841796875,2.634765625,2.651611328125C3.01324462890625,2.2369384765625,3.548583984375,2.00048828125,4.1099853515625,2L7.1099853515625,2C8.1138916015625,1.9901123046875,8.969482421875,2.7259521484375,9.1099853515625,3.719970703125C9.23663330078125,4.6800537109375,9.471435546875,5.6226806640625,9.80999755859375,6.530029296875C10.084716796875,7.2608642578125,9.90899658203125,8.0848388671875,9.3599853515625,8.6400146484375L8.09002685546875,9.9100341796875C9.5135498046875,12.41357421875,11.58642578125,14.4864501953125,14.09002685546875,15.9100341796875L15.3599853515625,14.6400146484375C15.91522216796875,14.0909423828125,16.7391357421875,13.915283203125,17.469970703125,14.18994140625C18.37725830078125,14.528564453125,19.3199462890625,14.763427734375,20.280029296875,14.8900146484375C21.28558349609375,15.0318603515625,22.02520751953125,15.90478515625,22,16.9200439453125Z' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  
}

.ribo-card-content span.name {
  background-image: url("data:image/svg+xml,%3Csvg width='24' xmlns='http://www.w3.org/2000/svg' height='24' id='screenshot-5c8da088-8494-805d-8003-b434d2a40505' viewBox='0 0 24 24' xmlns:xlink='http://www.w3.org/1999/xlink' fill='none' version='1.1'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b434d2a40505'%3E%3Cg class='frame-container-wrapper'%3E%3Cg class='frame-container-blur'%3E%3Cg class='frame-container-shadows'%3E%3Cg fill='none'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b434d2a40505'%3E%3Crect rx='0' ry='0' x='0' y='0' width='24' height='24' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' class='frame-background'/%3E%3C/g%3E%3Cg class='frame-children'%3E%3Cg id='shape-5c8da088-8494-805d-8003-b434d2a922ed' style='display: none;'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b434d2a922ed'%3E%3Crect width='24' height='24' x='0' stroke-linejoin='round' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none;' ry='0' fill='none' stroke-linecap='round' rx='0' y='0'/%3E%3C/g%3E%3Cg fill='none' stroke-linejoin='round' stroke-linecap='round' id='strokes-3b35a514-02d2-8031-8008-143e4652880f-5c8da088-8494-805d-8003-b434d2a922ed' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Crect rx='0' ry='0' x='0' y='0' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' width='24' height='24' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='shape-5c8da088-8494-805d-8003-b434d2ade22b'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b434d2ade22b'%3E%3Cellipse cy='8' stroke-linejoin='round' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none;' ry='5' fill='none' stroke-linecap='round' rx='5' cx='12'/%3E%3C/g%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' id='strokes-3b35a514-02d2-8031-8008-143e46531d0b-5c8da088-8494-805d-8003-b434d2ade22b' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Cellipse cx='12' cy='8' rx='5' ry='5' transform='matrix(1.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000)' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='shape-5c8da088-8494-805d-8003-b434d2b3384b'%3E%3Cg class='fills' id='fills-5c8da088-8494-805d-8003-b434d2b3384b'%3E%3Cpath d='M20,21C20,16.581787109375,16.41827392578125,13,12,13C7.58172607421875,13,4,16.581787109375,4,21' fill='none' stroke-linecap='round' stroke-linejoin='round' style='fill: none;'/%3E%3C/g%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' id='strokes-3b35a514-02d2-8031-8008-143e4653760e-5c8da088-8494-805d-8003-b434d2b3384b' class='strokes'%3E%3Cg class='stroke-shape'%3E%3Cpath d='M20,21C20,16.581787109375,16.41827392578125,13,12,13C7.58172607421875,13,4,16.581787109375,4,21' style='fill: none; stroke-width: 2; stroke: rgb(0, 0, 0); stroke-opacity: 1;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ribo-card .cbs span{
  height: 22px;
  display: block;
  margin: 0 0 5px 0;
  line-height: 22px;
}

.ribo-card .cbs span.cb {
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border: 1px solid black;
}


/* LOCATION */

article.ribo-location {
  border: 1px solid black;
  border-radius: 10px;
  overflow: hidden;
}

article.ribo-location .header {
  border-bottom: 1px solid black;
  padding: 10px;
}

article.ribo-location .header .location-label {
  margin: 0;
  text-transform: uppercase;
  color: #1c2c8a;
  font-weight: bold;
  font-size: 20px;
}


article.ribo-location .content.main-content {
  background: #ebebeb;
  padding: 10px;
}



/* tabs */

.ribo-tabs {
  display: flex;
  padding: 10px 0;
}

.ribo-tabs .tab {
  padding: 10px 20px;
  background: white;
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  cursor: pointer;
}

.ribo-tabs .tab.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.ribo-tabs .tab:first-child {
  border-radius: 10px 0 0 10px;
  border-left: 1px solid black;
}

.ribo-tabs .tab:last-child {
  border-radius: 0 10px 10px 0;
}

.ribo-tabs .tab:hover,
.ribo-tabs .tab.is-current {
  background: #1c2c8a;
  border-color: #1c2c8a;
  color: white;
}


/* ribo-servicemessage */



.view-service-messages {
  position: relative;
}

.view-service-messages .pager {
  position: absolute;
  right: 10px;
  top: 10px;
}
.view-service-messages .pager #pagination-heading {
  display: none;
}

.view-service-messages .pager ul {
  margin: 0;
}





article.ribo-tabcontent-area h3 {
  margin-top: 0;
  margin-bottom: 25px;
}
article.ribo-tabcontent-area .content {
  display: flex;
  gap: 10px;
  position: relative;
}

/* hide exposed filters */
.view-display-id-service_messages .view-filters {
  display: none;
}
.ribo-tabcontent-area-left {
  flex-basis: 500px;
}

.ribo-tabcontent-area-right {
  flex-basis: calc(100% - 500px);
}

@media (max-width: 768px) {
  article.ribo-tabcontent-area .content {
    display: block;

  }

}






.view-display-id-service_messages_list {
  margin: 0 0 10px 0;
}

.view-display-id-service_messages_list .view-content {
  display: block;
}

.view-display-id-service_messages_list .views-row {
  display: inline-block;
  margin: 5px 5px 5px 0;
}

.view-display-id-service_messages_list .views-row a {
  background: white;
  border: 1px solid black;
  color: black;
  padding: 4px 7px;
  display: inline-block;
  border-radius: 5px;
}


.view-display-id-service_messages_list .views-row a.is-current {
  background: #1c2c8a;
  border-color: #1c2c8a;
  color: white;

}

@media (max-width: 768px) {
  
  
.view-display-id-service_messages_list .views-row {
  display: block;
    margin: 0;
 }
  
.view-display-id-service_messages_list .view-content {
  display: flex;
}

.view-display-id-service_messages_list .view-content {
  display: flex;
  gap: 10px;

  overflow-x: auto;
  overflow-y: hidden;

  white-space: nowrap;

  flex-wrap: nowrap;

  padding-bottom: 0.5rem;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.view-display-id-service_messages_list .view-content::-webkit-scrollbar {
  display: none;
}

.view-display-id-service_messages_list .views-row {
  flex: 0 0 auto;
}

}



.ribo-servicemessage-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ribo-servicemessage-images img {
  max-width: 100%;
}



/* TABS AND CONTENT */

.tab-content {
  display: none;
}

.tab-content.is-current {
  display: block;
}




/* USERS */

.ribo-user {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ribo-user .picture {
  flex-basis: 50px;
  display: block;
}

.ribo-user .picture img {
  width: 100%;
  max-width: 50px;
  height: auto;
  border-radius: 50px;
  overflow: hidden;
}





.ribo-lokation-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

/*
.ribo-contacts {
  display: flex;
  gap: 10px;
  margin: 0px;
}

.ribo-contacts .ribo-card {
  flex-basis: 50%;
}*/

.layout-container {
  max-width: 1440px;
  margin: 0 auto;
}


#block-ribo-sitebranding {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.region-header2 {
  margin: 0 0 20px 0;
}

#ribo-graphics {
  margin-left: -40px;
  width: calc(100% + 80px);
  height: auto;
}


@media (min-width: 1440px) {
  #ribo-graphics {
    margin-left: 0px;
    width: 100%;
    
  }

}


@media (max-width: 768px) {
  .region-header {
    position: fixed;
    left: 20px;
    right: 20px;
    width: calc(100vw - 40px);
    top: 0;
    z-index: 100;
    padding: 0;
    margin: 0;
  }
  #ribo-graphics {
    margin-top: 20px;
    margin-left: -10px;
    width: calc(100% + 20px);
  }

  
}