#acc-bottom{
  display: none;
  position: fixed;
  width: 100%;
  min-height: 45px;
  height: auto;
  left: 0;
  bottom: 0;
  background-color: #009fe3;
  background-color: white;
  z-index: 9999999;
}

#acc-bottom .acc-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 45px;
  height: auto;
  right: 0;
  left: auto;
}
#acc-bottom .acc-btn .triangle {
  background-color: white;
  width: 100%;
  min-height: 45px;
  height: auto;
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 0;
  padding: 6px 60px 6px 15px;
  color: #333;
  font-size: 12px;
  line-height: 16px;
  border-top: 1px solid rgba(0,0,0,0.3);
  box-sizing: border-box;
}
#acc-bottom .acc-btn .triangle span{
  display: inline-block;
  float: left;
  transition: 0.1s ease all;
  opacity: 1;
  padding-right: 204px;
}
#acc-bottom .acc-btn .triangle span a{
  color: #333;
  text-decoration: underline;
}
#acc-bottom .acc-btn .triangle span a:hover{
  color: #333;
  text-decoration: none;
}
#acc-bottom .acc-btn .triangle .btn-content{
  position: absolute;
  width: 204px;
  height: 45px;
  bottom: 0;
  right: 45px;
  padding-top: 11px;
  padding-bottom: 11px;
  box-sizing: border-box;
}
#acc-bottom .acc-btn .triangle .btn-content a{
  display: inline-block;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  line-height: 14px;
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 2px;
  margin-left: 15px;
  float: left;
  width: 84px;
  text-align: center;
  transition: 0.1s ease all;
  opacity: 1;
}

#acc-bottom .acc-btn .triangle .btn-content a:hover{
  text-decoration: none;
  background-color: #333;
  color: #fff;
}
#acc-bottom .acc-btn .triangle .btn-content a.no{
  background-color: transparent;
  color: #333;
  line-height: 14px;
  font-size: 12px;
  text-transform: none;
  padding: 4px 6px;
  border-radius: 0;
  width: 60px;
  text-decoration: underline;
}
#acc-bottom .acc-btn .triangle .btn-content a.no:hover{
  background-color: transparent;
  color: #333;
  text-decoration: none;
}
#acc-bottom .acc-btn .triangle .btn-content a:first-child{
  margin-left: 20px;
}
#acc-bottom .acc-btn .cookie {
  width: 22px;
  height: 22px;
  background-image: url("../design/cookie-icon-black.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: auto;
  bottom: 0;
  top: 0;
  right: 11px;
  margin: auto;
}


/*MODAL*/

/* The Modal (background) */
.modalx {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-contentx {
    background-color: #fefefe;
    margin: auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    top: 0;
    bottom: 0;
    position: absolute !important;
    height: auto;
    max-height: 80%;
    left: 0;
    right: 0;
    border-radius: 20px!important;
    overflow-y: auto;
}

.modal-contentx > a{
  color: #0077a7;
  text-decoration: underline;
  font-size: 0.8em;
}
.modal-contentx a{
  color: #0077a7;
  text-decoration: underline;
}
.modal-contentx > a{
  padding-bottom: 15px;
}
.modal-contentx a:hover,
.modal-contentx a:focus{
  color: #0077a7;
  text-decoration: none;
}

/* The Close Button */
.modal-contentx .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background-image: url("../design/close-blue.png");
    background-repeat: no-repeat;
    background-size: cover;
    top: 15px;
    right: 15px;
}
.modal-contentx .close:before,
.modal-contentx .close:after{
    display: none;
}

.modal-contentx .close:hover,
.modal-contentx .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*dropdown*/

