﻿:root {
    /*--main-color: #005b51 ;*/
    --main-color: #2e4771;
    --second-color: #71bec9;
    --third-color: #6a2929;
}
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);

.st-actionContainer {
    z-index: 9999;
    position: fixed;
    display: inline-block;
}

.right-bottom {
    bottom: 5px;
    right: 10px;
    float: right !important;
}

.left-bottom {
    bottom: 2em;
    left: 2em;
    float: left !important;
}

div.st-actionContainer li {
    list-style: none;
}

.st-panel {
    /*width: auto;*/
    width: 350px;
    margin-bottom: 1%;
    background-color: #757575;
    color: white;
    /*border: 2px solid #eee;*/
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 5px;
    display: none;
    height: 450px;
    max-width: 100%;
}

.st-panel-disable {
    /*width: auto;*/
    width: 350px;
    margin-bottom: 1%;
    /*background-color: white;*/
    color: #fff;
    background-color: var(--main-color);
    /*border: 2px solid #eee;*/
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 5px;
    display: none;
    height: 360px;
}

.login-logo {
    display: none !important
}

div.st-panel {
    overflow-y: hidden;
    /*font-family: Roboto;*/
    font-size: 15px;
}

.st-panel-header {
    background-color: #2e4771;
    color: white;
    padding: 3px;
    min-height: 28px;
    border-bottom: 2px #000 solid;
}

.st-panel-header-disable {
    background-color: #6a2929;
    color: white;
    padding: 3px;
    min-height: 28px;
}

.st-panel-contents {
    padding: 15px;
}

.st-button-main {
    font-size: 24px;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    height: 100%;
    width: 30px;
    display: table-cell;
}

.st-button-lable {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    line-height: 27px;
    cursor: pointer;
    height: 100%;
    /*width: 30px;*/
    display: table-cell;
    vertical-align: middle;
}

.st-button-main > i {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
}

.st-btn-container {
    background: var(--main-color);
    padding: 0px 5px;
    display: table;
    width: 150px;
    height: 27px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.st-btn-container-disable {
    background: var(--main-color);
    padding: 0px 5px;
    display: table;
    width: 150px;
    height: 27px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.rotateForward {
    animation-name: rotateF;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateF {
    from {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

.rotateBackward {
    animation-name: rotateB;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
}

@keyframes rotateB {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

/*option grid in panel*/

.My-grid {
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-around;
    height: 94.5%;
}

.My-gridChild {
    flex: 0 0 33.33%;
    height: 50px;
    background-color: #999;
    text-align: center;
    text-decoration: none;
    color: white;
    line-height: 50px;
}

    .My-gridChild:hover {
        background-color: #eee;
        color: black;
    }

.My-grid-disable {
    width: 100%;
    display: table;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 93.5%;
}

.My-Cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

#iFrame {
    width: 100%;
    border: none;
}
