
* {
    -webkit-overflow-scrolling: touch;
  }
.swcookie-banner {
    border: none;
    background: rgb(1, 31, 64);
    color: #fff;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    text-align: center;
    padding: 10px 10px 20px;
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    /* transition: visibility 0s, opacity 0.5s linear; */
}

.swcookie-banner.in {
   visibility: visible;
   opacity: 1;
}
.swcookie-banner .swcookie-banner--confirmation span {
  cursor: pointer;
  padding: 10px;
  display: inline-block;
  background-color: #95c11f;
  margin: 0 10px;
  min-width: 190px;
}
.sw-popup {
  visibility: hidden;
  opacity: 0;
  z-index: 99999999;
  /* -webkit-transition: visibility 0s, opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: visibility 0s, opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: visibility 0s, opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: visibility 0s, opacity 0.1s cubic-bezier(0, 0, 0.58, 1); */
}
.sw-popup.in {
  visibility: visible;
  opacity: 1;
}
.sw-popup .overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 9999999;
  opacity: 0.8;
}

/* .sw-popup.hidden {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: opacity 0.6s cubic-bezier(0, 0, 0.58, 1);
} */
.sw-popup--content {
    background-color: #fff;
    width: 75%;
    max-width: 600px;
    box-shadow: 0 2rem 4rem rgba(#000, .2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    opacity: 1;
    z-index: 99999999;
}

.sw-popup--header {
    background-color:rgb(1, 31, 64);
    padding: 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.sw-popup--header .title {
    margin: 0;
}

.sw-popup--header .close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

.sw-popup--body {
    padding: 20px;
    height: 400px;
    overflow-y: scroll;
}

.sw-popup--footer {
    background-color: rgb(1, 31, 64);
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* switch */
.sw-popup .switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
  }
    
  .sw-popup .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
    
  .sw-popup .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
    
  .sw-popup .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
    
  .sw-popup input:checked + .slider {
    background-color: #95c11f;
  }
  
  .sw-popup input:disabled + .slider {
    background-color: #bed485;
  }
  
  .sw-popup input:focus + .slider {
    box-shadow: 0 0 1px #95c11f;
  }
  
  .sw-popup input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(14px);
  }
    
  .sw-popup .slider.round {
    border-radius: 34px;
    height: 100%;
  }
  
  .sw-popup .slider.round:before {
    border-radius: 50%;
  }
  /* switch end */


  /* tab */
#swTabtab-nav {
    /* background: #333; */
    display: flex;
    justify-content: space-between;
  }
  #swTabtab-nav div.swtabnav {
    display: inline-block;
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* [CONTENTS] */
  /* #swTabtab-contents {
    padding: 15px;
  } */
  #swTabtab-contents div.tabcontainer {
    display: none;
  }
  #swTabtab-contents div.active {
    display: block;
  }
  #swTabtab-contents .tabcontainer p {
    font-size: 12px;
  }
  #swTabtab-contents .tabcontainer .description {
    margin: 1rem 0;
  }
  #swTabtab-nav span {
    display: block;
    margin: 5px auto;
    color: rgb(1, 31, 64);
    font-weight: 700;
  }
  #swTabtab-nav div .underline {
    height: 3px;
    background-color: transparent;
    width: 0%;
    transition: width 0.2s, background-color 0.5s;
    margin: 0 auto;
  }
 
  #swTabtab-nav div.active .underline {
    height: 3px;
    background-color: #95c11f;
    width: 100%;
    transition: width 0.2s, background-color 0.5s;
  }
  /* tab ends */

  /* accordion */
  .swaccordion {
    /* background-color: #eee; */
    color: #011f40;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s;
    background: none;
  }
  .swaccordion:before {
    content: '\002B';
    color: #011f40;
    font-weight: 700;
    /* float: right; */
    margin-right: 8px;
}
.swaccordion.active:before {
  content: "\2212";
}

  .swpanel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .swaccordion-input--container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* cookie information */

  .swcookie-information h5{
    font-size: 14px;
    margin: 15px 0 10px;
  }
  .swcookie-information--container {
    padding: 8px 8px 8px;
  }
  .swcookie-information--container .info {
    display: flex;
  }
  .swcookie-information--container .info label {
    font-size: 10px;
    flex-basis: 30%;
    text-transform: uppercase;
  }

  .swcookie-information--container .info span {
    font-size: 10px;
    flex-basis: 70%;
  }
  
  .sw__button {
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    background-color: #95c11f;
    margin: 0 10px;
    min-width: 190px;
  }

  
  /* Scrollbar */
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* #GDPRSettings.modal::-webkit-scrollbar {
    width: 0;
  } */
  /* Hide scrollbar for IE and Edge */
  /* #GDPRSettings.modal {
    -ms-overflow-style: none;
  } */
  
  .sw-popup .sw-popup--body::-webkit-scrollbar {
    width: 10px;
  }
   
  .sw-popup .sw-popup--body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3); 
    border-radius: 10px;
  }
   
  .sw-popup .sw-popup--body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.9);
  } 

  @media screen and (max-width: 768px) {
    .sw-popup .sw-popup--content {
      width: 95%;
    }
    .sw-popup .sw-popup--body {
      padding: 10px;
    }
    #swTabtab-nav div.swtabnav {
      font-size: 14px;
    }
  }
