/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800,300i,400i,500i,600i,700i,800i&display=swap');

/* Variables */
:root {
    --Core-One-Default: #008BEE;
    --Core-One-Default-RGB: 0, 112, 210;
    --Core-Two-Default-RGB: 34, 43, 69;
    --Core-Three-Default: #449DD1;
    --Core-One-Hover: #000000;
    --Alpha-15: 0.15;
    --Alpha-20: 0.2;
    --text-custom-height: 20px;
}

/* Global Styles */
html {
    font-family: "Open Sans", sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow-y: scroll;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    margin: 0;
    background-color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
}

/* Components */

/* Added this {.landingTilesWrapper} class in order to center the Landing Tiles */
.landingTilesWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.landingTiles {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    padding-top: 50px;
}

.landingTile {
    background: #fff;
    border: 2px solid rgba(151, 151, 151, 0.2);
    box-shadow: 0px 0px 0px rgba(34, 43, 69, 0.8);
    border-radius: 11px;
    margin-bottom: 30px;
    transition: border-color 0.1s linear;
    min-height: 92.6%;
    flex-basis: 30%;
}

.TileBlockHeader {
    display: flex;
    position: relative;
    padding: 15px 15px !important;
}

.landingTileBlockHeaderLeft {
    margin-right: 10px;
}

.landingTileSymbol>svg {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
}


.landingTileHeader {
    font-size: 160%;
    line-height: 38px;
}

.landingTileBody {
    font-size: 93.75%;
    line-height: calc(100% + 5px);
    margin-bottom: 0;
    min-height: 100px;
}

.LandingTileListInnerTile {
    font-size: 68.75%;
    line-height: 16px;
    font-weight: bold;
    text-transform: capitalize;
    color: #222b454d;
    padding: 0 30px 10px;
    border-bottom: 1px solid #97979733;
    margin-bottom: 0;
    padding-top: 25px;
}

/* Lists */
ul {
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
    list-style: none;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #088BEE;
}

.landingTileLinks ul li a {
    font-size: 87.50%;
    line-height: 23px;
    color: #7F8BA9;
    padding: 10px 30px;
    border-bottom: 1px solid #97979733;
    display: block;
    transition: all 0.1s linear;
    position: relative;
    line-height: var(--text-custom-height);
    padding: 5px 30px !important;
    color: var(--Core-One-Default);
}

.landingTileLinks ul li a:hover {
    color: var(--Core-One-Hover);
}

.landingTileLinks ul li:last-child a {
    border-bottom: 0;
}

.landingTileLinks ul li a[disabled] {
    color: #7F8BA9 !important;
    background-color: #F4F4F4 !important;
    pointer-events: none;
}

.placeholder {
    opacity: 1;
    height: 64px;
    width: 64px;
}

/* Responsive */

/* Small devices (landscape phones, upto 576px) */
@media (max-width: 576px) {
    .landingTilesWrapper {
        padding: 1.4rem 0;
        height: unset;
    }

    .landingTiles {
        flex-direction: column;
        padding: 0 1.4rem;
    }

    .landingTile {
        margin-bottom: 0px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .landingTiles {
        flex-direction: column;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .landingTilesWrapper {
        height: 100vh;
    }

    .landingTiles {
        flex-direction: row;
    }

    .landingTile {
        flex-basis: 50%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .landingTilesWrapper {
        height: 100vh;
    }

    .landingTile {
        flex-basis: 35%;
    }
}