@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none !important;
  font-family: "Figtree";
}

body,
html {
  scroll-behavior: smooth;
  background-color: #D0EBE8 !important;
  -webkit-font-smoothing: antialiased !important;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  background: rgb(255, 255, 255);
  width: 7px;
}
::-webkit-scrollbar-track {
  display: none;
  max-height: 500px;
  background: #406b15;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb {
  background: #D0EBE8;
  border-radius: 10px;
}
p {
  font-size: 18px;
}

ul {
  list-style: none;
}
a {
  text-decoration: none !important;
}

nav {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #003333;
  transition: 0.5s ease;
}

#navbar {
  display: flex;
  justify-content: space-between;
  padding: 0;
  height: 70px;
}

label .logo {
  width: 124px;
  padding-top: 15px;
  cursor: pointer;
  opacity: 1;
  transition: 0.5s;
}

label .logo:hover {
  opacity: 0.5;
}

nav ul p {
  display: none;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 10px;
  z-index: 1001;
}

nav ul li a {
  z-index: 1001;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Figtree";
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 3px;
  position: relative;
  /* font-weight: bold; */
}

nav ul li a:before {
  z-index: -1;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0px;
  bottom: 0px;
  content: "";
  background: #ccff66;
  transition: all 0.3s;
}

nav ul li a:hover:before {
  width: 100%;
}

nav a:hover {
  color: #fff;
  font-weight: bold;
}

.notif_indicator {
  position: relative;
  color: #003333;
}

.notif_indicator span {
  position: absolute;
  background: #FF0000;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  font-weight: bold;
  /* border: 1px solid #333300; */
}

nav .nav_login_btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav_login_btn {
  background-image: url("./assets/images/login_btn.png");
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 10px;
  border: none;
  outline: none;
  width: 120px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav_login_btn:hover {
  background-image: url("./assets/images/signup_btn.png");
  border: 1px solid #fff;
  color: #fff;
}

.nav_signup_btn {
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 15px;
  border: 2px solid #99cc33;
  width: 120px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav_signup_btn:hover {
  background-image: url("/assets/images/signup_btn.png");
  /* border: 2px solid #fff; */
  border: none;
  color: #fff;
}

nav ul li ion-icon {
  display: none;
}

nav ion-icon {
  font-size: 28px;
  color: #fff;
}

.mobile_nav_signup {
  display: none;
}

.navbar_mobile {
  display: none;
}

@media (max-width: 530px) {
  .nav_login_btn {
    font-weight: 800;
    padding: 7px 10px;
    width: 100px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 15px;
  }

  .nav_signup_btn {
    font-weight: 800;
    padding: 7px 10px;
    border: 2px solid #99CC33;
    width: 100px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 15px;
  }

  nav .nav_login_btns {
    gap: 10px;
  }
}

@media (max-width: 445px) {
  .nav_login_btn {
    font-weight: 600;
    padding: 7px 10px;
    width: 104px;
    font-size: 14px;
  }

  .nav_signup_btn {
    font-weight: 600;
    padding: 7px 10px;
    border: 1px solid #99cc33;
    width: 90px;
    font-size: 14px;
  }

  nav {
    padding: 0 20px;
  }
}

/* Footer */

.footer_mobile {
  position: relative;
  background: #003333;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  gap: 0;
}
.footer_mobile_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
  gap: 50px;
}
.footer_mobile_top a {
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.footer_mobile_top a:hover {
  color: #ccff66;
  font-weight: 600;
}

.footer_mobile_btm {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer_mobile_btm p {
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.footer_mobile_btm a {
  color: #fff;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 20px;
}

@media (max-width: 1130px) {
  nav ul li {
    margin: 0 5px;
  }
}

@media (max-width: 1005px) {
  #navbar ul {
    display: none;
  }

  .navbar_mobile {
    width: 100%;
    background: #336666;
    margin-top: -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: fixed;
    bottom: 0;
  }
  .navbar_mobile div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    height: 80px;
    padding: 0 20px;
  }
  .navbar_mobile img {
    width: 25px;
  }
  .navbar_mobile a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .footer_mobile {
    position: relative;
    bottom: 30px;
    left: 0;
    background: #003333;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer_mobile_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px;
    gap: 10px;
  }
  .footer_mobile_top a {
    font-size: 14px;
    text-align: center;
    color: #fff;
  }
  .footer_mobile_btm p {
    font-size: 14px;
    text-align: center;
    color: #fff;
  }
  .cashout_mobile_img {
    width: 40px !important;
    margin-bottom: 8px;
  }

  .nav_draw_history {
    display: none;
  }

  .mobile_nav_signup {
    display: flex;
  }
}

@media (max-width: 430px) {
  .cashout_mobile_img {
    width: 30px !important;
    margin-bottom: 5px;
  }
}

@media (max-width: 380px) {
  .navbar_mobile div {
    padding: 0;
  }

  .navbar_mobile {
    padding: 0 20px;
  }
}

/* Index Page */

#hero {
  background: #005454;
  padding: 50px 0 70px 0;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

#slider {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.slides {
  overflow: hidden;
  animation-name: fade;
  animation-duration: 1s;
  display: none;
}

img {
  width: 100%;
}

#dot {
  margin: 20px auto 0 auto;
  text-align: center;
}
.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  background: transparent;
  margin: 10px 5px;
}

