.age_check {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: Rubik, sans-serif; }
  .age_check .inner {
    width: 100%;
    max-width: 50%;
    text-align: center;
    background: #fff;
    padding: 80px 30px;
    box-sizing: border-box; }
    @media (max-width: 768px) {
  .age_check .inner {
    padding: 30px;
    width: 90%;
    max-width: 100%; } }
    .age_check .inner .title {
      font-size: 24px;
      text-align: center;
      margin-bottom: 10px;
      color: #000;
      font-weight: bold; }
    @media (max-width: 640px) {
  .age_check .inner {
    width: 90%; } }
    .age_check .inner .body {
      font-size: 16px;
      line-height: 1.3; }
    .age_check .inner .buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      text-align: center;
      font-size: 0;
      margin: 60px 0; }
      @media (max-width: 768px) {
  .age_check .inner .buttons {
    margin: 20px 0; } }
      .age_check .inner .buttons .left, .age_check .inner .buttons .right {
        margin: 10px;
        display: flex;
        flex-direction: column; }
        .age_check .inner .buttons .left .text, .age_check .inner .buttons .right .text {
          color: #000;
          font-size: 18px; }
      .age_check .inner .buttons .but {
        display: inline-block;
        vertical-align: top;
        padding: 12px 20px 12px 20px;
        background: #b10808;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        position: relative;
        margin-right: 10px;
        margin-left: 10px;
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
        max-width: 220px;
        margin-right: auto;
        margin-left: auto;
        font-weight: bold;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
        .age_check .inner .buttons .but:hover {
          opacity: 0.8; }
        .age_check .inner .buttons .but.no {
          background: #b10808;
          color: #fff;
          -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
  .age_check.active {
    display: flex; }
