  :root {
    --popup-border-color: rgb(212, 212, 212);
  }
  
  .popup-container {
    width: 350px;
    height: 562px;
    position: fixed;
    background: white;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(69, 69, 69, 0.1);
  }
  @media (max-width:641px)  {
    .popup-container {
      width: 350px;
      height: 524px;
      position: fixed;
      background: white;
      z-index: 999;
      border-radius: 8px;
      box-shadow: 0px 4px 8px rgba(69, 69, 69, 0.1);
    } 

    .popup-image-content{
      width: 100%;
    }
    #popup-container{
      transform :none !important;
    }
  }
  
  .popup-container{
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .popup-content {
    height: 100%;
    overflow-y: auto;
  }
  
  
  @media (min-width:641px)  {
    .popup-container{
      width: 402px;
      left: 16px;
      top: 16px;
      transform: translateX(0%) translateY(0%);
  
    }
    
    .popup-container:nth-of-type(2){
      left: 448px;
      top: 16px;
    }
    
    .popup-container:nth-of-type(3){
      left: 16px;
      top: 632px;
    }
    
    .popup-container:nth-of-type(4){
      left: 448px;
      top: 632px;
    }
  }
  
  
  
  @media (min-width:641)  {
    .popup-container {
      width: 40px;
    }
  }
  
  
  @media (min-width:961px)  {
    .popup-container{
      left: 32px;
      top: 32px;
      transform: translateX(25%) translateY(25%);
      background-color: black;
    }
    
    .popup-container:nth-of-type(2){
      left: 478px;
      top: 32px;
    }
    
    .popup-container:nth-of-type(3){
      left: 924px;
      top: 32px;
    }
    
    .popup-container:nth-of-type(4){
      left: 1370px;
      top: 32px;
    }
  }
  
  
  .popup-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  #popupID2 .notice{
    clear: both;
    height: 490px;
    min-height: 335px;
    color: #313131;
    border-radius: 2px;
    font-weight: normal;
    overflow: hidden;
  }
  
  .popup-header {
    width: 100%;
    /* height: 32px; */
    padding: 8px;
    background-color: var(--popup-border-color);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #000;
  }

  .popup-body {
    /* height: 620px; */
    font-size: 16px;
    font-weight: bold;
    background-color: black;
    border : 1px solid var(--bdColor038) !important;
  }

  .popup-footer {
    width: 100%;
    padding: 6px;
    
    background-color: var(--popup-border-color);
    position: absolute;
    left: 0;
    color: #000;
  }

  .popup-footer input[type='checkbox'] {
    opacity: 1;
  }



  .popup-footer .popup-close {
    float: right;
    padding-top: 4px;
    margin-right: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
  }
  
  @media (max-width:640px) {
    .popup-footer {
      height: 36px;
      font-size: 16px;
    }
  
    .popup-footer input[type='checkbox'] {
      height: 21px;
      width: 21px;
    }
  
    .popup-footer .popup-close {
      font-size: 16px;
    }
  }