.active {
  background: #eaeab7;
  box-shadow: inset 0 0 35px #ccbfa3, 1px 1px 5px 0 #ccc;
}

@media (max-width: 567px) {
  #slider {
    width: 100%;
  }
}

.hero_cards {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero_card {
  cursor: pointer;
}

.hero_card img:hover {
  transform: translateY(-5px);
}

.hero_card img {
  width: 200px;
  border-radius: 10px;
  transition: 0.3s;
}

.hero_card p {
  font-size: 20px;
  font-weight: bold;
}

.container_wrap {
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.count_div_wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.count_div {
  width: 500px;
  height: 200px;
  border-radius: 15px;
  background: #005454;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.count_div h4 {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
}

.count_div h2 {
  font-weight: bold;
  color: #fff;
  font-size: 60px;
}

.count_div h2 span {
  font-weight: bold;
  color: #fff;
  font-size: 50px;
}

.container {
  margin: 0 40px;
}

@media (max-width: 1090px) {
  .count_div {
    width: fit-content;
  }
}

@media (max-width: 1500px) {
  .hero_card img {
    width: 240px;
  }
}
@media (max-width: 1200px) {
  .container_wrap,
  .container {
    margin: 0 20px;
  }
  .hero_card img {
    width: 230px;
  }
}
@media (max-width: 991px) {
  .hero_cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .count_div_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .count_div {
    width: 400px;
    height: 200px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .hero_img {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .hero_card img {
    width: 200px;
  }
}
@media (max-width: 470px) {
  .hero_card img {
    width: 150px;
  }
  .count_div_wrap {
    margin-top: -120px;
  }
  .count_div {
    height: fit-content;
    width: 100%;
    padding: 10px 20px;
  }
  .count_div h4 {
    font-size: 18px;
  }
  .count_div h2 {
    font-size: 60px;
  }
}
@media (max-width: 440px) {
  .hero_cards {
    gap: 10px;
  }
}
@media (max-width: 380px) {
  .count_div h4 {
    font-size: 16px;
  }
  .count_div h2 {
    font-size: 50px;
  }
}
@media (max-width: 325px) {
  .count_div h4 {
    font-size: 16px;
  }
  .count_div h2 {
    font-size: 40px;
  }

  /* .dash_card img {
    width: 150px;
  }
  
  .dash_container {
    gap: 15px;
    
  } */
}

/* Sign Up Page */

.form_container {
  display: flex;
  background: #D0EBE8;
  width: fit-content;
  height: fit-content;
  border-radius: 20px;
  padding: 50px 50px 30px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 100px auto;
}
.form_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.form_wrapper .title {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  color: #005454;
}
.form_wrapper .title h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.form_wrapper .radio {
  display: none;
}
.form_wrapper .tab {
  width: 50%;
  border: 1px solid #005454;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  user-select: none;
  cursor: pointer;
  color: #005454;
}
.form_wrapper .tab.login_tab {
  border-right: none;
  background: #005454;
  color: #fff;
}

.form_wrapper .tab.signup_tab {
  border-left: none;
  background: #005454;
  color: #fff;
}

.form_wrapper .form_wrap {
  display: flex;
  width: 200px;
  flex: 0 0 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.form_wrapper .form_wrap .form_field {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}
.form_wrapper .form_wrap .form_field .input_group {
  width: 100%;
  margin-bottom: 30px;
}
.form_wrapper .form_wrap .form_field .input_group .input {
  width: 100%;
  border: 1px solid #005454;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.form_wrapper .form_wrap .form_field .input_group .input::placeholder {
  color: #005454;
  font-weight: bold;
}
.form_wrapper .form_wrap .form_field .input_group .textarea {
  width: 100%;
  border: 1px solid #005454;
  background: transparent;
  height: 120px;
  padding: 10px 15px 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.form_wrapper .form_wrap .form_field .input_group select {
  width: 100%;
  border: 1px solid #005454;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  font-weight: bold;
}
.form_wrapper .form_wrap .form_field .input_group select option {
  font-weight: bold;
  background: #005454;
  color: #fff;
}
.form_wrapper .form_wrap .form_field .input_group select option:hover {
  background: #005454 !important;
}

.form_wrapper .form_wrap .form_field .input_group .textarea::placeholder {
  color: #005454;
  font-weight: bold;
}

.input_no {
  position: relative;
}

.input_no input {
  padding-left: 60px !important;
  border-radius: 10px;
}

.flag {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 30px;
  z-index: 10;
}

.form_wrapper .form_wrap .form_field .forgot {
  display: block;
  margin-top: -15px;
  text-align: left;
  color: #005454;
  font-weight: bold;
}

#signup_sec {
  display: grid;
  place-items: center;
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  background: #005454;
}

.login_btn {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #005454;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.login_btn:hover {
  background: #669999;
}

.submit_btn {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #005454;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.submit_btn:hover {
  background: #669999;
}

.signup_btn {
  width: 100%;
  height: 60px;
  color: #fff;
  background: #005454;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 20px auto 15px auto;
  font-weight: 800;
  font-size: 20px;
  transition: 0.3s;
}

.signup_btn:hover {
  background: #669999;
}

.signup_btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.signup_btn:disabled:hover {
  background: #ccc;
}

.signin_cta {
  margin-top: 20px;
  font-size: 16px;
}

.signin_cta a {
  font-weight: bold;
  color: #333300;
}

.agree_signup {
  text-align: left;
  font-weight: bold;
  color: #333300;
}

.agree_signup input[type="checkbox"] {
  position: relative;
  border: 2px solid #333300;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  opacity: 0.5;
  transition: 0.3s;
}

.agree_signup input[type="checkbox"]:hover {
  opacity: 1;
}

.agree_signup input[type="checkbox"]:checked {
  background-color: #333300;
  opacity: 1;
}

.agree_signup input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 1160px) {
  #signup {
    padding-bottom: 100px;
  }
  #signup .row {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
  }
  #signup .row h1 {
    margin: 0 auto 70px auto;
  }
  .back_hp {
    display: none;
  }
}

@media (max-width: 645px) {
  .formfield {
    width: 100%;
  }

  .form_text_split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  #signup .row h1 {
    font-size: 30px;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
}

@media (max-width: 460px) {
  .form_container {
    padding: 80px 30px 30px 30px;
    margin: auto 20px;
  }
}

/* FAQs */

#faqs {
  background: #005454;
  padding-top: 70px;
}

