/* RESET RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

:root {
  --page-header-bgColor: #1D2826;
  --page-header-bgColor-hover: #1d2636;
  --page-header-txtColor: #dde9f8;
  --page-header-headingColor: #7889a4;
  --page-header-width: 250px;
  --page-content-bgColor: #0D1413;
  --page-content-txtColor: #171616;
  --page-content-blockColor: #fff;
  --white: #fff;
  --black: #333;
  --blue: #00b9eb;
  --red: #ec1848;
  --border-radius: 4px;
  --box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.075);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
p {
  margin-bottom: 0!important;
}

.input-group-append .btn, .input-group-prepend .btn {
  position: relative;
  z-index: 0;
}
/* 
ul {
  list-style: none;
} */

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  cursor: pointer;
}
/* 
input {
  -webkit-appearance: none;
} */

button,
input {
  border: none;
}

svg {
  display: block;
}

body {
  font: 16px/1.5 "Lato", sans-serif;
  background-color: #0D1413;
}


/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding-top: 10px;
  width: var(--page-header-width);
  color: var(--page-header-txtColor);
  background: var(--page-header-bgColor);
}

.page-header nav {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.page-header .logo {
  display: block;
  max-width: 120px;
  margin: 0 15px;
}

.page-header hr {
  background-color: #4D4D4D;
}

.page-header .toggle-mob-menu {
  display: none;
  margin-left: 5px;
  color: white!important;
  background: var(--page-header-bgColor);
  border-radius: var(--border-radius);

}

.smarterProfile {
  display: flex;
  justify-content: center;
  width: 100%;
}

.smarterProfile img {
  width: 25%;
}

nav h2 {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-size: 25.63px;
  line-height: 30px;
  color: #FFFFFF;
  padding-top: 1%;
}

.page-header .admin-menu {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 160px;

  overflow-y: auto;
}

.page-header .admin-menu::-webkit-scrollbar {
  width: 5px;
}

.page-header .admin-menu::-webkit-scrollbar-thumb {
  background: #151D1B;
  border-radius: 10px;
}

.page-header .admin-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(4, 170, 4, 0.8);
}

.page-header .admin-menu li:nth-last-child(2) {
  margin-bottom: 35px;
}

.page-header .admin-menu li:last-child {
  margin-top: auto;
  margin-bottom: 20px;
}

.page-header .admin-menu li > * {
  width: 100%;
  padding: 10px 15px;
}

.page-header .admin-menu li a i {
  margin-right: 15px;
}

.page-header .admin-menu .menu-heading h3 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--page-header-headingColor);
}

.page-header .admin-menu svg,i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: rgba(4, 170, 4, 0.8);
  fill: rgba(4, 170, 4, 0.8);
  margin-right: 10px;
  transition: fill 0.2s;
}

