﻿/*************************************************************/
/* TABLE                                                     */
/*************************************************************/


table {
    width: 100%;
}

    table thead {
        color: #5A5B5D;
        font-weight: 600;
        font-size: 24px;
    }

    table tbody {
        color: #5A5B5D;
        font-weight: 600;
        font-size: 20px;
    }


    table th,
    table td {
        padding: 15px 20px 15px 20px;
        text-align: center;
    }

table .control {
    width: 100%;
}


/*************************************************************/
/* GRID / ROW / COLUMN                                       */
/*************************************************************/

.row {
    display: inline-block;
    width: 100%;
    /*border: 1px solid #000;*/
}

.column {
    display: block;
    height: 100%;    
    float: left;    
    text-align: left;
    vertical-align: top;    
}

    .column.w1 {
        width: 100%;
    }

    .column.w2 {
        width: 50%;
    }

    .column.w3 {
        width: 33.33%;
    }

    .column.w4 {
        width: 25%;
    }

    .column.w5 {
        width: 20%;
    }

    .column.w6 {
        width: 16.66%;
    }

    .column.w7 {
        width: 14.28%;
    }

    .column.w8 {
        width: 12.5%;
    }

    .column.w9 {
        width: 11.11%;
    }

    .column.w10 {
        width: 10%;
    }

    .column .spacer {
        padding: 0px 20px 0px 20px;
    }

    .column:first-child .spacer {
        padding: 0px 20px 0px 0px;
    }

    .column:last-child .spacer {
        padding: 0px 0px 0px 20px;
    }

/*************************************************************/
/* CARD                                                      */
/*************************************************************/

.card {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-top: 30px;
    display: inline-block;
    min-width: 300px;
}

    .card.transparent {
        background: none;
        box-shadow: none;
        border: none;
    }

    .card .title {
        padding: 0px;
        margin: 30px 0px 30px 2%;
        width: 100%;
        display: flex;
        color: #002B44;
    }

    .card.expandable .title {
        cursor: pointer;
        color: #00B3E8;
    }

    .card .title .imageContainer .icon {
        padding: 0px;
        height: 40px;
        width: 32px;
        stroke-width: 3px;
        vertical-align: middle;
    }

    .card .title .textContainer {
        margin: 0px 0px 0px 15px;
        width: 100%;
    }

    .card.expandable .title .textContainer {
        margin: 0px;
        padding: 0px 10px 0px 0px;
    }

    .card .title .textContainer .titleText {
        width: 100%;
        font-size: 32px;
        font-weight: 600;
    }

    .card .title .textContainer .subText {
        width: 100%;
        margin: 15px 0px 0px 0px;
        font-size: 20px;
        font-weight: 400;
        color: #959596;
    }

    .card .container {
        padding: 10px 5% 30px 5%;
    }

        .card .container p {
            font-weight: 600;
            font-size: 24px;
            line-height: 32px;
            letter-spacing: -0.02em;
            color: #5A5B5D;
        }


/*************************************************************/
/* TOGGLE CONTAINER                                          */
/*************************************************************/

.toggleContainer {
    display: inline-block;
    width: 100%;
}

    .toggleContainer .toggle {
        margin: 20px 0px 0px 0px;
        color: #00B3E8;
        cursor: pointer;
    }

/*************************************************************/
/* IMAGE TILE                                                */
/*************************************************************/

.tileContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}


.imageTile {
    width: 315px;
    height: 60px;
    background: #fff;
    align-self: auto;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--color-grey);
    margin: 0px 10px 10px 0px;
    padding: 5px;
    overflow: hidden;
}

    .imageTile:hover {
        border: 2px solid #00B3E8;
        color: #00B3E8;
        width: 312px;
        height: 58px;
        cursor: pointer;
    }

    .imageTile .image {
        width: 60px;
        height: 60px;
        overflow: hidden;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        border: 0px solid none;
        float: left;
    }

    .imageTile .caption {
        display: flex;
        max-width: 240px;
        height: inherit;
        float: left;
        overflow: hidden;
        margin: 0px 0px 0px 10px;
    }

        .imageTile .caption span {
            margin: auto;
            text-align: left;
        }


.imageTileCircle {
    width: 135px;
    height: 150px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 10px;
    border: 2px solid transparent;
}

    .imageTileCircle:hover {
        border: 2px solid #00B3E8;
        cursor: pointer;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .imageTileCircle .image {
        width: 100px;
        height: 100px;
        overflow: hidden;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        border: 0px solid none;
        margin: 0 auto;
        -webkit-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.25);
        box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.25);
    }

    .imageTileCircle .caption {
        margin: 10px 0px 0px 0px;
        text-align: center;
        height: 40px;
        overflow: hidden;
    }


/*************************************************************/
/* BUTTON TILE                                               */
/*************************************************************/

