<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">[class^=lcc-] {
    box-sizing: border-box!important;
    color: #111;
    font-size: 16px;
    line-height: 20px
}

[class^=lcc-]:first-child {
    margin-top: 0
}

[class^=lcc-]:last-child {
    margin-bottom: 0
}

[class^=lcc-][inert] {
    cursor: default;
    pointer-events: none
}

[class^=lcc-][inert],[class^=lcc-][inert] * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.lcc-text {
    font-size: 14px;
    margin: 0 0 15px;
    text-align: justify;
    font-weight: 500;
}

.lcc-button {
    background: none;
    background-color: rgb(18, 120, 74) !important;
    border: 1px solid #111;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    margin: 1px 0;
    outline: none;
    padding: 6px 15px;
    transition: color .2s ease,background-color .2s ease,border-color .2s ease
}

.lcc-button:focus,.lcc-button:hover {
    background: #777;
    border-color: #777
}

.lcc-button.lcc-button--revoke {
    background: #111 !important;
    border-color: #111;
    color: #fff;    
    text-decoration: none
}

.lcc-button.lcc-button--moreoptions {
    background: #fff !important;
    border-color: rgb(18, 120, 74);
    color: rgb(18, 120, 74);    
    text-decoration: none
}

.lcc-button.lcc-button--link {
    background: transparent;
    border-color: transparent;
    color: inherit;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline
}

.lcc-button.lcc-button--link:focus,.lcc-button.lcc-button--link:hover {
    background: transparent;
    border-color: transparent;
    text-decoration: none
}

.lcc-button.lcc-button--link+.lcc-button.lcc-button--link {
    margin-top: 0
}

.lcc-label {
    align-items: baseline;
    display: flex;
    margin-bottom: 5px
}

.lcc-label[for] {
    cursor: pointer
}

.lcc-label&gt;* {
    margin-right: 10px
}

input[id^=lcc-]:disabled {
    color: #777;
    cursor: default;
    opacity: .55
}

input[id^=lcc-]:disabled+span {
    cursor: default;
    opacity: .6
}

.lcc-backdrop {
    background: #a3a1a15e;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .2s ease-in-out;
    z-index: 10000
}

.lcc-modal {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    left: 50%;
    max-height: 90%;
    max-width: 90%;
    overflow: auto;
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 900px;
    z-index: 10001;
    border: 2px solid #111;
}

.lcc-modal .lcc-modal__close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.25;
    position: absolute;
    right: 0;
    top: 0;
    transition: color .2s ease;
    width: 30px
}

.lcc-modal .lcc-modal__close:focus,.lcc-modal .lcc-modal__close:hover {
    color: #777
}

.lcc-modal .lcc-modal__title {
    font-size: 24px;    
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.lcc-modal .lcc-modal__section {
    margin-bottom: 20px;
}

.lcc-modal .lcc-modal__actions {
    margin-top: 30px;
    text-align: center;
}

.lcc-modal .lcc-modal__actions&gt;* {
    display: inline-block;
    margin-top: 8px;
}

.lcc-modal.lcc-modal--settings {
    z-index: 10002;
}

.lcc-u-sr-only {
    clip: rect(0,0,0,0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.lcc-u-text-center {
    text-align: center!important;
}
.checkbox-div-container{
    margin-top: 5px;
    display: flex;
    justify-content: center;
}
.checkbox-div{
    padding: 5px;
    /* border: 1px dotted #333; */
    width: 90%;
    margin-bottom: 5px;
}
.checkbox-div span{
    font-size: 12px;
}

.back-btn{
    color:rgb(18, 120, 74);
    border: none;
    font-size: 13px;
    font-weight: 600;
}
.back_btn_x{
    position: absolute;
    top: 10px;
    left: 12px;
    background: none;
}
/* slider round switch */
.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;

  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: rgb(18, 120, 74);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px rgb(18, 120, 74);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .cookie-wrap{
    display: flex;
    min-height: 500px;
}
.cookie-wrap-left-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-wrap-left {
    width: 40%;
    padding: 45px;
    box-shadow: 0 0 30px 0 rgba(35,35,35,.1);
}
.cookie-wrap-left-logo{
    margin-bottom: 20px;
    text-align: center;
}
.cookie-wrap-left-logo img{
    margin: auto;
    width: 250px;
}
.cookie-wrap-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
    padding: 30px;
    background: #f1f1f1;
}
button.cookie_tablink {
    padding: 10px;
    border: none;
    border-radius: 5px;
}
button.cookie_tablink.cookie_tab_active {
    background: none;
    border: 1px solid #b1afafb8;
}
.cookie_content {
    margin-top: 10px;
    margin-bottom: 10px;
}
.cookie_ac_btn{
    background: #127749;
    color: #fff;
    border: 1px solid #127749;
    padding: 9px 22px;
    border-radius: 30px;
}
.cookie_accept_btns {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    border-top: 1px solid gray;
    padding-top: 20px;
}

/*     collapsible item 3rd party cookie table start  */
.collapsible-cookie {
    color: black;
    cursor: pointer;
    padding: 18px 18px 18px 5px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    background:none;
  }
  
  
  .collapsible-cookie:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .collapsible-cookie.active:after {
    content: "\2212";
  }
  
  .content-cookie {
    padding: 0 ;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  
  }
     /* collapsible item 3rd party cookie table end */
     .third_tb_h{
        background:black;
        color:white;
        padding: 5px;
        font-size: 14px;
      }
      .third_tb_d {
        border: 1px solid #dddddd;
        text-align: left;
        padding: 8px;
        font-size: 14px;
      }



@media only screen and (max-width: 629px) {
    .cookie-wrap { 
        flex-direction: column;
    }
    .cookie-wrap-left-logo img{ 
        width: 200px;
    }
    .cookie-wrap-right {
        width: 100%; 
        margin-left: 0px;
    }
    .cookie-wrap-left {
        width: 100%;
    }
    .cookie_ac_btn { 
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 12px;
    }
}</pre></body></html>