.page-header .admin-menu a,
.page-header .admin-menu button {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.page-header .admin-menu a:hover,
.page-header .admin-menu a:focus,
.page-header .admin-menu button:hover,
.page-header .admin-menu button:focus {
  /* background: var(--page-header-bgColor-hover); */
  background: #151D1B;
  /* color: var(--blue); */
  outline: none;
}

.page-header .admin-menu .dropdown_sidebar {
  background-color: var(--page-header-bgColor);
}
.page-header .admin-menu .dropdown_sidebar:hover {
  border: none;
  text-transform: none;
}
.page-header .admin-menu .dropdown_sidebar ul{
  background-color: #151D1B;
  color: white;
  width: 100%;
  /* height: 30vh;
  display: flex;
  justify-content: center;
  flex-direction: column; */
}

.dropdown li {
  cursor: pointer;
}

.page-header .admin-menu .dropdown_sidebar li a{
  text-decoration: none;
  color: white;
}


/* PAGE CONTENT STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-content {
  position: relative;
  left: var(--page-header-width);
  width: calc(100% - var(--page-header-width));
  min-height: 100vh;
  padding: 30px;
  color: var(--page-content-txtColor);
  background: var(--page-content-bgColor);
}

.search-and-user {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 50px;
  align-items: center;
  background: var(--page-content-bgColor);
  margin-bottom: 30px;
}

.search-and-user form {
  position: relative;
}

.search-and-user input[type="search"] {
  width: 100%;
  height: 50px;
  font-size: 1.5rem;
  padding-left: 15px;
  background: var(--page-content-blockColor);
  color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.search-and-user ::placeholder {
  color: var(--page-content-txtColor);
}

.search-and-user form svg {
  width: 26px;
  height: 26px;
  fill: var(--page-content-txtColor);
}

.search-and-user form button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.search-and-user .admin-profile {
  display: flex;
  align-items: center;
}

.search-and-user .admin-profile .greeting {
  margin: 0 10px 0 20px;
}

.search-and-user .admin-profile svg {
  width: 30px;
  height: 30px;
}

.search-and-user .admin-profile .notifications {
  position: relative;
}

.search-and-user .admin-profile .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  color: var(--white);
  background: var(--red);
}

.page-content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.page-content .grid > article {
  display: flex;
  height: 300px;
  background: var(--page-content-blockColor);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.page-content .grid > article:first-child,
.page-content .grid > article:last-child {
  grid-column: 1 / -1;
}


/* Mobile –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 767px) {
  .page-header,
  .page-content {
    position: static;
    width: 100%;
  }
  .page-header nav {
    height: 30px!important;
  }

  .page-header nav .dashboard-menu {
    width: 20px;
  }

  .page-header nav .dashboard-menu a,.smarterProfile,h2 {
    display: none;
  }
   
  .page-header {
    padding: 10px;
  }

  /* logout */

  .dash_logout {
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
  }
  .dash_logout a {  
    width: 100px!important;
    height: 45.05px;
  
    background: none!important;
    opacity: 0.3;
    border-radius: 22.5px;
  }

  .page-header .logo {
    margin: 0;
    height: 35px;
  }

  .page-header .toggle-mob-menu {
    display:block;
    margin-right: 15px;
    color: #0D1413  ;
  }
  
  .page-header .admin-menu {
    position: absolute;
    left:0;
    width: 250px;
    top: 46px;
    margin-top: 0;
    z-index: 2;
    border-radius: var(--border-radius);
    background: var(--page-header-bgColor);
    visibility: hidden;
    opacity: 0;
    transform: scale(0.67);
    transition: all 0.2s;

    transform-origin:left center;
    height: 100vh;
  }

  /* .page-header .admin-menu li:nth-last-child(2) {
    margin-bottom: 12px;
  } */
  
  /* .page-header .admin-menu li:last-child,
  .search-and-user .admin-profile .greeting {
    display: none;
  } */
  
  

  .page-content .grid {
    grid-gap: 10px;
  }

  .search-and-user {
    position: absolute;
    left: 131px;
    top: 10px;
    padding: 0;
    grid-column-gap: 5px;
    width: calc(100% - 141px);
    border-radius: var(--border-radius);
    background: transparent;
  }

}

@media screen and (max-width: 400px) {
  .page-content .grid > article {
    grid-column: 1 / -1;
  }
}


/* BODY CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.mob-menu-opened .toggle-mob-menu i {
  color: white;
  transform: rotate(180deg);
}

.mob-menu-opened .page-header .admin-menu {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .collapsed .page-header {
    width: 40px;
  }

  .collapsed .page-header .admin-menu li > * {
    padding: 10px;
  }

  .collapsed .page-header .logo,
  .collapsed .page-header .admin-menu span,
  .collapsed .page-header .admin-menu .menu-heading {
    display: none;
  }

  .collapsed .page-header .admin-menu svg,i {
    margin-right: 0;
  }

  .collapsed .page-header .collapse-btn svg {
    transform: rotate(180deg);
  }

  .collapsed .page-content {
    left: 40px;
    width: calc(100% - 40px);
  }
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  font-size: 0.85rem;
  text-align: right;
  position: fixed;
  bottom: 5px;
  right: 5px;
}

.page-footer span {
  color: var(--red);
}


/* Alert */
.dropdown-menu {
  border: 4px solid red;
}

