*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#main-content h1{
    font-family: 'rs-beton-sans-bold-regular', sans-serif !important;
    font-size: 34px;
    color: #774091;
    text-transform: uppercase;
    margin-bottom: 16px;
}

#main-content h2{
    font-family: 'rs-beton-sans-bold-regular', sans-serif !important;
    font-size: 28px;
    text-transform: uppercase;
    color: #774091;
    margin-top: 32px;
    margin-bottom: 8px;
}

#main-content h3{
    font-family: 'rs-beton-sans-bold-regular', sans-serif !important;
    font-size: 20px;
    text-transform: uppercase;
    color: #774091;
}

p{
    font-family: 'rs-adonis-bold', sans-serif !important;
    font-size: 16px;
    color: #000;
}

a{
    text-decoration: none;
    color:#fff;
}

table{
    width: 100%;
}

td{
    padding: 8px 16px 8px 0;
}

table td{
    padding-left: 0;
}

tr{
    border-bottom: 2px solid #DE7A87;
    display: block;
    width: 100%;
}

button{
    font-family: 'adonis-web', sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    margin: 0 8px 0 0px;
    padding: 5px 12px;
    background-color: #774091;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 2em;
    cursor: pointer;
    outline: none;
}

button:hover{
    background-color: #DE7A87;
}

.entry-content table,
.entry-content th,
.entry-content td{
	border:none;
}

.top-row{
    padding: 16px;
    padding-bottom: 0;
    padding-left: 0px;
}

.bottom-row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-right{
    margin-left: auto;
}

.main-cell{
    display: block;
    padding: 0;
}

.filter-buttons{
    padding: 8px 0px 8px 0px;
}

.filter-button{
    margin-bottom: 8px;
}


/*########### Loader ###########*/
.lds-spinner {
    color: official;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #774091;
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  


/*############### Media Queries ###############*/
@media only screen and (max-width: 840px){
    td{
        padding: 8px 0 8px 0;
    }
    
    .top-row{
        text-align: center;
        margin-bottom: 4px;
    }

    .bottom-row{
        display: block;
    }

    .bottom-right{
        width: 100%;
    }

    .bottom-right td{
        width: 100%;
        display: block;
    }

    .bottom-right button{
        width: 100%;
        margin: 0 4px 8px 4px;
    }

    .bottom-left{
        align-items: center;
        display: flex;
        justify-content: space-evenly;
        margin-bottom: 4px;
    }

    .bottom-left p{
        margin-right: 0px;
    }
}