
.aw_jobList.cs {
  column-count: 3;
  display: inline-block;
}
/*
.aw_jobList.cs .aw_jobPosting:nth-child(n + 11) { 
  display: none;
}
*/


@media (max-width: 768px) {
  .aw_jobList.cs .aw_jobPosting:nth-child(n + 11) {
    display: none;
  }
}


@media (max-width: 768px) {
  .aw_jobList.cs {
    column-count: 1; 
  }  
}

.aw_jobList.cs:not(p) {
	padding-left: 0em; 
  margin-bottom: 1em;
	margin-right: 0em;
  margin-left: 0em;
}

  
 /*ALLIBO css*/
  
.aw_jobList.cs .aw_jobPosting .aw_rush 
  /*Etichetta "Ricerca Urgente"*/
    {
    display: inline-block;
    margin-bottom: 7px;
    padding: 2px 6px 1px 6px;
    background-color: #dd4b39;
    color: #FFFFFF;
    font-size: 80%;
    text-transform: uppercase;

}



.aw_jobList.cs .aw_searchBox 
  /*Box del motore di ricerca*/
    {
		
		width: 80%;
    background-color: #FFFFFF;
}

.aw_jobList.cs .aw_searchBox .aw_select 
  /*Campo di ricerca*/
    {
		 width: 30%;
     border: 1px solid grey;
    
}

.aw_jobList.cs .aw_searchBox .aw_searchButton /*Pulsante di ricerca*/
{
	  font-size: 17px;
	  border: 1px solid grey;
	  /*position: absolute;*/
	  width: 20%;
	  background: #CCCCCC;
	  text-align: center;
    background-color: #D91A2A;
	  width: 90px;
	  font-size: 6px;
	  padding: 10px;
    
	}

.aw_jobList.cs .aw_jobPosting 
  /*Contenitore dell'Annuncio*/
    {
		/* width: 350px; */
	  width: 95%; 
		border: 1px solid grey;
    border-color: #959595;  
		background-color: #FFFFFF;
		display: inline-block;
    border-radius: 40px; /* Adjust the value as needed for the desired level of rounding */  
    page-break-inside: avoid;         
    break-inside: avoid-column;      /* Chrome, Safari, IE 11 */

}


/*
=====
DEMO
=====
*/

body{
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Open Sans, Ubuntu, Fira Sans, Helvetica Neue, sans-serif;
  margin: 0;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page{
  box-sizing: border-box;
  width: 100%;
  max-width: 480px;
  margin: auto;
  padding: 1rem;

  display: grid;
  grid-gap: 30px;
}

.linktr{
  order: -1;
  padding: 1.75rem;
  text-align: center;
}

.linktr__goal{
  background-color: rgb(209, 246, 255);
  color: rgb(8, 49, 112);
  box-shadow: rgb(8 49 112 / 24%) 0px 2px 8px 0px;
  border-radius: 2rem;
  padding: .5rem 1.25rem;
}

@media (min-width: 1024px){
  
  .linktr{
    position: absolute; 
    right: 1rem; 
    bottom: 1rem;
  }
}

.r-link{
    --uirLinkDisplay: var(--rLinkDisplay, inline-flex);
    --uirLinkTextColor: var(--rLinkTextColor);
    --uirLinkTextDecoration: var(--rLinkTextDecoration, none);

    display: var(--uirLinkDisplay) !important;
    color: var(--uirLinkTextColor) !important;
    text-decoration: var(--uirLinkTextDecoration) !important;
}

/* ultima search box */
/* setting the color palette */
html {
  --dark-gray: rgb(90, 90, 90);
  --light-gray: rgb(148, 148, 148);
  --focus-blue: rgb(69, 159, 189);
}

.searchbox {
  --target-size: 48px; 
  --box-height: var(--target-size);
  --border-radius: calc(var(--box-height) / 2);
  --border-width: 2px;
  --icon-size: calc(var(--box-height) * 3/4 );
  --side-margin: calc(var(--border-radius) / 2);
  --icon-vertical-margin: calc( ( var(--box-height) - var(--icon-size) ) / 2 );
}

/* shaping the box */
.searchbox {
  height: var(--box-height);
  max-width: 561px; /* to follow the search box of google.com */
}
.searchbox input[type="search"] {
  border: var(--border-width) solid var(--dark-gray);
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
}

/* Styling each component */
.searchbox svg {
  fill: var(--dark-gray);
  height: var(--icon-size);
  width: var(--icon-size);
}
.searchbox input[type="search"] {
  -webkit-appearance: none; /* to prevent Safari from ignoring font-size */
  color: var(--dark-gray); 
  font-family: 'Noto Sans', Verdana, sans-serif;
  font-size: 1rem;
}
.searchbox input[type="search"]::placeholder {
  color: var(--light-gray);
  opacity: 1; /* to override the default of Firefox */
}

 /* positioning inner elements */
.searchbox {
  position: relative;
}
.searchbox svg {
  position: absolute;
  left: var(--side-margin);
  top: var(--icon-vertical-margin);
  bottom: var(--icon-vertical-margin);
}
.searchbox input[type="search"] {
  padding-left: calc( var(--side-margin) + var(--icon-size) + 4px);
  padding-right: var(--side-margin);
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the left padding inside the box for Safari; see https://github.com/filipelinhares/ress/blob/master/ress.css */
}

.searchbox svg {
  z-index: -1;
}
.searchbox input[type="search"] {
  background: transparent;
}

.searchbox input[type="search"]:focus {
  border-color: var(--focus-blue);
  box-shadow: 0px 0px 5px var(--focus-blue);
  outline: 1px solid transparent; 
}

.searchbox input[type="search"]::-webkit-search-cancel-button {
  /* Remove default */
  -webkit-appearance: none;
  /* Now your own custom styles */
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgb(148, 148, 148)' %3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z' /%3E%3C/svg%3E%0A");
  height: calc(var(--box-height) / 2);
  width: calc(var(--box-height) / 2);
}

input[type="search"] {
  -webkit-tap-highlight-color: transparent; 
}


body .searchbox {
  width: 90%;
  margin: 0 auto;
  top: 48px;
}

.group {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 12px 0;
  margin-bottom: 12px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.offers-scroll {
  height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 16px;
}

@media (max-width: 768px) {
  .group {
    padding: 10px 0 8px;
    margin-bottom: 10px;
  }

  body .searchbox {
    width: calc(100% - 24px);
    max-width: none;
    top: 0;
  }

  .searchbox {
    --target-size: 44px;
  }

  .searchbox input[type="search"] {
    font-size: 0.95rem;
  }

  #totalJobCount,
  #noResultsMessage,
  #paginationContainer {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .offers-scroll {
    height: calc(100vh - 108px);
  }
}
/* Add these styles to your CSS file */

.pagination-button {
    background-color: #EE7953;
    color: white;
    border: 1px solid #4CAF50;
    padding: 8px 12px;
    margin: 4px;
    cursor: pointer;
    border-radius: 4px;
}

.pagination-button.active {
    background-color: #E92700;
}

/* Allinea la paginazione a sinistra (non a destra) */
#paginationContainer {
  text-align: left;
  width: 100%;
  display: block;
}