.hidden {
  display: none;
}

.show {
  display: block;
}

.cookie {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.cookieMsg {
  width: 100%;
  height: 100px;
  background-color: rgba(255, 103, 103, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 8px 25px;
  border-radius: 5px;
  box-sizing: border-box;
}

.message {
  margin-bottom: 0;
  width: 70%;
  height: 90%;
  float: left;
}

.cookieMsg p {
  margin-bottom: 0;
  font-weight: 300;
  font-size: 14px;
  color: #e0e0e0;
}

.lrnMore {
  text-decoration: underline;
  color: #cacaca;
}

.lrnMore:hover {
  color: #f1f1f1;
}

.messageBtnCont {
  width: 30%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.messageBtn {
  padding: 5px 35px;
  margin: 0 5px;
  font-weight: 700;
  background-color: #e0e0e0;
  border: none;
  outline: none;
  cursor: pointer;
}

.messageBtnReject {
  width: 110px;
  height: 34px;
  margin: 0 20px 0 5px;
  font-weight: 700;
  background-color: #e0e0e0;
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.messageBtnReject > a {
  text-decoration: none;
  color: #212529;
}

.messageBtnReject > a:visited {
  color: #212529;
}

@media (max-width: 1200px) {
  .cookieMsg {
    height: 130px;
  }

  .message {
    width: 80%;
  }

  .messageBtnCont {
    width: 20%;
    float: left;
  }

  .messageBtnReject {
    margin-right: 0;
    width: 100px;
  }

  .cookieMsg {
    padding: 8px 10px;
  }
}
@media (max-width: 992px) {
  .cookieMsg p {
    font-size: 14px;
  }

  .messageBtnReject {
    width: 75px;
    height: 24px;
    font-size: 12px;
  }

  .lrnMore {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .cookieMsg {
    padding: 5px 5px;
    height: 135px;
  }

  .cookieMsg p {
    font-size: 12px;
  }

  .message {
    width: 73%;
  }

  .messageBtnCont {
    width: 22%;
  }

  .messageBtnReject {
    margin-left: 5px;
    width: 100px;
    font-size: 11px;
  }
}
@media (max-width: 577px) {
  .cookieMsg {
    top: 40%;
    height: 200px;
    padding: 10px 20px 0 20px;
    background-color: rgba(38, 51, 123, 0.9);
  }

  .cookieMsg p {
    font-size: 13px;
  }

  .message {
    width: 100%;
    height: 45%;
  }

  .messageBtn {
    font-size: 13px;
  }

  .messageBtnCont {
    margin-top: 23px;
    width: 100%;
    justify-content: center;
    height: 45%;
  }
}
@media (max-width: 447px) {
  .cookieMsg {
    top: 40%;
    height: 200px;
    padding: 10px 20px 0 20px;
    background-color: rgba(38, 51, 123, 0.9);
  }

  .cookieMsg p {
    font-size: 13px;
  }

  .messageBtnReject {
    width: 70px;
    height: 19px;
    font-size: 10px;
  }

  .messageBtnCont {
    margin-top: 25px;
  }

  .lrnMore {
    font-size: 8px;
  }
}
@media (max-width: 360px) {
  .cookieMsg {
    height: 200px;
  }

  .messageBtnCont {
    margin-top: 30px;
  }

  .cookieMsg p {
    font-size: 10px;
  }
}