.questions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px 0 100px 0;
}

.qas {
  padding: 20px;
  background: #D0EBE8;
  border-radius: 10px;
  width: 400px;
  height: 300px;
  color: #003333;
  margin-bottom: 40px;
}

.qa_header {
  text-transform: uppercase;
  font-weight: bold;
  width: fit-content;
}

.qa_body {
  max-width: 400px;
  font-size: 16px;
}

@media (max-width: 890px) {
  .qas {
    height: fit-content;
    padding-bottom: 40px !important;
  }
}

/* Popups */

#popup {
  display: grid;
  place-items: center;
  padding-top: 100px;
  width: 100%;
  height: 100%;
  background: #003333;
}

.popup_container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.popup_box {
  width: fit-content;
  height: fit-content;
  padding: 50px 50px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.popup_box h2 {
  padding: 20px 30px 0 30px;
  font-weight: 800;
  text-align: center;
  margin: auto;
}

.winner_text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-top: 30px;
}

.popup_head_text {
  font-size: 24px;
  font-weight: 700;
  color: #003333;
}

.popup_ticket_no {
  font-size: 22px;
  font-weight: 500;
  margin-top: -10px;
}

.popup_phone_no {
  font-size: 30px;
  font-weight: 800;
}

.popup_box .popup_logo {
  max-width: 100px;
  margin-bottom: 30px;
}

.popup_cup_img {
  max-width: 300px;
}

.popup_check_img {
  max-width: 150px;
}

.popup_end_text {
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
}

.cashout_btn {
  width: 230px;
  height: 60px;
  border-radius: 50px;
  background-color: #cfff6e;
  color: #333300;
  font-weight: 900;
  font-size: 24px;
  border: 5px solid #cdff68;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cashout_btn .flare {
  background: linear-gradient(#ffffffc8, rgba(204, 255, 102, 0.54));
  position: absolute;
  right: -20px;
  top: -50px;
  opacity: 0.8;
  transform: rotate(-35deg);
  width: 100px;
  height: 200px;
  transition: all 1s cubic-bezier(0.175, 0.52, 0.165, 1);
  z-index: -1;
}

.play_again_btn {
  background: #D0EBE8;
  color: #003333;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 30px;
  letter-spacing: 1px;
  width: 370px;
  height: 60px;
  font-size: 24px;
  border: none;
  outline: none;
  border-radius: 10px;
  transition: 0.3s;
}

.play_again_btn:hover {
  background: #ccff6687;
  color: #003333;
}

.popup_buttons .play_again_btn {
  width: 230px;
}

.popup_sec_btn {
  background: transparent;
  color: #333300;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 30px;
  letter-spacing: 1px;
  width: 230px;
  height: 60px;
  font-size: 24px;
  border: 3px solid #333300;
  outline: none;
  border-radius: 10px;
  transition: 0.3s;
}

.popup_buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 70px auto 30px auto;
}

