body {
  margin: 0px;
  padding: 0px;
}

.btn_tv_modal {
  padding: 0px 30px;
  height: 50px;
  background-color: red;
  color: #fff;
  border-radius: 5px;
}

.tv_modal {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.tv_modal .modal_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.tv_modal .modal_body .modal_in {
  padding: 50px 30px;
  max-width: 90%;
  width: 31%;
  background-image: url(../element.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-color: #fff;
  border-radius: 8px;
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.tv_modal .modal_body .modal_in::-webkit-scrollbar {
  display: none;
  width: 0px;
}

.tv_modal .modal_body .modal_in .left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tv_modal .modal_body .modal_in .left img {
  width: 80%;
}

.tv_modal .modal_body .modal_in .right {
  width: 50%;
}

.tv_modal .modal_body .modal_in .right .logo {
  width: 40px;
  height: 40px;
  margin: 0px auto;
  display: block;
}

.tv_modal .modal_body .modal_in .right .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #8b1a1f;
  margin: 20px auto;
  display: block;
}

.tv_modal .modal_body .modal_in .right .more {
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.tv_modal .modal_body .modal_in .right .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #8b1a1f;
  text-decoration: none;
  position: relative;
  width: 59%;
  margin: 0px auto;
}

.tv_modal .modal_body .modal_in .right .link span {
  color: #fff;
  font-size: 14px;
}

.tv_modal .modal_body .modal_in .right .link img {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 20px;
  height: 20px;
}

.tv_modal .modal_body .modal_in .close {
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: black;
  border-radius: 3px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
}

.tv_modal .modal_body .modal_in .close img {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 768px) {
  .tv_modal .modal_body .modal_in {
    background-size: 90%;
    max-width: 100%;
    width: 90%;
    padding: 20px 10px;
  }
  .tv_modal .modal_body .modal_in .right {
    width: 100%;
  }
  .tv_modal .modal_body .modal_in .left {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */