﻿/*.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.quick-links a{
    padding-left: 0.15em;
    padding-right: 0.15em;
    text-align: center;
}

@media (max-width: 736px) {
  .quick-links a{
    font-size: 0.85em;
  }
}*/

@-webkit-keyframes orange-fade {   
   0% {background: #de771c;}
   100% {background: none;}
}

@keyframes orange-fade {
   0% {background: #de771c;}
   100% {background: none;}
}

.highlight {
   -webkit-animation: orange-fade 1s ease-in 1;
   animation: orange-fade 1s ease-in 1;
}

/* New Styles */

.quick-links-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.quick-links {
    padding: 0.25rem;
/*    border-radius: 0.4rem;
    background-color: #eae8eb;*/
    display: flex;
    align-items: center;
    height: 1.4rem;
}

.quick-link {
    padding: 0.5rem;
    margin: 0.5rem;
    color: #3d3d3d;
    font-weight: 700;
    border-radius: 0.4rem;
    background-color: #eae8eb;
/*    background-color: #ffffff;
    box-shadow: 0 0.3rem 0.8rem #ededed;*/
}

/*.giving-button-toggled {
    background-color: #ffffff;
    box-shadow: 0 0.3rem 0.8rem #ededed;
}*/

@media all and (max-width: 900px) {
    .quick-links {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .quick-link {
        width: calc(100% - 2.4rem);
        text-align: center;
    }
}