﻿[data-css-name="InfoDialog"] .dialog-container {
  border: 1px solid #707070;
  background-color: #FFFFFF;
  margin: 12.96vh auto 0;
  width: 1400px;
  height: calc(100vh - 12.96vh * 2);
  text-align: center;
  color: #000000;
}
@media only screen and (max-width: 480px) {
  [data-css-name="InfoDialog"] .dialog-container {
    width: calc(100vw - 50px);
    margin: 70px auto 44px;
    height: calc(100vh - 194px);
    border-radius: 5px;
  }
}
[data-css-name="InfoDialog"] .dialog-container .title {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: lighter;
  opacity: 0.9;
}
@media only screen and (max-width: 480px) {
  [data-css-name="InfoDialog"] .dialog-container .title {
    margin-top: 10px;
    font-size: 20px;
  }
}
[data-css-name="InfoDialog"] .dialog-container .message {
  text-align: left;
  font-size: 24px;
  font-weight: lighter;
  /*width: 1000px;*/
  max-height: calc(100vh - 12.96vh * 3 - 200px);
  overflow-y: scroll;
  margin: 0 70px;
  opacity: 0.9;
  /*> section {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }*/
}
@media only screen and (max-width: 480px) {
  [data-css-name="InfoDialog"] .dialog-container .message {
    width: unset;
    margin: 0 15px;
    font-size: 14px;
  }
}
[data-css-name="InfoDialog"] .dialog-container .message .note {
  font-size: 20px;
}
@media only screen and (max-width: 480px) {
  [data-css-name="InfoDialog"] .dialog-container .message .note {
    width: unset;
    margin: 0 15px;
    font-size: 12px;
  }
}
[data-css-name="InfoDialog"] .dialog-container .message > section > h2 {
  float: left;
  width: 100%;
}
[data-css-name="InfoDialog"] .dialog-container .message > section > img {
  box-sizing: border-box;
  padding-right: 40px;
  float: left;
  width: 40%;
}
[data-css-name="InfoDialog"] .dialog-container .message > section > p {
  box-sizing: border-box;
  padding-right: 40px;
  margin-top: 0;
  float: left;
}
[data-css-name="InfoDialog"] .dialog-container .message > section > img + p {
  width: 60%;
}
[data-css-name="InfoDialog"] .dialog-container .message::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
[data-css-name="InfoDialog"] .dialog-container .message::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
[data-css-name="InfoDialog"] .dialog-container .message::-webkit-scrollbar-thumb {
  background-color: #332F2E;
}
[data-css-name="InfoDialog"] .dialog-container .btn-continue {
  position: absolute;
  bottom: calc(12.96vh + 60px);
  left: calc(50vw - 440px / 2);
}
@media only screen and (max-width: 480px) {
  [data-css-name="InfoDialog"] .dialog-container .btn-continue {
    bottom: 84px;
    left: calc(50vw - 161.74px / 2);
  }
}
[data-css-name="InfoDialog"] .dialog-container .btn-findout {
  float: left;
  height: 45px;
  width: 240px;
  line-height: 45px;
}