  .section-mg-cookie-panel {
    background-color: #F0F0F0;
    position: fixed;
    z-index: 102;
    line-height: 18px;
    left: 0;
    right: 0;
  }
  
  .section-mg-cookie-panel .cookie-text {
    width: 100%;
    height: 100%;
  }

  .section-mg-cookie-panel .accept-cookie {
    right: 10px;
    position: absolute;
    top: 5px;
  }

  .section-mg-cookie-panel svg:not(:root) {
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
  }

  .section-mg-cookie-panel .accept-cookie a{
    text-align: center; 
    text-decoration: none; 
    
    font-size: 30px;
  }

  .cookie-panel {
  position: fixed;
  width: 100%;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  left: 0;
  right: 0;
}

.cookie-panel.top {
  top: 0;
}

.cookie-panel.bottom {
  bottom: 0;
}

.cookie-text {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

.cookie-checkbox-wrapper {
  margin: 15px 0 0 0;
}

.cookie-checkbox-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  color: #000;
}

.cookie-checkbox {
  margin-right: 8px;
}

.checkbox-text {
  display: inline;
}

.cookie-checkbox-label a {
  color: inherit;
  text-decoration: underline;
  margin: 0 3px;
}

.cookie-checkbox-label a:hover {
  text-decoration: none;
}

.privacy-modal{
    position: fixed;
    height: auto;
    width: auto;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
        overflow-y: auto;
           
}
.privacy-modal-content{
  background: white;
    color: black;
    max-width: 800px;
    padding: 20px;
    border-radius: 5px;
    margin: auto;
    height: auto;
    position: relative;
     box-shadow: 0px 20px 35px rgba(167, 167, 167, 0.25);
}
.privacy-modal-body{
      display: flex;
    flex-direction: column;
            gap: 5px;
}
.privacy-modal-header{
      border-bottom: 1px solid;
    padding-bottom: 10px;
}
.privacy-modal-header h3{
      font-weight: 700;
    font-size: 22px;
}