/* loader */
.divLogo   {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gifLoader {
  display: none;
  position:fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  background-position: 50% 50%;
}

.loader {
  max-width: 15rem;
  width: 100%;
  height: auto;
  stroke-linecap: round;
}


circle {
  fill: none;
  stroke-width: 3.5;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-transform-origin: 170px 170px;
          transform-origin: 170px 170px;
  will-change: transform;
}
circle:nth-of-type(1) {
  stroke-dasharray: 550;
}
circle:nth-of-type(2) {
  stroke-dasharray: 500;
}
circle:nth-of-type(3) {
  stroke-dasharray: 450;
}
circle:nth-of-type(4) {
  stroke-dasharray: 300;
}
circle:nth-of-type(1) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
circle:nth-of-type(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
circle:nth-of-type(3) {
  -webkit-animation-delay: -0.45s;
  -moz-animation-delay:  -0.45s;
          animation-delay: -0.45s;
}
circle:nth-of-type(4) {
  -webkit-animation-delay: -0.6s;
  -moz-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



.dash_logout {
  /* width: 180.2px; */
  /* width: 180.2px;
  height: 60px;
  background: #FF0000; */
  /* opacity: 0.3;
  text-decoration: none;
  color: white !important;
  text-align: center;

  margin-bottom: 5px;
  display: flex;
  justify-content: center; */
/* 
opacity: 0.1;
border-radius: 22.5px; */
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 8%;
}
.dash_logout a {
  /* text-decoration: none;
  color: #fff !important; */

  width: 180.2px;
  height: 45.05px;

  background: #FF0000;
  opacity: 0.3;
  border-radius: 22.5px;
}

.btn_tiraj {
  position: fixed;
  right: 32px;
  top: 16px;
  width: 227px;
  height: 39px;
  color: #fff;

  background: #185443;
  border-radius: 9px;
}
.btn_tiraj:hover {
  color: #fff;
  background: #185443;
  border: none;
  transform: none;
}

.lottery-receipt-total-winner {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  line-height: 30px;

  color: #09900B;
}
.report__card .report_Payed_bg {
  height: 100%;
  position: absolute;
  top: 52%;
}
.report__card .report_Payed_bg h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-size: 200px;
  width: 200px;
  line-height: 121px;
  /* identical to box height */
  color: rgba(4, 170, 4, 0.13);
  transform: rotate(-23.26deg);
  text-transform: uppercase;
}

.report_lost {
  text-decoration: line-through;
}

.report_winner {
  color: #09900B !important;
}

/* Home */
.card_home {
  width: 70%;
  background: #1D2826;
  border-radius: 16px;
  padding: 2%;
  max-height: 158px;
}

.card_home h3 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  order: 0;
  flex-grow: 0;
  margin: 10px 0px;
}
.card_home h5 {

font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 27px;
letter-spacing: 0.03em;

color: #FFFFFF;
flex: none;
order: 1;
flex-grow: 0;
margin: 10px 0px;
}

.card_home p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0px 0px;
}

.card_home_svg img{
  margin-top: -32px;
  width: 75%;
}

.card_draw_home {
  background: #1D2826;
  border-radius: 14px;
  width: 100%;
  /* max-height: 433px; */
  padding: 2%;
  margin-top: 2%;

  display: grid;
  grid-template-columns: 60% 40%; 
  gap: 0px 25px; 
}
.card_draw_home p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}

.card_draw_home h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: #FFFFFF;
}

.card_draw_body div {
  width: 150px;
  height: 150px;
  
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #C3EDBF 0%, #17B808 100%);
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.card_draw_body div p {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 85px;
  line-height: 103px;
  color: #0FB600;
  font-size: 4em;
  margin: 0;
  -webkit-text-stroke: 4px #FFFFFF;
  
  padding: 2%;
}

.card_draw_stats {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card_draw_stats .card_draw {
  border-radius: 10px;
  height: 116px;
  display: flex;
  align-items: center;
  padding: 2%;
  justify-content: center;
}

.card_draw_stats .card_draw .card_draw_b {
  display: flex;
  flex-direction: column;
  margin: 7%;
}

.card_draw_stats .card_draw .card_draw_b h4 {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 22.78px;
  line-height: 30px;
  color: #FFFFFF;
  opacity: 0.7;
}
.card_draw_stats .card_draw .card_draw_b  p{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14.22px;
  line-height: 19px;
  color: #FFFFFF;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .card_draw_home {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }

  .card_draw_stats {
    display: grid;
    grid-template-columns: 40% 30% 30%; 
    gap: 0px 5px;
    width: 100%;
    margin-left: 2%;
  }
  .card_draw_stats .card_draw {
    width: 100%;
  }

  .card_draw_stats .card_draw img {
    width: 25%;
  }



  .report__card .report_Payed_bg {
    height: 100%;
    position: absolute;
    top: 65%;
  }
  .report__card .report_Payed_bg h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 150px;
    line-height: 121px;
    /* identical to box height */
    color: rgba(4, 170, 4, 0.13);
    transform: rotate(-23.26deg);
  }
  /* Home */

  .card_draw_body div {
    width: 30%;
    height: 30%;
  }

  .card_draw_body div p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 103px;
    color: #0FB600;
    font-size: 2em;
    margin: 0;
    -webkit-text-stroke: 2px #FFFFFF;
    padding: 2%;
  }

  .card_home_svg {
    display: none;
  }
  .card_home {
    width: 100%;
  }


  
}


/* App Breakpoint */

@media screen and (max-width: 767px) {
  .userTableWeb {
    display: none !important;
  }

  .userTableMobile .card_mobile_format {
    width: 100%;
    height: 100%;
    background: #1D2826;
    border-radius: 5px;

    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0px;
    grid-auto-flow: row;

    padding: 3%;
    margin-bottom: 3%;
  }

  .userTableMobile .card_mobile_format .card_mobile_label p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 40px;
    color: #FFFFFF;
    opacity: 0.9;
  }

  .userTableMobile .card_mobile_format .card_mobile_infos p {
    line-height: 20px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 40px;
    color: #FFFFFF;
    opacity: 0.7;
    word-break: break-all;
  }
}

@media screen and (min-width: 767px) {
  .userTableMobile {
    display: none;
  }
}
