/*** Loader ***/
#loader-container { text-align: center; width: 100%; position: absolute; top: 20%; left: 0; right: 0; z-index:1000;}
#loader-container.hide{ display:none;}
#loader{display:inline-block;position:relative;width:80px;height:80px;}
#loader div{position:absolute;top:33px;width:13px;height:13px;border-radius:50%;background:#293a4a;animation-timing-function:cubic-bezier(0,1,1,0)}
#loader div:nth-child(1){left:8px;animation:loader-1 .6s infinite}
#loader div:nth-child(2){left:8px;animation:loader-2 .6s infinite}
#loader div:nth-child(3){left:32px;animation:loader-2 .6s infinite}
#loader div:nth-child(4){left:56px;animation:loader-3 .6s infinite}
@keyframes loader-1{0%{transform:scale(0)}100%{transform:scale(1)}}
@keyframes loader-3{0%{transform:scale(1)}100%{transform:scale(0)}}
@keyframes loader-2{0%{transform:translate(0,0)}100%{transform:translate(24px,0)}}

/*** DPA Related Elements ***/

.warning_message {
    color: #c0392b;
}

.error_message {
    color:#c0392b;
}

.error_message::before {    
    content: '\26A0';
    font-weight: bold;
    font-size: 26px;
    float: left;    
}

#placefordpa {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.dpa_ol_alpha {
    list-style:lower-alpha;
  }
  
  .dpa_ol_ii {
    list-style:lower-roman;
  }
  
  .dpa_ul_dot {
    list-style:disc;
    margin-left:20px;
  }
  
  .dpa_ul_none{
    list-style: none;
    margin-left:15px;
  }
  
  #dpaholder {
    position: absolute;
    left: calc(50% - 90vw/2);
    top: calc(40% - 50vh/2);
    z-index: 300;
    font-size: 16px;
    width: 90vw;
    background: linear-gradient(#293a4a, #151d25);
    color: white;
    padding: 15px;
    border-radius: 7px;
  }
  .boldblue {
    color:#ff6c2c;
    font-weight:bold;
  }
  .agreement-disclaimer {
   text-align:center;  
  }
  
  .agreement-body {
    height: 300px;
    overflow: auto;
    margin-top: 20px;
    border: 1px solid lightgray;
    padding: 10px;
    background: white;
    color: rgba(56, 72, 89, 0.9);
    border-radius:4px;
  }
  
  #agreement {
    height:fit-content;
  }
  .agreement-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
  }
  
  .dpa-button {
    background-color: #ff6c2c;
    border: 0;
    color: #ffffff;
    height: 32px;
    line-height: 16px;
    outline-color: #ff6c2c;
    padding: 5px 20px;
    display: flex;
    border-radius: 2px;
    align-items: center;
    cursor:pointer;
    min-width: 150px;
    justify-content: center;
  }
  
  .dpa-button:hover{
    background:#EB5414;
  }
  
  .button-reject::before{
      content:'\2716';
      color:red;
      margin-right:10px;
  }
  
  .button-accept::before{
      content:'\2714';
      color:lightgreen;
      margin-right:10px;
  }
  
  .button-accept[disabled], .button-reject[disabled]{
    cursor:default;
    background:gray;
    color:lightgray;
  }
  
  .confirmaccess {
    display:flex;
  }
  
  .confirmaccess label{
    display:inline;
  }
  
  .dpafail {
    position: absolute;
    padding: 15px;
    background: rgba(0,0,0,.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .dpafail::before {
    content: '\26A0';
      color: yellow;
      display: block;
      margin: 0 auto;
      font-size: 30px;
      margin-top: -10px;
  }
  
  .dpa-sign { 
    line-height: 2.45;
    padding: 0 10px;
    min-width: 100px;
  }
  
  #dpanotverified{
    position: absolute;
      width: 190px;
      height: 45px;
      z-index: 100;
      cursor: pointer;
  }