/*
Copyright 2019 by Swiss Federal Administration
All rights reserved.

This software is the confidential and proprietary information of the Swiss
Federal Administration. ("Confidential Information").  You shall not disclose
such Confidential Information and shall use it only in accordance with the
terms of the license agreement you entered into with the Swiss Federal
Administration.
*/

.mylabel{
  text-align: right;
  width: 36%;
  padding-right: 15px
}

.myinputfield{
  font-size:14px;
  color:#555;
  background-color:#fff;
  background-image:none;
  border:1px solid #ccc;
  border-radius:4px;
  box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}

/* centered modal dialog */
.invisible {
  visibility: hidden;
  display: none;
}

.centerdialog {
  position: fixed;

  /* center */
  left: 0;
  margin-left: auto;
  right: 0;
  margin-right: auto;
  top: 50%;
  margin-top: -150px;

  /* size */
  max-width: 550px;
  min-width: 320px;

  z-index: 1001;
  background: #f5f5f5;
  box-shadow:0 0 60px 0 rgba(0,0,0,.6);
  transition: all 1.3s;
}
.centerdialog-title {
  width: 100%;
  padding-left: 15px;
}
.centerdialog-closexbutton {
  right: 0px;
  top: 0px;
  position: absolute;
  font-family: 'Glyphicons Halflings'; /* in admin.css definiert */
  background-color: #DC0018;
  color: #fff
}
.centerdialog-content
{
  background-color: white;
  width: 100%;
  padding: 15px;
}
.centerdialog-button {
  text-align: right;
  background-color: white;
  width: 100%;
  padding: 15px;
}
.centerdialog-state {
  width: 100%;
  padding: 3px 15px 3px;
  border-top: solid 1px #f5f5f5;
}

.centerdialog-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(145, 145, 145, 0.5);
}
/* centered modal dialog */