.acknowledgement_cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  cursor: pointer;
}

.acknowledgement_inner {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 100%;
  padding: 40px 50px 40px;
  box-sizing: border-box;
  background: #593D3C;
  /*background: url('./images/ack.jpg') center left/cover;*/
  color: #fff;
  cursor: default;
}

@media (max-width: 1200px) {
  .acknowledgement_inner {
    top: 90px;
    width: calc(100% - 40px);
    padding: 0px 20px 20px;
  }
}

.acknowledgement_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/ack.jpg') bottom left/cover;
  z-index: -1;
  opacity: 0.1;
}

.acknowledgement_logo {
  position: fixed;
  top: 0px;
  left: 35px;
  z-index: 11;
}

@media (max-width: 1400px) {
  .acknowledgement_logo {
    left: 5px;
  }
}

.acknowledgement_logo .logo_img {
  height: 80px;
  width: auto;
}

.acknowledgement {
  max-width: 900px;
  margin: auto;
}

.acknowledgement_text {
  font-size: 22px;
  padding-top: 20px;
}

@media (max-width: 1200px) {
  .acknowledgement_text {
    font-size: 16px;
  }
}

.advisory {
  font-size: 18px;
  padding-top: 40px;
  margin: auto;
}

@media (max-width: 1200px) {
  .advisory {
    font-size: 15px;
  }
}

.advisory_title {
  font-weight: bold;
}


.advisory_desc {
  padding-top: 20px;
}

.close_acknowledgement_cont {
  height: 60px;

  display: none;
}

.close_acknowledgement {
  cursor: pointer;
  float: right;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  display: block;
  background: url('/static/images/close_yellow.png') center/18px no-repeat;
}

.close_acknowledgement:hover {
  opacity: 0.6;
}

.acknowledgement_proceed_cont {
  margin: 30px 0 0;
  font-size: 18px;
  text-align: center;
}

@media (max-width: 1200px) {
  .acknowledgement_proceed_cont {
    margin-top: 20px;
  }
}

.acknowledgement_proceed_cont a {
  font-size: 22px;
  /*background: #EEAf00;*/
  /*color: #fff;*/
  color: #EEAf00;
  padding: 10px 0 20px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
  .acknowledgement_proceed_cont a {
    font-size: 19px;
    padding-top: 5px;
  }
}

.acknowledgement_proceed_cont a:after {
  content: " ";
  height: 1.36em;
  width: 1.36em;
  display: inline-block;
  background: url('/static/images/chevron_right_yellow.svg') center/contain no-repeat;
  vertical-align: -7.5px;
  transition: transform 200ms;
}

.acknowledgement_proceed_cont a:hover:after {
  transform: translateX(4px);
}


