:root {
  --red: rgb(166, 25, 46);
  --gold: rgb(255, 184, 28);
  --nordic: rgb(0, 49, 60);
  --white: rgb(255, 255, 255);
}
.spinner {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid var(--red);
  animation: spin 1s linear infinite;
  margin:10px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pagination-container {
  display: none;
}
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.pagination-container button {
  color: var(--red);
  background-color: var(--white);
  border: solid 1px var(--red);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px;
}

/*
.pagination-container .prev-btn,
.pagination-container .next-btn {
  display: none;
}
*/

.pagination-container .pagination-numbers button {
  margin-right: 5px;
}

.pagination-container .pagination-numbers button:last-child {
  margin-right: 0px;
}

.pagination-container button:disabled,
.pagination-container button:hover:disabled {
  color: var(--red);
  background-color: var(--white);
  opacity: 0.4;
}

.pagination-container button.active {
  color: var(--white);
  background-color: var(--red);
}

.pagination-container button:hover {
  color: var(--white);
  background-color: var(--red);
}
.event-list {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}
.event-list .event {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.875rem;
  padding: 0;
}
.event-list .event:last-child {
    margin-bottom: 0;
}
.event-list .event .event-list__Date {
  background: #ccc;
  color: #fff;
  width: 85px;
  height: 85px;
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}
.event-list__Date--month {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 5px;
}
.event-list__Date--day {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}
.event-list__Text{
    flex-grow: 1;
    padding: 0 15px;
}
.event-list__Text h3{
    font-size:24px !important;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.event-list__Text h3 a{
    font-weight: 500 !important;
    border-bottom: none !important;
}
.event-list__Text .smaller{
    font-size: 12px;
	 color: #505050;
	 line-height: 1.5;
	 text-transform: uppercase;
	 margin-bottom: 10px;
	 display: flex;
	 flex-direction: row;
}
.event-list__Text .smaller .time {
    margin-right: 8px;
}
.event-list__Text .smaller .date:before {
	 content: '\2022';
	 display: inline-block;
	 margin-right: 10px;
}
.event-list .event .event-list__Thumbnail {
  width: 246px;
  height: auto;
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 10px;
}
.event-list .event .event-list__Thumbnail a{
    border: none;
}
.event-list .event .event-list__Thumbnail img {
  width: 100%;
  height: auto;
}
 @media (max-width: 768px) {
     .event-list .event {
        flex-direction: column !important;
        margin: 2rem 0 !important;
        padding-bottom: 20px;
        box-shadow: 0px 16px 1px -15px #e8eaed;
     }
     .event-list .event:last-child {
        box-shadow: unset;
     }
     .event-list .event .event-list__Thumbnail{
         width: 100%;
         flex-shrink: unset;
         flex-grow: unset;
     }
     .event-list .event .event-list__Thumbnail img{
         object-fit: cover;
         height: 140px;
     }
     .event-list__Text{
         flex-grow: unset;
         padding: 0;
     }
     
 }