.buttonTile {
    display: flex;
    flex-direction: column;
    border: 2px solid #eee;
    border-radius: 4px;
    box-shadow: 2px 2px 4px 1px rgb(0 0 0 / 5%);
    margin: 20px;
    overflow: hidden;
    background: #fff;
}

    .buttonTile:hover {
        border: 2px solid #00B3E8;
    }


    .buttonTile .header {
        all: initial;
        width: 100%;
        text-align: right;
    }

        .buttonTile .header .icon {
            padding: 5px 0px 5px 0px;
            cursor: pointer;
        }

    .buttonTile .content {
        height: 100%;
        width: 100%;
        padding: 0px;
        margin: 0px;
        overflow-x: hidden;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }


        .buttonTile .content::-webkit-scrollbar {
            display: none;
        }


    .buttonTile .footer {
        all: initial;
        margin-top: auto;
    }

        .buttonTile .footer .btn {
            margin: 0px;
            padding: 0px;
            width: 100%;
            -webkit-border-radius: unset;
            -moz-border-radius: unset;
            border-radius: unset;
        }


    .buttonTile .content .sample {
        padding: 5px;
    }


/*************************************************************/
/* CAROUSEL                                                  */
/*************************************************************/


.carousel {
    width: 250px;
    height: 200px;
    display: block;
}

    .carousel .sample {
        width: 200px;
        height: 200px;
        padding-top: 63px;
        text-align: center;
        font-size: 72px;
    }

    .carousel .window {
        width: 200px;
        height: inherit;
        float: left;
        overflow: hidden;
        display: inline;
    }

    .carousel .item-container {
        width: 2000px;
        height: inherit;
    }

    .carousel .carousel-item {
        float: left;
        overflow: hidden;
    }

    .carousel .nav {
        width: 25px;
        height: inherit;
        float: left;
        cursor: pointer;
        position: relative;
    }

        .carousel .nav .icon {
            position: absolute;
            top: 50%;
        }

/*************************************************************/
/* Page                                                      */
/*************************************************************/
.page {
    background: #fff;
    padding: 0px 15% 50px 15%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 4px 1px rgb(0 0 0 / 5%);
    box-shadow: 2px 2px 4px 1px rgb(0 0 0 / 5%);
}

    .page > h1,
    .page > h2,
    .page > h3,
    .page > h4,
    .page > h5,
    .page > h6 {
        text-align: center;
    }

    .page .pageContent {
        padding: 40px 0px 0px 0px;
        width: 100%;
    }



/*************************************************************/
/* Expandable Tab                                            */
/*************************************************************/
.expandableTab {
}

    .expandableTab .backsplash {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        opacity: 0.2;
        cursor: pointer;
    }

    .expandableTab .component {
        left: 10%;
        right: 10%;
        display: block;
        position: absolute;
        z-index: 1000;
    }

    .expandableTab .tab {
        color: #fff;
        background: var(--color-blue);
        font-weight: 100;
        padding: 10px;
        display: inline-block;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        cursor: pointer;
    }

    .expandableTab .content {
        display: flex;
        background: #fff;
        -webkit-box-shadow: 2px 2px 2px 0px rgb(0 0 0 / 5%);
        box-shadow: 2px 2px 2px 0px rgb(0 0 0 / 5%);
    }

        .expandableTab .content .panel {
            padding: 10px;
            border-left: 2px solid var(--color-blue);
            border-right: 2px solid var(--color-blue);
            border-bottom: 2px solid var(--color-blue);
            width: 100%;
            height: 100%;
        }


        .expandableTab .content.hidden {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.25s ease-out;
        }

        .expandableTab .content.visible {
            overflow-x: hidden;
            overflow-y: auto;
            max-height: 50vh;
            transition: max-height 0.25s ease-in;
        }



.markdown-editor .flex {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0px 30px 0px;
    gap: 20px;
}

.markdown-editor .video {
    display: inline-block;
    width: 400px;
    height: 225px;
}


/*************************************************************/
/* MEDIA QUERIES                                             */
/*************************************************************/

@media (max-width: 1024px) {
    .page {
        padding: 0px 0% 10px 0%;
    }

    .expandableTab .component {
        position: fixed;
        top: 100px;
        left: 0%;
        right: 0px;
        z-index: 1000;
        display: block;
        background: unset;
    }
}

@media (max-width: 640px) {

    .column {
        width: 100%;
    }

        .column.w1 {
            width: 100%;
        }

        .column.w2 {
            width: 100%;
        }

        .column.w3 {
            width: 100%;
        }

        .column.w4 {
            width: 100%;
        }

        .column.w5 {
            width: 100%;
        }

        .column.w6 {
            width: 100%;
        }

        .column.w7 {
            width: 100%;
        }

        .column.w8 {
            width: 100%;
        }

        .column.w9 {
            width: 100%;
        }

        .column.w10 {
            width: 100%;
        }

        .column .spacer {
            padding: 0px;
        }

        .column:first-child .spacer {
            padding: 0px;
        }

        .column:last-child .spacer {
            padding: 0px;
        }

    .card .container {
        padding: 15px;
    }

    .page {
        padding: 0px 10px 10px 10px;
    }
}


@media (max-width: 320px) {
    table th,
    table td {
        padding: unset;
        text-align: center;
    }
}