.modrop{
  list-style-type: none;
  padding-left: 0
}
.modrop > li{
  border-bottom: 1px solid #cccccc;
  position: relative;
  padding: 5px 0;
  font-weight: bold;
  font-size: 14px;
}
.modrop > li:after{
  content: '';
  position: absolute;
  top: 5px;
  right: 0;
  width: 23px;
  height: 23px;
  background-color: transparent;
  cursor: pointer;
  background-image: url("../design/modrop-down.png");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
}
.modrop li ul{
  height: 0;
  opacity: 0;
  list-style-type: none;
  padding-left: 0;
  overflow: hidden;
  transition: 0.3s ease all;
}
.modrop li ul li{
  padding-left: 10px;
  padding-right: 10px;
}
.modrop li.active{
  color: #009fe3;
}
.modrop li.active ul{
  height: auto;
  opacity: 1;
  padding-bottom: 10px;
  padding-top: 15px;
}
.modrop li.active:before{
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #cccccc;
  top: 33px;
  left: 0;
}
.modrop li.active:after{
  background-image: url("../design/modrop-up.png");
}
.modrop .optout{
  float: right;
}

#acc {
  position: fixed;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  -webkit-font-smoothing: antialiased;
  z-index: 999999;
}
#acc.open #acc-overlay {
  opacity: 1;
  pointer-events: auto;
}
#acc.open #acc-block {
  transform: translate3d(100%, 0px, 0px);
  max-width: 480px;
}
#acc.saved #acc-block {
  transform: translate3d(0px, 0px, 0px);
  max-width: 435px;
}
#acc.open #acc-block #acc-aside {
  right: 45px;
}
#acc.saved #acc-block #acc-aside {
  right: 0;
}
#acc.open #acc-block #acc-btn{
  width: 45px;
}
#acc.saved #acc-block #acc-btn{
  width: 0;
}
#acc.open #acc-block #acc-btn #triangle {
    width: 45px;
    padding: 11px 11px 11px 11px;
    overflow: hidden;
}
#acc.saved #acc-block #acc-btn #triangle {
    width: 0;
    padding: 0;
    overflow: hidden;
}
#acc.open #acc-block #acc-btn #triangle span,
#acc.open #acc-block #acc-btn #triangle a,
#acc.saved #acc-block #acc-btn #triangle span,
#acc.saved #acc-block #acc-btn #triangle a{
    opacity: 0;
}
#acc h1{
  color: #333333;
}
#acc h2{
  border: none;
  margin: 0;
  padding: 0;
  color: #333333;
}
#acc h3,
#acc h4 {
  font-weight: 700;
  color: #333333;
  font-size: 1em;
  border: none;
  margin: 0;
  padding: 0;
}
#acc h4 {
  font-size: 0.9em;
}
#acc p {
  margin: 1em 0;
  font-weight: 400;
  color: #333333;
  font-size: 0.8em;
}
#acc p a {
  color: #0077a7;
  text-decoration: underline;
}
#acc p a:hover {
  color: #0077a7;
  text-decoration: none;
}
#acc p.acc-intro {
  font-size: 1em;
}
#acc p.last-p {
  margin-bottom: 57px;
}
#acc .acc-button,
.validated {
  background-color: white;
  text-align: center;
  text-transform: uppercase;
  color: #0077a7;
  padding: 7px ;
  border-radius: 10px;
  border: 1px solid #0077a7;
  line-height: 16px;
  text-decoration: none!important;
}
#acc .acc-button:hover,
.validated:hover{
  background-color: #0077a7;
  color: #fff!important;
  text-decoration: none!important;
  cursor: pointer;
}
.validated {
  padding: 10px 25px!important;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 15px;
}
#acc .acc-close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 16px;
}
#acc .acc-close:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  top: 0;
  left: 0;
  background-image: url("../design/close-blue.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#acc #acc-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform, opacity;
  transform: translate3d(0px, 0%, 0px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all ;
  -ms-transition: 0.3s ease all ;
  -o-transition: 0.3s ease all ;
  transition: 0.3s ease all ;
}
#acc #acc-popup {
  width: 270px;
  height: 220px;
  border-radius: 10px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 360px;
  margin: auto;
  background-color: white;
  z-index: 9;
  text-align: center;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  transform: scale(0);
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all ;
  -ms-transition: 0.3s ease all ;
  -o-transition: 0.3s ease all ;
  transition: 0.3s ease all ;
}
#acc #acc-popup.show {
  transform: scale(1);
}
#acc #acc-popup .acc-close:after {
  background-image: url("../design/close-blue.png");
}
#acc #acc-popup .acc-title {
  color: #0077a7;
  margin-top: 25px;
  margin-bottom: 15px;
}
#acc #acc-popup p {
  color: #333;
  font-size: 14px;
}
#acc #acc-popup #popup-btn-container {
  height: 47px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
