#popup_cookies {
  position: absolute;
  left: 1vw;
  bottom: 70px;
  width: 40vw;
  height: auto;
  padding: 10px 0;

  border-radius: 10px;
  border-style: solid;
  border-width: 1px;

  background: #FFF;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

#popup_cookies_body {
  width: 90%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#popup_cookies_svg{
  width: 40%;
  text-align: center;
}

#popup_cookies_text {
  width: 60%;
  text-align: center;
}

#cookie_svg {
  width: 70%;
}

#popup_cookies_text > header{
  font-weight: bold;
  font-size: 18px;

  margin-bottom: 10px;
}

#popup_cookies_text > main {
  font-size: 13px;
  text-align: justify;
}

#popup_cookies_text > footer {
  margin-top: 10px;

  width: 100%;
  display: flex;
}

#popup_cookies_text > footer button {
  flex-grow: 1;
  flex-basis: auto;

  cursor: pointer;

  border-style: none;
  border-radius: 5px;
  padding: 5px 0;
  margin: 0 1px;
  font-weight: bold;
}

#modal_cookies {
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#modal_cookies_body {
  background: #FFF;
  width: 70vw;
  padding: 10px 0;
  margin: 10vh auto;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
}

#modal_cookies_body > header {
  width:95%;
  display: flex;
  justify-content: space-between;

  padding: 0 0 10px;
  margin: 0 auto 10px;
  border-bottom: 1px solid #F8F8F8;
}

.modal_title {
  font-weight: bold;
  font-size: 18px;
}

.modal_close {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  padding: 0 7px;
  border-radius: 5px;
}

.modal_cookies_descricao {
  width: 100%;
  padding: 10px 0;
  margin: 0 auto;
  background: #F8F8F8;
  border-radius:2px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal_cookies_descricao + .modal_cookies_descricao {
  margin-top: 5px;
}
.modal_cookies_descricao > header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.modal_cookies_descricao > header span:first-child {
  font-weight: bold;
  font-size: 14px;
}
.modal_cookies_descricao > header span:last-child {
  font-weight: bold;
  font-size: 12px;
}
.modal_cookies_descricao > div {
  width: 90%;
  font-size: 12px;
  text-align: justify;
}

.interruptor {
  display: inline-block;
  width: 50px;
  height: 30px;
  border-radius: 20px;
  border: 5px solid #FFF;
  background: #696969;
  cursor: pointer;
}
.interruptor > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background: #F8F8F8;
  border: 1px solid #696969;
  z-index: 10;
}

#modal_cookies_body > footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal_cookies_body > footer button {
  cursor: pointer;

  border-style: none;
  border-radius: 5px;
  padding: 5px;
  margin: 10px 0 5px;
  font-weight: bold;
}

@media (max-width: 820px) {
  #popup_cookies {
    width: 98vw;
    margin: 0 auto;
  }

  #modal_cookies_body {
    width: 98vw;
  }

  #popup_cookies_svg, #popup_cookies_text {
    width: 100%;
    margin: 5px 0;
  }

  #cookie_svg {
    width: 50%;
  }
}