/* Modal Protection*/

.window-modal-gdpr {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 79, 139, 0.7);
    z-index: 99999999;
    padding: 10vh 10%;
    transition:all 1s;
  
  }
  
  .window-modal-gdpr.on {
    display: flex;
    align-items: center; 
    justify-content: center; 
    transition:all 1s;
  }
  
  .window-modal-gdpr .btn-close {
    cursor: pointer; 
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 20px;
    background: url(../../../images/close-modal.svg) center no-repeat; 
  }
  
  .box-modal-gdpr {
    background-color: #fff;
    border-radius: 2px;
    position: relative;
    padding: 20px; 
    padding-top: 80px;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 5px 13px 0 rgba(147, 152, 160, 0.1);
  }
  
  .box-modal-gdpr .error-text {
    position: initial;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .box-modal-gdpr .tick-checkbox-container .tick-checkbox {
    min-width: 16px; 
  }
  
  @media(max-width: 990px) {
    .window-modal-gdpr .box-modal-gdpr {
      height: initial; 
      padding-top: 90px; 
  
    }
  }