#acc #acc-popup #popup-btn-container .acc-button {
  width: 111px;
  display: inline-block;
}
#acc #acc-popup #popup-btn-container .acc-button:first-child {
  margin-right: 10px;
}
#acc #acc-block {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  z-index: 2;
  transition: transform 0.6s, -webkit-transform 0.6s;
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform;
  right: 100%;
  left: auto;
  transform: translate3d(45px, 0px, 0px);
}
#acc #acc-block #acc-btn {
  position: absolute;
  bottom: 0;
  width: 45px;
  height: 45px;
  right: 0;
  left: auto;
  fill: #0077a7;
  overflow: hidden;
}
#acc #acc-block #acc-btn #triangle {
  background-color: #009fe3;
  width: 45px;
  height: 45px;
  bottom: 0;
  left: 0;
  position: absolute;
  border-top-right-radius: 10px;
  padding: 11px 15px 11px 15px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}
#acc #acc-block #acc-btn #triangle span{
  display: inline-block;
  float: left;
  transition: 0.1s ease all;
  opacity: 1;
}
#acc #acc-block #acc-btn #triangle a{
  display: inline-block;
  background-color: rgba(255,255,255,0.5);
  color: #009fe3;
  line-height: 14px;
  font-size: 14px;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 2px;
  margin-left: 15px;
  float: left;
  width: 44px;
  text-align: center;
  transition: 0.1s ease all;
  opacity: 1;
}
#acc #acc-block #acc-btn #triangle a:hover{
  text-decoration: none;
  background-color: white;
  color: #009fe3;
}
#acc #acc-block #acc-btn #triangle a:first-child{
  margin-left: 20px;
}
#acc #acc-block #acc-btn #cookie {
  width: 22px;
  height: 22px;
  background-image: url("../design/cookie-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: auto;
  bottom: 0;
  top: 0;
  right: 11px;
  margin: auto;
}
#acc #acc-block #acc-aside {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  box-sizing: border-box;
  left: 0;
  right: 45px;
  color: #333333;
  fill: #ffffff;
  background: #ffffff;
}
#acc #acc-block #acc-aside a{
 color: #0077a7;
 text-decoration: underline;
 font-size: 14px;
}
#acc #acc-block #acc-aside a:hover,
#acc #acc-block #acc-aside a:focus{
 color: #0077a7;
 text-decoration: none;
}
#acc #acc-block #acc-aside .acc-title {
  line-height: 1.6em;
  font-weight: 700;
  padding-right: 32px;
  color: #333333;
  font-size: 1.2em;
}
#acc #acc-block #acc-aside p {
  color: #333333;
}
#acc #acc-block #acc-aside p a {
  color: #333333;
}
#acc #acc-block #acc-aside hr {
  height: 1px;
  border: 0;
  margin: 24px 0;
  opacity: 0.5;
  background: #cccccc;
}
#acc #acc-block #acc-aside .acc-alert {
  padding: 15px 15px 1px 15px;
  background-color: rgba(0, 0, 0, 0.1);
}
#acc #acc-block #acc-aside .acc-alert h4 {
  font-size: 0.8em;
  font-weight: 700;
  color: #0077a7;
  margin-bottom: 0;
}
#acc #acc-block #acc-aside .acc-alert p {
  font-size: 0.8em;
  font-weight: 400;
  color: #0077a7;
  margin: 1em 0;
}
#acc #acc-block #acc-aside .acc-alert a {
  color: #0077a7;
  text-decoration: underline;
}
#acc #acc-block #acc-aside .acc-alert a:hover {
  color: #0077a7;
  text-decoration: none;
}
#acc #acc-block #acc-aside .checkbox-container {
  position: relative;
}
#acc #acc-block #acc-aside .checkbox-container h3,
#acc #acc-block #acc-aside .checkbox-container h4 {
  padding-right: 86px;
}
#acc #acc-block #acc-aside .checkbox-container .acc-checkbox {
  position: absolute;
  top: 0;
  right: 0;
}
#acc #acc-block #acc-aside .checkbox-container .acc-checkbox .switchery-small {
  width: 45px;
}
#acc #acc-block #acc-aside .checkbox-container .acc-checkbox .switchery-small > small {
  height: 20px;
  width: 20px;
}
#acc #acc-block #acc-aside .checkbox-container .acc-checkbox .switchery-small > small:after {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid white;
  box-sizing: border-box;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle {
  position: absolute;
  top: -2px;
  right: 0;
  margin: 0;
  width: 70px;
  height: 26px;
  background: #bfbfbf;
  border-radius: 50px;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label {
  display: block;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label input[type=checkbox] {
  margin: 0;
  visibility: hidden;
  display: inline;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label .on {
  color: #008d7d;
  position: absolute;
  left: 10px;
  z-index: 2;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label .off {
  color: #b60806;
  position: absolute;
  right: 10px;
  z-index: 2;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label .toggle {
  display: block;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 4px;
  z-index: 3;
  background: #0077a7;
  border-radius: 50px;
  transition: all 0.4s ease;
}
#acc #acc-block #acc-aside .checkbox-container .checkbox-toggle label .toggle.active {
  left: 36px;
}
#acc #acc-block #submit-content {
  position: fixed;
  width: 481px;
  height: 45px;
  /*background-color: #009fe3;*/
  left: -45px;
  bottom: 0;
  z-index: 9;
}
#acc #acc-block #submit-content .acc-button {
  position: absolute;
  width: 50%;
  left: 30%;
  bottom: 6px;
  text-decoration: none;
}
#acc #acc-block #submit-content .acc-button:hover {
  border: 1px solid white;
  color: white;
  text-decoration: none;
}
#acc #acc-block #submit-content.acc-ios {
  position: fixed;
}
/*MEDIAQUERIES*/
@media screen and (max-width: 991px) {
  #acc #acc-popup {
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px){
  .modal-contentx {
      max-height: 70%;
    }
}
@media screen and (max-width: 767px){
  .modal-contentx {
      max-height: 80%;
      width: 80%;
      padding-left: 15px;
      padding-right: 15px;
    }
  .modal-contentx h3{
    padding-right: 25px!important;
  }
}
@media screen and (min-width: 713px) {
  #acc-bottom .acc-btn .triangle{
    display: flex;
  }
  #acc-bottom .acc-btn .triangle span{
    margin: auto;
  }
}

@media screen and (max-width: 713px) {
  #acc-bottom .acc-btn .triangle {
    padding: 6px 15px 6px 15px;
  }
  #acc-bottom .acc-btn .triangle span {
    display: block;
    padding-right: 0;
    position: relative;
    float: left;
    text-align: center;
  }
  #acc-bottom .acc-btn .triangle .btn-content {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    text-align: center;
    display: block;
    float: left;
    padding-bottom: 0;
    height: 38px;
  }
  #acc-bottom .acc-btn .triangle .btn-content a{
    float: none;
  }
  #acc #acc-block #submit-content {
    width: 414px;
    left: -22px;
  }
  #acc #acc-block #submit-content.acc-ios{
    width: 100%;
    left: 0;
  }
  #acc #acc-block #submit-content .acc-button{
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 413px) {
  #acc #acc-block #submit-content {
    width: 375px
  }
  .modal-contentx {
      width: 90%;
      padding-left: 10px;
      padding-right: 10px;
    }
}
@media screen and (max-width: 374px) {
  #acc #acc-block #submit-content {
    width: 320px
  }
}