@media (max-width: 990px) {
  .popup_container {
    padding: 100px 30px 50px 30px;
  }
}

@media (max-width: 630px) {
  .popup_buttons {
    flex-direction: column;
    gap: 30px;
    margin: 70px auto 30px auto;
  }
}

@media (max-width: 530px) {
  .popup_box {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .popup_box {
    padding: 50px 30px;
  }

  .play_again_btn {
    padding: 10px 30px;
    width: 300px;
  }
}

@media screen and (max-width: 360px) {
  .play_again_btn {
    padding: 0px;
    font-size: 16px;
    width: 200px;
  }
}

/* Draw History */

#draw_history {
  background: #D0EBE8;
  margin: 150px auto;
  display: grid;
  place-items: center;
}

#draw_history h2 {
  color: #003333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline !important;
}

.draw_container_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100vmin;
  height: fit-content;
  margin: 50px auto 0 auto;
}

.draw_container {
  width: 100%;
  background: #005454;
  padding: 30px;
}

.draw_hst_play_container {
  width: 100%;
  background: #003333;
  padding: 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.draw_hst_play_container h4 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.draw_container h4 {
  font-weight: bold;
  text-transform: uppercase;
}

.active_ticket {
  border-bottom: 1px solid #333300;
  padding: 0 30px 20px 30px;
  color: #fff;
}

.active_ticket_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 300px;
}

.ticket_history {
  padding: 30px 30px 0 30px;
  color: #fff;
}

.ticket_history_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.col1,
.col2,
.col3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.col1 span,
.col2 span,
.col3 span {
  padding: 10px 0 10px 20px;
}

.col1 span:nth-child(odd) {
  background: #6FA1A1;
}
.col2 span:nth-child(odd) {
  background: #669999;
}

.col1 span:nth-child(even) {
  background: #D0EBE8;
}
.col2 span:nth-child(even) {
  background: #B6D9D5;
}

.col_head {
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.loss_icon {
  color: #fff;
}

.win_col {
  background: #99cc33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  color: #003333;
  position: relative;
}

.win_col::before {
  font-family: "FontAwesome";
  content: "\f091";
  position: absolute;
  right: 20px;
  color: #003333;
}

.loss_col::before {
  font-family: "FontAwesome";
  content: "\f057";
  position: absolute;
  right: 20px;
  color: #fff;
}

.loss_col {
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  position: relative;
  color: #fff;
}

.view_all_btn {
  text-transform: uppercase;
  color: #B0EBE8;
  border: 1px solid #333300;
  padding: 10px 30px;
  background: transparent;
  font-weight: 800;
  margin: 30px auto 10px auto;
  font-size: 18px;
  border-radius: 10px;
}

@media (max-width: 840px) {
  .active_ticket_split {
    gap: 20px;
  }
}

@media (max-width: 730px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 50px;
  }
}

@media (max-width: 545px) {
  .col1 p:nth-child(1) {
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 460px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 10px;
  }
}
@media (max-width: 360px) {
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 0 !important;
  }
}

/* Winners List Table */

#winners {
  margin-top: 150px;
}

.winners_list_container {
  background: #003333;
  padding: 50px;
  width: 100%;
}

#winners h2 {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #003333;
  margin-bottom: 40px;
}

table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: auto;
  padding: 0;
  width: 70%;
  table-layout: fixed;
}

table tr {
  background-color: #003333;
  border: 2px solid #fff;
  padding: 0.35em;
}

table td {
  padding: 10px 30px;
  font-weight: 800;
  color: #fff;
}

.winners_list_no {
  text-align: left;
}

.winners_list_reward {
  text-align: right;
  border-left: 2px solid #fff;
}

.button_container_centered {
  width: 100%;
  display: grid;
  place-items: center;
}

.load_more {
  width: 200px;
  height: 60px;
  border: 2px solid #003333;
  background: transparent;
  color: #003333;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 40px;
  border-radius: 10px;
}

@media screen and (max-width: 800px) {
  .winners_list_container {
    background: #fff;
    padding: 50px 20px;
  }
}

