@charset "UTF-8";

/* CSS Document */
.toz-button{
    display:block;
    height:70px;
    width:150px;
    background:url('https://s3-us-west-2.amazonaws.com/tozny/production/interface/javascript/login_button.png') no-repeat #fff;
    background-size:150px 70px;
    border-radius:5px;
    margin:0px auto;
}
.toz-button.toz-dark{
    background:url('https://s3-us-west-2.amazonaws.com/tozny/production/interface/javascript/login_button_white.png') no-repeat #000;
    background-size:150px 70px;
}
.toz-button.toz-clear-light{
    background:url('https://s3-us-west-2.amazonaws.com/tozny/production/interface/javascript/login_button_white.png') no-repeat;
    background-size:150px 70px;
}
.toz-button.toz-clear-dark{
    background:url('https://s3-us-west-2.amazonaws.com/tozny/production/interface/javascript/login_button.png') no-repeat;
    background-size:150px 70px;
}

.toz-modal-wrapper{
    display:none;
    height:100%;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
}

.toz-modal-overlay{
    position:fixed;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    background:#000;
    opacity:0.8;
    border-radius: 12px;
}

.toz-modal{
    position:relative;
    border-radius: 12px;
    margin:10% auto;
    padding:0px 0px 20px 0px;
    width:450px;
    height:350px;
    background:#fff;
}
.toz-modal.toz-stacked{
    width:90%;
    height:450px;
    background:#fff;
}
.toz-modal-content{
    width:100%;
    height:350px;
}
.toz-stacked .toz-modal-content{
   height:400px;
}
.toz-modal iframe {
    width:100%;
    height:100%;
    background-color: transparent;
}

.toz-dark .toz-modal{
    background:#000;
}
.toz-modal-close{
    position:absolute;
    top:10px;
    right:20px;
    z-index:9999;
}
.toz-modal-close a{
    color:#999;
    font-size:18px;
    font-weight:100;
    text-decoration:none;
    font-family: "HelveticaNeue-Light",
                "Helvetica Neue Light",
                "Helvetica Neue",
                "Helvetica, Arial",
                "Lucida Grande",
                sans-serif;
    font-weight:bold;
}
.toz-dark .toz-modal-close a{
    color:#999;
}

.toz-qr-box{
    height:350px;
    width:100%;
    position:relative;
    padding:10px 0px;
    border-radius: 12px;
}
.toz-qr-box.toz-stacked{
    height:450px;
}

.toz-qr-box iframe {
    width:100%;
    height:100%;
    background-color: transparent;
    display:block;
}

.toz-message{
    position:absolute;
    color:#fff;
    z-index:99;
    text-align:center;
    font-weight:300;
    font-size:18px;
    opacity:0.8;
    width:100%;
    top:5%;
    left:0px;
    font-family:"HelveticaNeue-Light",
                "Helvetica Neue Light",
                "Helvetica Neue",
                "Helvetica, Arial",
                "Lucida Grande",
                sans-serif;
}

.toz-show{
    display:block !important;
}