/* lottery header start */
#lottery_results li {
  display: inline-block;
  float: left;
  width: 36px;
  height: 36px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
}
.ball6 {
  display: flex;
  /* justify-content: center; */
  gap: 0.5rem;
  padding: 0 1.5rem;
}
.ball6 li {
  width: 36px;
  height: 36px;
  font-size: var(--font-normal);
  color: #333;
}
#lottery_results {
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 5px;
  gap: 0.5rem;
}
.lottery_header .wrapper {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
}
.lottery_header {
  padding-bottom: 1rem;
}
#name {
  font-size: var(--font-normal);
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}
#lottery_logo {
  width: 70px;
  height: 70px;
  margin: auto;
}
.period p {
  font-size: var(--font-small);
}
.heartEmpty {
  width: 31px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.preDrawIssue {
  vertical-align: middle;
  display: inline-block;
  font-size: var(--font-normal);
  color: #000;
  line-height: 29px;
}
.number_result {
  margin-top: 5px;
  background-color: #f0f0f0;
  border-radius: 5px;
}
.lottery_option {
  margin-top: 5px;
}
#lottery_options li.active a {
  color: #fff;
}
#lottery_options li a,
#lottery_options li button {
  display: inline-block;
  font-size: 14px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  border: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  color: #000;
}
#lottery_options li {
  width: 100px;
  height: 30px;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
}
#lottery_options li.active {
  background-color: #ff6d3d;
}
.lottery_content {
  margin-top: 2rem;
}
#morelist button {
  display: inline-block;
  font-size: 14px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  border: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
}
#morelist:hover #arrow {
  transform: rotate(180deg);
  background-image: url(../images/orange_arrow_down.png);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
#morelist.active:hover #arrow,
button.active #arrow {
  transform: rotate(180deg);
  background-image: url(../images/orange_arrow_down.png);
}
#lottery_options li button:hover {
  color: #f44a07;
}
#arrow {
  background-image: url(../images/normal_arrow_down.png);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 8px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.morelist_wrapper {
  display: none;
  transition: all 0.5s ease;
}
.morelist_wrapper.active {
  display: block;
}
.lottery_time p {
  font-size: var(--font-small);
}
.time_loader {
  display: none;
}
.cuttime {
  width: 120%;
  height: 50px;
  background: #31323b;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  color: #ffc14a;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  line-height: 49px;
  font-size: var(--font-large);
  margin-top: 5px;
}
.time_loader {
  font-size: var(--font-normal);
}
.list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
}
.list li {
  text-align: center;
}
.list li a {
  color: #333;
  font-size: var(--font-small);
}
.lottery_winings,
.lottery_winings_plus {
  justify-content: center;
  gap: 0.5rem;
}
.lottery_winings li,
.lottery_winings_plus li {
  display: inline-flex;
  gap: 2px;
  text-align: center;
  align-items: center;
}
.lottery_winings li .circle,
.lottery_winings_plus li .circle {
  height: 38px;
  width: 38px;
  line-height: 35px;
  font-size: var(--font-normal);
  color: #fff;
}
.lottery_winings li .text,
.lottery_winings_plus li .text {
  margin-left: 2px;
  line-height: 35px;
  font-size: var(--font-normal);
  color: #333;
  font-weight: bold;
}
.lotteryListTable {
  background-color: rgb(212, 212, 212);
  display: table;
  border-collapse: separate;
  border-spacing: 2px;
  border-color: gray;
  margin-bottom: 3rem;
}
.lotteryListTable tr td {
  height: 40px;
  text-align: center;
  padding: 0 12px;
  font-size: var(--font-small);
}
.lotteryListTable thead tr th {
  height: 42px;
  text-align: center;
  padding: 0 2px;
  font-size: var(--font-small);
  white-space: nowrap;
}
.lotteryListTable thead {
  background-color: #e7e7e7;
}
.list_win {
  display: flex;
  justify-content: space-between;
}
.list_win.flex_center {
  justify-content: center;
}
.lotteryListTable thead tr th:nth-child(1) {
  width: 10%;
}
.lotteryListTable thead tr th:nth-child(2) {
  width: 43%;
}
.lotteryListTable thead tr th:nth-child(3) {
  width: 7%;
}
.lotteryListTable thead tr th:nth-child(4) {
  width: 25%;
}
.lotteryListTable thead tr th:nth-child(5) {
  width: 25%;
}
#lottery_options {
  opacity: 0;
}
#numberbtn span {
  color: #fff;
  display: inline-block;
  width: 80px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: #b9b9b9;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin: 0 10px;
}
#numberbtn span.active {
  background-color: #50515f;
}
/* lottery header end */
/* rules start */
.headlist {
  color: #555;
  height: 55px;
  border-bottom: 2px solid #e7e7e7;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
.headlist_title {
  float: left;
  position: relative;
  font-size: var(--font-normal);
}
.rules_wrapper {
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 1rem;
  display: none;
}
#rules li {
  cursor: pointer;
  width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  display: inline-block;
  float: left;
  margin-right: 25px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
#rules li.active i {
  position: absolute;
  top: 15px;
  right: 0;
  display: inline-block;
  height: 15px;
  width: 15px;
  background: url(../images/lottery_images.png) no-repeat -386px -55px;
}
#rules li.active a {
  color: #ff6d3d;
}
#rules li.active {
  border: 1px solid #ff6d3d;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  position: relative;
}
#rules li a {
  font-size: var(--font-normal);
}
.rules_content {
  display: block;
  height: auto;
}
.rules_content .rule_1_content,
.rules_content .rule_2_content,
.rules_content .rule_3_content {
  width: 50%;
  opacity: 0;
  display: none;
  padding: 0 20px 20px;
  border-bottom: 2px solid #e7e7e7;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
table {
  display: table;
  border-collapse: separate;
  border-spacing: 1px;
  border-color: grey;
}
table {
  background: #e6e6e6;
  width: 100%;
}
table tr th {
  font-size: var(--font-small);
  background: #f5f5f5;
}
table tr td,
table tr th {
  height: 45px;
  padding: unset;
  text-align: center;
  color: #555;
  /* background: #f5f5f5; */
}
.secondtb {
  margin-top: 20px;
}
ul {
  gap: unset;
}
#cltxul {
  display: flex;
  flex-wrap: wrap;
}

#cltxul li {
  display: inline-block;
  float: left;
  width: 168px;
  height: 36px;
  padding: 0;
  line-height: 36px;
  margin-right: 20px;
  margin-top: 10px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  color: #555;
  font-size: var(--font-small);
}
.headtext {
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: var(--font-normal);
  text-align: left;
  color: #555;
  font-weight: 500;
}
/* rules end */