@media screen and (max-width: 600px) {
  #winners .container_wrap {
    margin: 50px 0;
  }

  .winners_list_container {
    background: #fff;
    padding: 20px 0;
  }

  table {
    border: none;
    padding: 0;
  }

  table tr {
    border: none;
    display: block;
    margin-bottom: 0.625em;
    padding: 0;
  }

  .winners_list_reward {
    border-left: none;
  }

  .winners_list_container table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  table td {
    /* border-bottom: 1px solid #ddd; */
    display: block;
    font-size: 14px;
    text-align: right;
  }

  table td:last-child {
    border-bottom: 0;
  }
  table {
    width: 100%;
  }
}

/* Latest Winners */

.latest_winners_wrap {
  background: #fff;
  padding: 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.latest_winners_row {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px #333300 solid;
  padding-bottom: 20px;
}

.latest_winners_row_split {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 0 20px;
}

.latest_winners_row_split img {
  width: 40px;
}

.latest_win_amount {
  font-weight: bold;
  font-size: 18px;
}

.latest_win_date {
  font-size: 18px;
  color: #909090;
}

.latest_win_phone {
  font-size: 18px;
}

@media screen and (max-width: 350px) {
  .latest_winners_wrap {
    width: 100%;
  }
}

/* About Page */

.about_text {
  margin-top: 170px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #003333;
  padding: 50px;
}

.about_text div {
  max-width: 900px;
  
}

/* Cashout List Table */

#cashout {
  margin-top: 70px;
}

.cashout_list_container {
  background: #fff;
  padding: 50px 100px;
  width: 80%;
  margin-top: 100px;
}

#cashout h2 {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #333300;
  margin-bottom: 40px;
}

.cashout_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cashout_input_group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cashout_input_group:nth-child(4) {
  margin-bottom: 50px;
}

.cashout_input_group p {
  font-weight: 800;
  color: #333300;
  margin-bottom: 5px;
}

.cashout_input_group input,
.cashout_input_group select {
  width: 100%;
  height: 50px;
  border: 2px solid #333300;
  border-radius: 10px;
  padding-left: 20px;
}

.cashout_input_group .input::placeholder {
  color: #333300;
}

@media screen and (max-width: 700px) {
  .cashout_list_container {
    padding: 50px;
    width: 100%;
  }
}

@media screen and (max-width: 430px) {
  .cashout_list_container {
    padding: 50px 20px;
    width: 100%;
  }
}

@media (max-width: 470px) {
  section {
    margin-bottom: 100px;
  }
}

/* Dashboard */

.dash_cards {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
  

}

.dash_card {
  cursor: pointer;
  background-color: #003333;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.dash_card img:hover {
  transform: translateY(-5px);
}

.dash_card img {
  width: 250px;
  transition: 0.3s;
  border-radius: 10px;
  
}

.dash_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  max-width: 1400px;
}

.dash_header {
  text-align: left;
  color: #fff;
  font-size: 24px;
}

.dash_header span {
  font-weight: bold;
}

.dash_header h3 {
  text-decoration: underline !important;
}

.dash_header p {
  font-size: 24px;
  margin-top: 10px;
}

.user_icon {
  color: #ffff00;
  font-size: 40px;
}

.dd {
  z-index: 1;
  position: relative;
  display: inline-block;
}

.dd-a {
  position: relative;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
}
.dd input {
  top: 0;
  opacity: 0;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}
.dd input:hover {
  cursor: pointer;
}
.dd input:checked:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.dd input:checked ~ .dd-c {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
}
.dd-a span {
  color: #333300;
}
.dd-c {
  display: block;
  position: absolute;
  top: 50px;
  left: -100px;
  background: white;
  border-radius: 5px;
  padding: 10px 20px;
  height: auto;
  transform: scaleY(0);
  transform-origin: top left;
  transition-duration: 0.2s;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: top left;
  -webkit-transition-duration: 0.2s;
}

.dd-c_row {
  margin-bottom: 5px;
  word-break: keep-all;
  white-space: nowrap;
  display: block;
  position: relative;
}
.dd-c_row a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 5px;
  background: white;
  color: #333300;
}
/* .dd-c_row:nth-child(1) {
  border-bottom: 1px solid #333300;
} */

.dd-c_row a:hover span {
  color: #333300;
}

.notif_col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 0;
}

.notif_row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 200px;
}

.notif_row_split {
  display: flex;
  flex-direction: column;
}

.notif_row_split img {
  width: 30px;
  margin-bottom: 10px;
}

.notif_header {
  font-size: 18px;
  font-weight: bold;
}

.notif_phone,
.notif_amount {
  font-size: 18px;
}

