/* ****************************** */
/* **** Carousel PDF styles **** */
/* ****************************** */

.pdf-carousel {
  margin: 20px 0;
}

.pdf-item {
  text-align: left;
  border-bottom: 3.5px solid black;
  margin: 0 10px;
  padding: 15px;
  border-radius: 0px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  height: 282px !important;
}

.pdf-item .folder-name {
  font-size: 18px;
  color: #0D3755;
  margin-bottom: 5px;
  font-weight: bold;
  overflow-wrap: break-word;
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.pdf-item .pdf-category {
	color: black;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.pdf-item .pdf-title {
  font-size: 18px;
  margin: 5px 0;
  font-weight: 800;
  color: #0D3755;
  word-break: break-word;
}

.pdf-item .pdf-date {
  font-size: 15px;
  color: #555;
  margin: 5px 0;
}

.pdf-item .pdf-excerpt {
  font-size: 15px;
  margin: 5px 0;
/*   color: #777; */
  color: black;
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  height: 110px;
}

.pdf-item .pdf-view {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.pdf-item .pdf-view:hover {
  background-color: #005885;
}

.slick-prev,
.slick-next {
  background-color: black;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  z-index: 1;
  margin: 0 -3px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 45px;
  opacity: 1;
  transform: translate(-50%, -45%);
  position: absolute;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: black;
}


/* ****************************** */
/* ******** Info PDF style ****** */
/* ****************************** */

.pdf-single-info {
  border-bottom: 2px solid black;
  border-radius: 0px;
  padding: 30px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 360px;
  margin: 10px auto;
}

.pdf-row {
  display: flex;
  gap: 20px;
}

.pdf-thumbnail-container {
  flex: 0 0 120px;
  max-width: 120px;
}

.pdf-thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid gray !important;
}

.pdf-details {
  flex: 1;
  margin-top: 20px;
}

.pdf-details h4 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #333;
  word-break: break-word;
}

.pdf-details p {
  font-size: 14px;
  margin: 5px 0;
  color: #555;
}

.pdf-single-info .pdf-download-container {
  text-align: center;
  margin-top: 15px;
}

.pdf-single-info .pdf-download {
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  background-color: transparent;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  color: #61ce70;
  border: 2px solid #61ce70;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.pdf-single-info .pdf-download:hover {
  background-color: #61ce70;
  color: #fff;
}

/* ****************************** */
/* ******** GRID PDF style ****** */
/* ****************************** */

.pdf-flex {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pdf-flex > h2 {
	text-align: center;
	color: #0D3755;
	font-weight: 600;
	font-size: 23px;
}

.pdf-flex .pdf-item {
  text-align: left;
  padding: 35px 8%;
  border-radius: 0px;
  background: #fff;
  height: 160px !important;
  display: flex;
  justify-content: center;
  gap: 3px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin: 0px;
}

.pdf-item-container-data {
	max-width: 1440px;
	display: flex;
	justify-self: center;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}

.pdf-flex .pdf-item:hover {
	background: rgba(246, 249, 252, 1);
}

.pdf-item svg {
	width: 20px;
	stroke: 10;
}

.pdf-item .folder-name {
  font-size: 18px;
  color: black;
  margin-bottom: 5px;
  font-weight: bold;
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.pdf-item .folder-name a {
	text-decoration: underline;
  color: #0D3755;
	word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pdf-flex .pdf-item .pdf-title {
  font-size: 18px;
  margin: 5px 0;
  font-weight: bold;
  color: black;
  word-break: break-word;
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.pdf-flex .pdf-item .pdf-date {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

/* .pdf-item .pdf-excerpt {
  font-size: 14px;
  margin: 5px 0;
  color: #777;
} */

.pdf-flex .pdf-item .pdf-view {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.pdf-flex .pdf-item .pdf-view:hover {
  background-color: #005885;
}

.pdf-flex .pdf-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.pdf-flex .pdf-options > a,
.pdf-options > a:hover {
/* 	color: #61CE70; */
	color: #0D3755;
}

.pdf-flex .pdf-options > a svg {
	width: 12px;
/* 	fill: #61CE70; */
	fill: #0D3755;
}

.pdf-flex .pdf-download-container {
	border: 3px solid #0D3755;
	border-radius: 5px;
    width: auto;
    min-width: 130px;
    height: 45px;
	display: flex;
	justify-content: center;
	gap: 10px;
	background-color: transparent;
	transition: all .4s ease;
	color: #0D3755;
	background-color: white;
}
.pdf-flex .pdf-download-container:hover {
	background-color: #0D3755;
	color: white;
}

.pdf-flex .pdf-download-container a {
	text-decoration: none;
	color: #0D3755;
	font-weight: 600;
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 8px;
}

.pdf-flex .pdf-download-container a svg path {
	fill: #0D3755;
}

.pdf-flex .pdf-download-container:hover a svg path {
	fill: #fff;
}

.pdf-flex .pdf-download-container:hover a {
	color: #fff;
}

.pdf-flex .pdf-item > div > div > a {
    color: #0D3755;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
}

.pdf-flex :is(.pdf-item-info, .pdf-item-interaction) {
	height: 100%
}

.pdf-flex .pdf-item-interaction {
	display: grid;
}

.pdf-flex .pdf-item-interaction a {
	justify-self: end;
}

@media (max-width: 480px) {
  .pdf-flex {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  }
}

/* ****************************** */
/* ******** GROUP PDF style ****** */
/* ****************************** */


.pdf-group {
	margin: 20px 0;
	grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
	width: min(1440px, 100%);
	display: grid;
	gap: 20px;
	justify-self: center;
	padding: 30px 8vw 0px;
}

@media screen and (min-width: 1700px) {
	.pdf-group {
		padding: 0px;
	}
}

@media screen and (min-width: 1440px) {
	.pdf-group {
		padding: 0px 4vw;
	}
}

@media screen and (max-width: 1024px) {
	.pdf-group {
		grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;     
	}
}

@media screen and (max-width: 768px) {
	.pdf-group {
		grid-template-columns: repeat(1, minmax(320px, 1fr)) !important;
		place-items: center;
		padding: 0px;
	}
}

.pdf-group .pdf-group-item {
	min-height: 200px;
	max-width: 300px;
	padding: 20px;
	background-color: #fefefe;
}
.pdf-group .pdf-group-item a,
.pdf-group .pdf-group-item svg,
.pdf-group .pdf-group-item h3 {
	font-weight: 600;
/* 	color: #61CE70; */
	color: #0D3755;
}
.pdf-group .pdf-group-item h3 {
	color: #0D3755;
	font-size: 1.5rem;
}
.pdf-group-item svg {
	width: 14px;
	font-size: 30px;
	fill: #0D3755;
	stroke-width: 13px;
}

/* ********************************************* */
/* ******** Custom Library Carousel Style ****** */
/* ********************************************* */

.slick-track {
  display: flex;
}

button.slick-arrow,
button.slick-arrow:hover {
	background: rgba(13, 55, 85, 0.77);
}

button.slick-arrow {
    height: 100%;
    width: 40px;
}

button.slick-arrow.slick-prev {
	left: -25px
}

button.slick-arrow.slick-next {
    right: -25px;
}

button.slick-arrow:is(.slick-prev, .slick-next)::before {
	font-size: 40px;
	line-height: normal;
	font-family: 'Montserrat Custom';
	color: white;
}

button.slick-slide { 
    
}


/* ******************************* */
/* ******** Button comeback ****** */
/* ******************************* */

.list-pdfs-lime-container-button-comeback {
    margin: 20px 0;
    width: min(1440px, 100%);
    padding: 30px 8vw 0px;
}

.list-pdfs-lime-button-comeback {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    width: 110px;
    height: 40px;
    border-radius: 5px;
    border: 3px solid #0D3755;
    background-color: #0D3755;
    transition: background-color 0.4s ease, color 0.4s ease;
    margin-left: 20px;
}

.list-pdfs-lime-button-comeback:hover {
    background: white;
    color: #0D3755;
}

@media screen and (max-width: 1024px) {
  .list-pdfs-lime-container-button-comeback {
    margin: auto;
  }
}

@media screen and (min-width: 1440px) {
  
  .list-pdfs-lime-container-button-comeback {
    padding: 0px 4vw;
  }
}