

@font-face{
	src: url(fonts/nyala.woff);
	font-family: 'nyala';
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 48
}


body {
	/* background: #fff; */
	/* font-family: 'Montserrat'; */
	/* margin:0; */
}

.title {

    text-align: center;
    font-weight: bold;
    font-size: 1.75em;
}






.gold-background {
	background: rgb(192, 148, 101);
    filter: brightness(85%);
	/* background:  rgb(150, 110, 60); */
}
.green-background {
    background: #00CC00;
}
.blue-background {
    background: rgb(2, 1, 103);
}
.blue-text {
    color: rgb(2, 1, 103);
}

.red-text {
    color: red;
    /* text-decoration: none; */
}

.font-family-nyala {
    font-family: 'nyala'; 
}

.non-bullet {
    list-style-type: none;
}
.brightness-hover:hover {
    filter: brightness(1.25);
}



.table-container {
	display: block;
	margin: auto;
}
.table-container table {
	
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;

}
.table-container caption{
	caption-side: top !important;
}
.table-container td{
	border: 1px solid #dee2e6;
	padding: .2em;
	
}
.table-container .odd-row{
	background-color: #e9eef4;
}
.table-container .even-row{
	border: 1px solid #dee2e6;
}


.column-width {
	width: 7em;
}
/*=============================================================================*/
/*					    	RibaFree banner  		    				   */     
/*=============================================================================*/

.ribafree {
    font-family: 'nyala'; 
    text-decoration: inherit; 
    width:100%; 
    color: rgba(2, 1, 103, 1);
}
.ribafree:hover {
    color: rgb(27, 129, 249);
}

/*=============================================================================*/
/*					    	button-3d-pushable  		    				   */     
/*=============================================================================*/

.button-3d-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;

}

.button-3d-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
	
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform
        600ms
        cubic-bezier(.3, .7, .4, 1);
}

.button-3d-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
        to left,
        /* hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100% */
        orange,
        rgb(225, 170, 116),
        rgb(230, 183, 136),
        rgb(228, 192, 156),
        rgb(255, 255, 141)
    );
}

.button-3d-front {
    display: block;
    position: relative;
    /* padding: 12px 27px; */
    border-radius: 12px;
    /* font-size: 1.1rem; */
    color: white;
    /* background: hsl(345deg 100% 47%); */
    background: rgba(2, 1, 103, 1);
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform
        600ms
        cubic-bezier(.3, .7, .4, 1);


    overflow: hidden;
    
}

@media (min-width: 768px) {
    .button-3d-front {
        font-size: 1rem;
        padding: 5px 10px;
    }
}

.button-3d-pushable:hover {
    filter: brightness(110%);
}

.button-3d-pushable:hover .button-3d-front {
    transform: translateY(-6px);
    transition:
        transform
        250ms
        cubic-bezier(.3, .7, .4, 1.5);
}

.button-3d-pushable:active .button-3d-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-3d-pushable:hover .button-3d-shadow {
    transform: translateY(4px);
    transition:
        transform
        250ms
        cubic-bezier(.3, .7, .4, 1.5);
}

.button-3d-pushable:active .button-3d-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-3d-pushable:focus:not(:focus-visible) {
    outline: none;
}

.button-3d-front::before {
    content:"";
    height: 160%;
    width: 400px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -20px;
    transform: translateX(-400px) rotate(-30deg);
    transition: all .5s;
}


.button-3d-front:hover::before {
    transform: translateX(200px) rotate(-30deg);
}