.notif_time {
  font-size: 16px;
  color: #909090;
}

@media (max-width: 991px) {
  .dash_cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .dash_img {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .dash_card img {
    width: 200px;
  }
}
@media (max-width: 470px) {
  .dash_card img {
    width: 150px;
  }
}
@media (max-width: 440px) {
  .dash_cards {
    gap: 10px;
  }
}

/* Profile */

#profile {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding-top: 150px;
  background: #333300;
}

#profile h3 {
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline !important;
}

.profile_header {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  width: fit-content;
}

.profile_header::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 2px;
  bottom: 20px;
}

.profile_header label {
  position: relative;
  width: 300px;
}

.profile_header_slider {
  position: absolute;
  background: #ccff66;
  width: 130px;
  height: 10px;
  border-radius: 20px;
  left: 0;
  bottom: 16px;
  transition: 0.3s;
  z-index: 1;
}

#profile .profile_form {
  width: 100%;
  margin-top: 40px;
}

.profile_form .radio {
  display: none;
}
.profile_form .tab {
  border: 1px solid #333300;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  user-select: none;
  cursor: pointer;
  color: #333300;
}

.profile_form .form_wrap {
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin-top: 40px;
}
.profile_form .form_wrap .form_field {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}

.profile_form .tab.info_tab {
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.profile_form .tab.password_tab {
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.profile_form #info:checked ~ .form_wrap .password_form,
.profile_form #info:checked ~ .form_wrap .account_form {
  display: none;
}

.profile_form #info:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(0); */
  left: 0;
}

.profile_form #password:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(150%); */
  left: 34%;
}

.profile_form #account:checked ~ .profile_header .profile_header_slider {
  /* transform: translateX(300%); */
  left: 68%;
}

.profile_form .info_tab,
.profile_form .password_tab,
.profile_form .account_tab {
  color: #fff;
  text-transform: uppercase;
  text-align: left;
}
.profile_form #info:checked ~ .profile_header .info_tab {
  color: #ccff66;
}

.profile_form #password:checked ~ .profile_header .password_tab {
  color: #ccff66;
}

.profile_form #account:checked ~ .profile_header .account_tab {
  color: #ccff66;
}

.profile_form #info:checked ~ .info_tab {
  border-color: transparent;
  background: #333300;
  z-index: 1;
  color: white;
}
.profile_form #info:checked ~ .title .password,
.profile_form #info:checked ~ .title .account {
  display: none;
}
.profile_form #info:checked ~ .form_wrap {
  transform: translateX(0);
}
.profile_form #info:checked ~ .form_wrap .password_form,
.profile_form #info:checked ~ .form_wrap .account_form {
  opacity: 0;
}

.profile_form #password:checked ~ .password_tab {
  border-color: transparent;
  background: #333300;
  z-index: 1;
  color: white;
}

.profile_form #account:checked ~ .account_tab {
  border-color: transparent;
  background: #333300;
  z-index: 1;
  color: white;
}
.profile_form #password:checked ~ .title .info,
.profile_form #password:checked ~ .title .account {
  display: none;
}
.profile_form #account:checked ~ .title .info,
.profile_form #account:checked ~ .title .password {
  display: none;
}
.profile_form #password:checked ~ .form_wrap {
  transform: translateX(-100%);
}
.profile_form #account:checked ~ .form_wrap {
  transform: translateX(-200%);
}
.profile_form #password:checked ~ .form_wrap .info_form,
.profile_form #password:checked ~ .form_wrap .account_form {
  opacity: 0;
}
.profile_form #account:checked ~ .form_wrap .info_form,
.profile_form #account:checked ~ .form_wrap .password_form {
  opacity: 0;
}

#profile .profile_form .form_wrap .form_field .input_group {
  width: 100%;
  margin-bottom: 30px;
}
#profile .profile_form .form_wrap .form_field .input_group select {
  width: 100%;
  border: 1px solid #ffffff;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  color: #fff;
}
#profile .profile_form .form_wrap .form_field .input_group select option {
  color: #000;
}
#profile .profile_form .form_wrap .form_field .input_group .input {
  width: 100%;
  border: 1px solid #ffffff;
  background: transparent;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
  color: #fff;
}
#profile .profile_form .form_wrap .form_field .input_group .input::placeholder {
  color: #ffffff;
  font-weight: bold;
}

#profile .profile_form .form_wrap .form_field .input_group p {
  line-height: 20px;
  color: #fff;
}

.profile_update_btn {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: #ccff66;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
}

@media (max-width: 1000px) {
  .profile_header {
    flex-direction: column;
    gap: 0;
  }
  .profile_header label {
    margin-bottom: -20px !important;
  }
  .profile_header::after {
    display: none;
  }

  .profile_header_slider {
    display: none;
  }
}

