.ServicesView{margin:10px 40px;min-height:100%}.ServicesView .tile-list *.tile{margin:30px;background:#fafafa;box-shadow:0px 6px 4px -5px #d3d3d3;width:270px}.ServicesView .domain-name{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;padding:0px 10px;font-weight:400;font-size:.8em}.ServicesView .icon img{width:200px;height:auto;margin:40px 0px;margin-bottom:10px}.ServicesView .orgSelector{display:flex;flex-direction:column;margin:0px auto 80px auto;width:80%}.ServicesView .orgSelector select{font-size:1.3em;background:transparent;color:#000;flex-grow:1;padding:15px;max-width:100%;border:.5px solid #72a2d4}.ServicesView .orgSelector option{color:#000}.ServicesView .orgSelector label{margin-bottom:15px;text-align:left;font-size:1.2em}.ServicesView .view-apps{display:flex;flex-direction:column;margin:0px auto 80px auto;width:80%}.ServicesView .row{display:flex;flex-direction:row;flex-wrap:nowrap;max-width:100%;align-items:center;justify-content:start}.ServicesView .toggleInstancesButton{width:50px;height:56px}.ServicesView .toggleInstancesButton:focus{outline:gray auto 1px}.ServicesView .beakerBtnOff{color:gray}@media screen and (max-width: 600px){.ServicesView .orgSelector,.ServicesView .view-apps{width:100%}.ServicesView .orgSelector select{max-width:85%}}.ServicesView .beakerBtn{height:auto;margin:auto;width:52px;font-size:1.25em}
.OpenApplicationButton{padding:0px}.OpenApplicationButton .has-link{padding-bottom:15px}.OpenApplicationButton small.launch-tip{font-size:.8em;text-align:left;height:20px}.OpenApplicationButton button{border:2px solid #fff;width:100%;min-height:50px;box-shadow:0px 1px 3px 0px #d3d3d3;font-size:1em;font-weight:bold;color:#fff;background:#36f}.OpenApplicationButton button:hover{color:#fff;background:#000acc;transition:color .2s linear,background-color .2s linear}.OpenApplicationButton button i{margin-right:7px;margin-left:-15px;height:15px}.OpenApplicationButton button:disabled{color:#888}.OpenApplicationButton .notConnected{cursor:not-allowed}.OpenApplicationButton .launchIcon>svg{width:8px;justify-content:center;padding-right:5px}.OpenApplicationButton .spinner>svg{width:13px}.OpenApplicationButton #launchApplicationForm{width:100%;padding:0px}
.TileList{display:inline-flex;flex-wrap:wrap;margin-left:auto;margin-right:auto;width:100%;justify-content:center}.TileList>*{margin:10px}
.Tile{border:2.5px solid #72a2d4;text-align:center;transition:color .2s linear,background-color .2s linear;display:flex;flex-direction:column;border-radius:4px;width:270px}.Tile p{word-break:break-all;flex-grow:1;padding:0px 10px}.Tile .icon{display:block}.Tile .icon img{max-width:100%;max-height:100%}.Tile:hover{background:#e5f3ff;transition:color .2s linear,background-color .2s linear}.Tile.selected{border:2.5px solid #36f}.Tile.notConnected{opacity:.5}.Tile .btnIcon{margin-right:0px;align-self:flex-end;padding:5px}.Tile .btnIcon svg{padding:0px;width:16px}@media screen and (max-width: 600px){.Tile{max-width:270px;width:auto}}
.navbar {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-top: 2px solid #215e89;
    box-shadow: 0 1px 5px -2px #888;
    background: #f1f1f1;
    z-index: 1000;
}

    .navbar > img {
        max-height: 20px;
        padding-left: 20px;
    }

.dropbtn {
    color: #3366FF;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

.dropbtn svg {
    padding: 16px;
}

.dropbtn:hover, .dropbtn:focus {
    color: #000ACC;
    transition: color 0.2s linear, background-color 0.2s linear;
}

.dropdown {
    float: right;
    position: relative;
    display: inline-block;
}

    .dropdown a:hover {
        background-color: #ddd;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.2);
    right: 2px;
    z-index: 1;
    top: 50px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.show {
    display: block;
}

