﻿@font-face {
    font-family: 'Calibri';
    src: url('/fonts/Calibri/calibri.eot'); /* IE9 Compat Modes */
    src: url('/fonts/Calibri/calibri.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/fonts/Calibri/calibri.woff') format('woff'), /* Modern Browsers */
    url('/fonts/Calibri/calibri.ttf') format('truetype'), /* Safari, Android, iOS */
    url('/fonts/Calibri/calibri.svg#svgFontName') format('svg'); /* Legacy iOS */
}

.button-text {
    display: inline-block;
    font-family: Calibri, Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 210%;
    vertical-align: top;
}

.button-text-big {
    font-size: 24pt;
    line-height: 210%;
    width: 80%;
}

.button-text-medium {
    font-size: 24pt;
    line-height: 210%;
    width: 64%;
}

.button-text-small {
    font-size: 16pt;
    line-height: 320%;
    width: 64%;
}


.tile {
    display: inline-block;
    margin: 1em;
    padding: 1em;
    width: 15em;
    height: 5em;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

    .tile:hover {
        background-color: antiquewhite !important;
        border-radius: 5px;
        transition: all 0.1s ease-in-out;
    }

        .tile:hover .button-text {
            color: darkslategray !important;
            transition: all 0.1s ease-in-out;
        }

    .tile > img {
        width: 5em;
        display: inline-block;
    }

/* When the tile is wider than normal */
.tile-big {
    display: inline-block;
    margin: 1em;
    padding: 1em;
    width: 21em;
    height: 5em;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

    .tile-big:hover {
        background-color: antiquewhite !important;
        border-radius: 5px;
        transition: all 0.1s ease-in-out;
    }

        .tile-big:hover .button-text {
            color: darkslategray !important;
            transition: all 0.1s ease-in-out;
        }

    .tile-big > img {
        width: 5em;
        display: inline-block;
    }

/* When the button is double lined*/
.tile-doubleline {
    display: inline-block;
    margin: 1em;
    padding: 1em;
    width: 21em;
    height: 10em;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

    .tile-doubleline:hover {
        background-color: antiquewhite !important;
        border-radius: 5px;
        transition: all 0.1s ease-in-out;
    }

        .tile-doubleline:hover .button-text {
            color: darkslategray !important;
            transition: all 0.1s ease-in-out;
        }

    .tile-doubleline > img {
        /* max-width: 5em; FOR SQUARE ICONS */
        /* width: 5em; FOR SQUARE SVG */
        max-height: 5em;
        display: inline-block;
    }