/* Support */

.support_form {
  margin-top: 50px;
}

.category_container{
  width: 80%;
  background: #fff !important;
  color: #333300 !important;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;

}

/* .support_form .input_group {
  width: 100%;
  margin-bottom: 30px;
}
.support_form .input_group select {
  width: 100%;
  background: #fff !important;
  color: #333300 !important;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group select option {
  color: #000;
}
.support_form .input_group .support_input {
  width: 100%;
  background: #fff;
  color: #333300;
  height: 60px;
  padding: 0 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group .support_input::placeholder {
  color: #333300;
}
.support_form .input_group .support_textarea {
  width: 100%;
  background: #fff;
  color: #333300;
  height: 200px;
  padding: 15px;
  outline: none;
  transition: all 0.3s linear;
}
.support_form .input_group .support_textarea::placeholder {
  color: #333300;
}

.support_form .input_group p {
  line-height: 20px;
  color: #fff;
} */

/* Subscribe */

.subscribe {
  margin: 60px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe p {
  /* max-width: 600px; */
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.subscribe p span {
  font-weight: 800;
}

.subscribe button {
  background: #ccff66;
  color: #333300;
  text-transform: uppercase;
  width: 400px;
  height: 60px;
  font-weight: 800;
  font-size: 24px;
  border-radius: 10px;
  margin: 30px auto;
}

@media (max-width: 460px) {
  .subscribe button {
    width: 250px;
  }
  .container_wrap {
    margin: 0 20px;
  }
  .subscribe p {
    font-size: 16px;
  }
  .subscribe {
    margin: 20px 20px 0 20px;
  }
}

@media (max-width: 390px) {
  label .logo {
    width: 80px;
    padding-top: 15px;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;
  }
}

@media (max-width: 380px) {
  .subscribe button {
    width: 250px;
  }
  .subscribe {
    padding: 20px 20px 0 20px;
  }
}

/* Payment History */

.Time{
  color: grey;
  place-items: left;
}

.column{
  display: flex;
  gap: 50px;
  flex-direction: left;
}

.Colmn_1{
  display: flex;
  gap: 60px;
}

.Colmn_2{
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  width: 600px;
  font-weight: 400;
  box-shadow: 5px 5px 5px lightblue;
}

.failed{
  color: red;
}

.succeed{
  color: green;
}

.date{
  display: flex;
}

.date p{
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  color: blue;
  font-weight: 400;
  box-shadow: 5px 5px 5px lightblue;
}

.date p6{
  margin: 15px;
}


#payment_history {
  background: #D0EBE8;
  margin: 150px auto;
  display: grid;
  place-items: center;
}

#payment_history h2 {
  color: #003333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline !important;
}

.payment_container_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100vmin;
  height: fit-content;
  margin: 50px auto 0 auto;
}

.payment_container {
  width: 100%;
  background: #005454;
  padding: 30px;
}

.payment_hst_play_container {
  width: 100%;
  background: #003333;
  padding: 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.payment_hst_play_container h4 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.payment_container h4 {
  font-weight: bold;
  text-transform: uppercase;
}

.active_ticket {
  border-bottom: 1px solid #333300;
  padding: 0 30px 20px 30px;
  color: #fff;
}

.active_ticket_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 300px;
}

.ticket_history {
  padding: 30px 30px 0 30px;
  color: #fff;
}

