﻿.quick-links {
    box-shadow: 0px 0px 10px #00000029;
    background-color: var(--white-shade1);
    padding: var(--p-tb);
    position: relative;
    padding-bottom: 4rem;
}

.quick-links .links{
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 30px;
   
}

.quick-links .link{
    margin-right: 1rem;
}

.quick-links:after{
    background: linear-gradient(to right, var(--blue) 33%,var(--green) 33%, var(--green) 66%, var(--purple) 66%, var(--purple) 100%);
    position: absolute;
    content: '';
    height: 11px;
    right: 0;
    left: 0;
    bottom: 0;
}

.page-id-210 .quick-links:after{
    background: linear-gradient(to right, var(--blue) 50%,var(--green) 50%, var(--green) 100%);
    position: absolute;
    content: '';
    height: 11px;
    right: 0;
    left: 0;
    bottom: 0;
}


.page-id-224 .quick-links:after{
    background: var(--bgred);
    position: absolute;
    content: '';
    height: 11px;
    right: 0;
    left: 0;
    bottom: 0;
}


.page-id-25 .quick-links:after{
    background: var(--bgyellow);
    position: absolute;
    content: '';
    height: 11px;
    right: 0;
    left: 0;
    bottom: 0;
}



/*.quick-links a{
    position: relative;
}


.quick-links a:after{
   position: absolute;
    content: '|';
    height: 14px;
    right: -18px;

} 
*/



.links .link:not(:last-child):after{
   
    content: '|';
    color: var(--gray);
    margin-left: 10px;
} 



@media only screen and (max-width: 30rem) {
   .quick-links{
       padding-bottom: 2.5rem;
    padding-top: 2rem;
   }
   
   .quick-links .links{
        flex-direction: column;
        text-align: center
    }  
    
    .quick-links .h3-heading{
    font-size: 1.75rem;
    }
    
     .quick-links .links .link{
     margin-bottom: 1rem;
    margin-right: 0;
    }
    
    .quick-links .links .link a{
        display: block;
        text-align: center;
    }
    
    .links .link:not(:last-child):after{
      color: var(--white-shade1);  
    }
}


