/* Styles go here */
th {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

th:first-child {
  border-left: 1px solid #dddddd;
}

.page{
    padding: 20px;
    margin: 20px;
    border: 1px solid salmon;
  }

  .transition{
      -webkit-transition: all .6s ease-in-out;
      -moz-transition: all .6s ease-in-out;
      -o-transition: all .6s ease-in-out;
      -ms-transition: all .6s ease-in-out;
      transition: all .6s ease-in-out;
  }
  .fontSize{
      font-size: 24px
  }
  .displayForm{
    display : flex;
  }

  .label-margin{
      margin-right: 10px
  }

  .my-view{
      width: 100%;
  }



  .spinner {
    position: fixed;
    padding: 0px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9998;
    background: #000;
    opacity: 0.6;
    transition: opacity 0.3s linear;
}

.spinnerListner {
    position: fixed;
    padding: 0px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9998;
    background: #000;
    opacity: 0.8;
    transition: opacity 0.3s linear;
}

.center {
    margin: auto;
    width: 100%;
}



.loading-text {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    color: #FFF;
    font-family: sans-serif;
    background: transparent;
    text-align: center;
    padding-top: 33%;
}

.spinner img {
    position: fixed;
    padding: 0px;
    /* height: 100%;
    width: 100%;
    top: 0;
    left: 0; */
    z-index: 10;
    background: #000;
    opacity: 0.6;
    transition: opacity 0.3s linear;
}

.spinnerListner>.listening-roller img {
    position: fixed;
    padding: 0px;
    /* height: 100%;
    width: 100%;
    top: 0;
    left: 0; */
    width: inherit;
    height: inherit;
    z-index: 10;
    background: #000;
    opacity: 0.9;
    transition: opacity 0.4s linear;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;
}

.visible {
    visibility: visible;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    left: 48%;
    top: 47%;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logout-button{    
    outline: 1px solid white;
    border: none;
    background: none;
    padding: 10px;
    color:white;   
    float: right;
    transition: background-color linear 0.4s;
}

.logout-button:hover{
    background-color: #000;
}

.ui-dialog-titlebar{
    background-color: #343a40 !important;
    color: white !important;
}