.ticket_history_split {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.col1,
.col2,
.col3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.col1 span,
.col2 span,
.col3 span {
  padding: 10px 0 10px 20px;
}

.col1 span:nth-child(odd) {
  background: #6FA1A1;
}
.col2 span:nth-child(odd) {
  background: #669999;
}

.col1 span:nth-child(even) {
  background: #D0EBE8;
  color: #003333;
}
.col2 span:nth-child(even) {
  background: #B6D9D5;
  color: #003333;
}

.col_head {
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.loss_icon {
  color: #fff;
}

.win_col {
  background: #99cc33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  color: #003333;
  position: relative;
}

.win_col::before {
  font-family: "FontAwesome";
  content: "\f091";
  position: absolute;
  right: 20px;
  color: #003333;
}

.loss_col::before {
  font-family: "FontAwesome";
  content: "\f057";
  position: absolute;
  right: 20px;
  color: #fff;
}

.loss_col {
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  border-bottom: 1px solid #fff;
  position: relative;
  color: #fff;
}

.view_all_btn {
  text-transform: uppercase;
  color: #B0EBE8;
  border: 1px solid #333300;
  padding: 10px 30px;
  background: transparent;
  font-weight: 800;
  margin: 30px auto 10px auto;
  font-size: 18px;
  border-radius: 10px;
}

@media (max-width: 840px) {
  .active_ticket_split {
    gap: 20px;
  }
}

@media (max-width: 730px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 50px;
  }
}

@media (max-width: 545px) {
  .col1 p:nth-child(1) {
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 460px) {
  .draw_container_wrap {
    margin: 50px auto;
  }
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 10px;
  }
}
@media (max-width: 360px) {
  .draw_container,
  .draw_hst_play_container {
    padding: 30px 0 !important;
  }
}


@media (max-width: 325px) {
  .Time{
    color: grey;
    place-items: left;
  }
  
  .Colmn_1{
    display: flex;
    gap: 20px;
    font-size: 14px;
  }
  
  .Colmn_2{
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 320px;
    font-weight: 400;
    font-size: 12px;
    box-shadow: 2px 2px 2px lightblue;
  }

  .colmn_2 img{
    width: 30px
  }
  
  .date{
    display: flex;
  }
  
  .date p{
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 5px 5px 5px lightblue;
  }
  
  }

  @media (max-width: 350px) {
    
    .Colmn_1{
      display: flex;
      gap: 20px;
      font-size: 14px;
    }
    
    .Colmn_2{
      display: flex;
      gap: 10px;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      width: 320px;
      font-weight: 400;
      font-size: 12px;
      box-shadow: 2px 2px 2px lightblue;
    }
  
    .colmn_2 img{
      width: 30px
    }
    
    .date{
      display: flex;
    }
    
    .date p{
      padding: 5px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 400;
      box-shadow: 5px 5px 5px lightblue;
    }
    
    }

    @media (max-width: 360px) {
      
      .Colmn_1{
        display: flex;
        gap: 20px;
        font-size: 14px;
      }
      
      .Colmn_2{
        display: flex;
        gap: 10px;
        background: #fff;
        padding: 10px;
        border-radius: 5px;
        width: 320px;
        font-weight: 400;
        font-size: 12px;
        box-shadow: 2px 2px 2px lightblue;
      }
    
      .colmn_2 img{
        width: 30px
      }
      
      .date{
        display: flex;
      }
      
      .date p{
        font-size: 14px;
        font-weight: 400;
        box-shadow: 5px 5px 5px lightblue;
      }
      
      }

      @media (max-width: 380px) {
        
        .Colmn_1{
          display: flex;
          gap: 20px;
          font-size: 14px;
        }
        
        .Colmn_2{
          display: flex;
          gap: 10px;
          background: #fff;
          padding: 10px;
          border-radius: 5px;
          width: 320px;
          font-weight: 400;
          font-size: 12px;
          box-shadow: 2px 2px 2px lightblue;
        }
      
        .colmn_2 img{
          width: 30px
        }
        
        .date{
          display: flex;
        }
        
        .date p{
          font-size: 14px;
          font-weight: 400;
          box-shadow: 5px 5px 5px lightblue;
        }
        
        }

        @media (max-width: 400px) {
          
          .Colmn_1{
            display: flex;
            gap: 20px;
            font-size: 14px;
          }
          
          .Colmn_2{
            display: flex;
            gap: 10px;
            background: #fff;
            padding: 10px;
            border-radius: 5px;
            width: 350px;
            font-weight: 400;
            font-size: 12px;
            box-shadow: 2px 2px 2px lightblue;
          }
        
          .colmn_2 img{
            width: 30px
          }
          
          .date{
            display: flex;
          }
          
          .date p{
            font-size: 14px;
            font-weight: 400;
            box-shadow: 5px 5px 5px lightblue;
          }
          
          }

@media (max-width: 420px) {
          
  .Colmn_1{
  display: flex;
  gap: 20px;
  font-size: 14px;
}
            
.Colmn_2{
    gap: 10px;
    border-radius: 5px;
    width: 350px;
    font-weight: 400;
    font-size: 12px;
    box-shadow: 2px 2px 2px lightblue;
}
          
.colmn_2 img{
  width: 30px
}

.date p{
  font-size: 14px;
  font-weight: 400;
  box-shadow: 5px 5px 5px lightblue;
 }
            
}

@media (max-width: 450px) {
          
  .Colmn_1{
  display: flex;
  gap: 20px;
  font-size: 14px;
}
            
.Colmn_2{
    gap: 10px;
    border-radius: 5px;
    width: 350px;
    font-weight: 400;
    font-size: 12px;
    box-shadow: 2px 2px 2px lightblue;
}
          
.colmn_2 img{
  width: 30px
}

.date p{
  font-size: 14px;
  font-weight: 400;
  box-shadow: 5px 5px 5px lightblue;
 }
            
}

