﻿

.message {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 99vw;
    position: absolute;
    font-family: Roboto, sans-serif;
    font-size: 5vh;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    background-color: #c93939;
    top: 17vh;
    display: none;
}

.spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.8) url('https://journeypx.blob.core.windows.net/platform-assets/studio-assets/screen-builder/spinner.gif') center no-repeat;
}



@media (min-width: 576px) {

    .facilityName {
        font-size: 20px;
    }

    .facilityNameDa {
        font-size: 45px;
    }

    .deviceActivator {
        font-size: 35px;
    }

    .optionText {
        font-size: 45px;
    }


    
}

@media (min-width: 768px) {

    .facilityName {
        font-size: 25px;
    }

    .facilityNameDa {
        font-size: 55px;
    }

    .deviceActivator {
        font-size: 45px;
    }

    .optionText {
        font-size: 55px;
    }
}

@media (min-width: 992px) {

    .facilityName {
        font-size: 30px;
    }

    .facilityNameDa {
        font-size: 65px;
    }

    .deviceActivator {
        font-size: 55px;
    }

    .optionText {
        font-size: 65px;
    }
}

@media (min-width: 1200px) {

    .facilityName {
        font-size: 35px;
    }

    .facilityNameDa {
        font-size: 85px;
    }
    .deviceActivator {
        font-size: 75px;
    }

    .optionText {
        font-size: 85px;
    }
    
}

.flex--row {
    display: flex;
    flex-direction: row;
}

.flex--column {
    display: flex;
    flex-direction: column;
}

.flex--nowrap {
    flex-wrap: nowrap;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 0px 0px;
    border: 1px solid #ccc;
    border-top: none;
}