.deadlineText,
cfoutput,
.loginButton {
  display: none;
}

.playerBetCard,
.playerNameMini,
.eventTeam {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgb(98, 13, 42);
  cursor: default;
  scroll-behavior: smooth;
}

cfquery {
  display: none;
}

a {
  text-decoration: none;
}

li, ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  height: 100%;
}

body.block {
  overflow: hidden;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 60px;
  font-weight: 900;
}

h2 {
  font-size: 30px;
  font-weight: 800;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

/* bodyWrapper */

.bodyWrapper {
  margin: 0 auto;
  height: 100%;
  max-width: 1440px;
}

.container {
  padding: 15px 15px;
  max-width: 1200px;
  width: 100%;
}

/* header */

header {
  position: fixed;
  display: flex;
  left: 0;
  top: 0;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: rgba(241, 241, 241, 0);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  z-index: 9000;
}

.headerLogo img {
  cursor: pointer;
  height: 30px;
  transition: 0.3s;
  opacity: 1;
  visibility: hidden;
}

.headerLogo.active img {
  opacity: 0;
}

.mobileBurger {
  height: 20px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: 0.3s;
}

.str {
  display: block;
  background-color: #610d29;
  border-radius: 5px;
  height: 3px;
  width: 100%;
  transition: 0.3s;
  opacity: 1;
  transform-origin: center;
}

.mobileBurger.active {
  transform:  translate(-30px, 25px);
}

.mobileBurger.active .str1 {
  transform: translateY(10px) rotate(45deg);
}

.mobileBurger.active .str2 {
  opacity: 0;
}

.mobileBurger.active .str3 {
  transform: translateY(-7px) rotate(-45deg);
}


.headerContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
    z-index: 9999;
}

.nav {
  display: flex;
  width: 100%;
  flex: 1 1 100%;
  justify-content: center;
  z-index: 9999;
}

.navUl {
  position: fixed;
  flex-direction: column;
  display: flex;
  min-width: 300px;
  width: calc(100% - 50px);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background-color: rgb(142, 209, 171);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  z-index: 9999;
  padding: 70px 0px 40px;
  border-radius: 30px;
  top: 0px;
  left: 0;
  transition: 0.3s;
  transform: translateY(-150%);
  margin: 25px;
}

.navUl.active {
  transform: translateY(0px);
}

.navLi a{
  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
}

/* main */

main {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}


/* ------------------------------------ hello section */

.helloSection {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  background-image: url(../img/qatar_logo_big.jpeg);
  background-size: cover;
  background-position: 100% 0%;
}

.helloSectionContainer {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 85px;
  flex-direction: column;
}

/* leftColumn */

.leftColumn {
  display: flex;
  height: 50px;
  position: fixed;
  left: 0px;
  top: 00px;
  width: 100%;
   z-index: 3300;
}

.deadlineBlock {
  flex-direction: row;
  height: 50px;
  display: flex;
  background-color: rgb(142, 209, 171);
  margin-top: 0px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
  z-index: 3300;

}

.deadlineBlock h1 {
  font-size: 16px;
}

.deadlineTitle {
  color: rgba(98, 13, 42, 1);
}

.deadlineTime {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
  margin-right: 35px;
}

.deadlineSection {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.deadlineText {
  color: rgb(98, 13, 42);
  font-size: 14px;
  font-weight: bold;
}

.deadlineTextMobile {
  font-weight: 900;
  font-size: 16px;
}

.deadlineNum {
  font-size: 14px;
  color: rgb(142, 209, 171);
  font-weight: 900;
  background-color: rgb(98, 13, 42);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 5px 0px;
  line-height: 23px;
}

/* rightColumn */

.rightColumn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  height: 100%;
}

.rightColumnSection {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #610d29;
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.section1 {
  margin-top: 85px;
}

/* scheduleMiniBlock */

.scheduleMiniBlock {
  width: 100%;
  position: relative;
}

.rightColumnSectionTitle {
  border-radius: 20px;
  background-color: rgb(241, 241, 241);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
}



.matchCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.matchCardCenterBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.matchCard .teamBlock {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.team {
  font-size: 12px;
  white-space: nowrap;
}

.scheduleLi {
  overflow: hidden;

  padding-bottom: 15px;
  transition: 0.3s;
  width: 100%;
}

.scheduleLi.hide {
display: none;
}

.scoreMini {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-spacing: 0px;
}

.scoreMini tbody tr {
  width: 50px;
  display: flex;
  justify-content: space-between;
}

.scoreMini tbody tr td {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scoreInput {
  width: 22px;
  height: 35px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: rgba(241, 241, 241, 1);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 35px;
  padding: 0px;
}

.scheduleMiniButton {
  margin-top: 10px;
  width: 115px;
}

.matchCardBottomBlock {
  padding-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.matchCardBottomBlock span {
  font-size: 12px;
  color: rgb(241, 241, 241);
}

.matchInfo, .matchDate {
  width: 40%;
}

.matchInfo {
  text-align: end;
}

.scheduleMiniUl {
  padding-bottom: 0px;
  width: 100%;
  position: relative;
}

/* tableMini */

.tableMini {
  width: 100%;
  position: relative;
}

.tableMiniUl {
  width: 100%;
}

.tableMiniLi:last-child,
.tableMiniLi:first-child {
 margin: 0;
}

.tableMiniLi:first-child .playerCard {
  background-color: rgb(142, 209, 171);
}

.tableMiniLi {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 15px 0px;
}

.playerNameMini {
  padding-left: 10px;
  flex-shrink: 1;
}

.playerPointsMini {
  padding-left: 5px;
margin-left: auto;
}

/* ------------------------------------ MATCHDAY section */

.matchdaySection {
  background-color: rgb(241, 241, 241);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}

.matchdayTitle {
  text-align: center;
  z-index: 1;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 100px;
  margin-top: -35px;
  padding: 15px;
  width: 100%;
  color: #610d29;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  margin-bottom: 35px;
}

.matchdayBlock {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 50px;

}

.matchDayEvent {
  background-color: rgba(241, 241, 241, 1);
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  width: 100%;
  background-color: #610d29;
  max-width: 500px;
}

.matchDayEvent.hide {
  display: none;
}

.matchDayEventHeader {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(241, 241, 241);
  border-radius: 20px;
  padding: 15px 5px;
  gap: 5px;
}

.scoreSection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eventInfoSection {
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventTeam {
  font-size: 16px;
  font-weight: bolder;
  width: 100%;
  padding: 0px 5px;
}

.eventFirstTeam {
  text-align: end;
  margin-right: 10px;
}

.eventSecondTeam {
  text-align: left;
  margin-left: 10px;
}


.eventInfo {
  font-size: 12px;
  font-weight: bold;
  display: block;
  color: #610d29;
}

.eventGroup {
  text-align: end;
}


.eventGroup,
.eventDate {
  width: 40%;
}

.eventScore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  text-align: center;
}

.eventScore span {
  display: block;
  font-size: 40px;
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  text-align: center;
}

.matchDayEvent .matchCardBottomBlock {
  padding-bottom: 5px;
  padding-top: 0px;
}

.matchDayEvent .matchCardCenterBlock {
  width: 100%;
  gap: 10px;
}

.playersBetsUl {
  display: flex;
  flex-direction: column;
  padding: 25px 10px;
  gap: 15px;
}

.playersBetsLi {
  position: relative;
  width: 100%;
}


.firstTeamMini {
  display: flex;
  justify-content: flex-end;
}

.firstTeamMini span {
  display: block;
}

.matchDayEvent .scoreMini,
.playerBetCard .scoreMini {
  width: 50px;
  gap: 5px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  position: relative;
}

li .playerBetCard {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ------------------------------------ Table section */

.tableSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #610d29;
  padding-bottom: 50px;
}

.tableTitle {
  text-align: center;
  z-index: 1;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 100px;
  margin-top: -50px;
  padding: 30px;
  width: 100%;
  color: rgb(98, 13, 42);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  margin-bottom: 50px;
}

.mainTableWrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0px 15px;
}

.mainTable {
  display: flex;
  width: 100%;
  overflow-x: auto;
  border-radius: 5px;
}

.bigTable {
  width: 100%;
  border-collapse: collapse;
}

.bigTable tr,
.bigTable th tr {
  background-color: rgb(241, 241, 241);
  height: 30px;
  padding-left: 150px;
  padding-right: 5px;
  transition: .3s;
  cursor: pointer;
  display: flex;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  border-radius: 5px;
  margin-bottom: 15px;
  line-height: 30px;
}

.bigTable tbody tr:last-child {
  margin: 0;
}

.bigTable tbody tr {

}



.bigTable td {
  width: 40px;
  text-align: center;
  padding: 0px 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
}

.bigTable tr:hover {
  background-color: rgb(212, 232, 139);
}

.bigTable td.tdName {
  text-align: left;
}

.bigTable tbody tr:first-child {
  background-color: rgb(142, 209, 171);
}


tr.myTr {
  background-color: rgb(212, 232, 139);
}

td.tdMain, 
.bigTable th.tdMain {
  border-radius: 5px;
  background-color: rgb(241, 241, 241);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  position: absolute;
  left: 10px;
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5px;
  height: 30px;
}

.tdMain .mainPosition {
  font-weight: bold;
  width: 35px;
  text-align: left;
  padding-left: 5px;
}

.tdMain .mainName {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}

.tdMain .mainPoints {
  font-weight: bold;
  text-align: left;
  width: 35px;
  padding-right: 5px;
}

th.tdMain .mainName,
th.tdMain .mainPoints {
  font-size: 14px;
}

th.tdMain .mainPosition {
  display: none;
}

th.tdMain .mainName {
  padding-left: 22px;
}

.bigTable th {
  font-size: 14px;
  width: 40px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* footer */

footer {
  background-color: rgba(241, 241, 241, 0.7);
  display: flex;
  justify-content: center;
}

.footerContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footerText {
  display: block;
  cursor: pointer;
}

/* -------------------------------------- popups */

.backgroundBlur {
  z-index: 8000;
  position: fixed;
  display: flex;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0);
  visibility: hidden;
  opacity: 0;
  transition: .5s;
}

.backgroundBlur.active {
  visibility: visible;
  opacity: 1;
  background-color: rgba(241, 241, 241, 0.5);
  backdrop-filter: blur(4px);
}

.popupContainer {
  z-index: 201;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0);
  transition: .5s;
  transform: scale(0);
  opacity: 0;
}

.popupContainer.active {
  opacity: 1;
  transform: scale(1);
}

.popup {
  overflow: hidden;
  position: relative;
  display: flex;
  max-width: 800px;
  height: 404px;
  width: 100%;
  border-radius: 30px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
}

.loginRegister {
  background-color: rgba(98, 13, 41, 1);
  height: 100%;
  width: 100%;
  transition: .3s;
  order: 1;
}

.popupContainer.register .loginRegister {
  transform: translate(100%, 0px);
}

.changePopup {
  background-color: rgb(241, 241, 241);
  height: 100%;
  width: 100%;
  transition: .3s;
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popupContainer.register .changePopup {
  transform: translate(-100%, 0px);
}

.loginForm {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.loginTitle {
  color: rgb(241, 241, 241);
  transition: 0.5s;
  overflow: hidden;
  height: 49px;
}

.loginTitle.register {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: 0;
}

.popupContainer.register .loginTitle.register {
  overflow: hidden;
  height: 49px;
  opacity: 1;
  visibility: 1;
}

.popupContainer.register .loginTitle.hello {
  height: 0;
  opacity: 0;
  visibility: 0;
}

.changePopupTitle {
  display: block;
  text-align: center;
  transition: .5s;
  overflow: hidden;
  opacity: 1;
  visibility: 1;
  height: 45px;
}

.changePopupTitle.have {
  opacity: 0;
  visibility: 0;
  height: 0px;
}

.popupContainer.register .changePopupTitle.have {
  opacity: 1;
  visibility: 1;
  height: 90px;
}

.popupContainer.register .changePopupTitle.dontHave {
  opacity: 0;
  visibility: 0;
  height: 0px; 
}

.loginButtonText {
  display: block;
  overflow: hidden;
  transition: .5s;
  height: 100%;
}

.signUpText {
  opacity: 0;
  visibility: 0;
  height: 0px;
}

.popupContainer.register .signUpText {
  opacity: 1;
  visibility: 1;
  height: 100%;
}

.popupContainer.register .registerText {
  opacity: 0;
  visibility: 0;
  height: 0px;
}

.formSpan {
  color: rgb(241, 241, 241);
  font-size: 14px;
  margin-bottom: 5px;
}

.loginFormInput {
  width: 100%;
  border-radius: 7px;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
  background-color: rgba(241, 241, 241, 1);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
}

.formContainer {
  margin-top: 15px;
  width: 100%;
}

.loginContainer {
  margin-top: auto;
}

.popupContainer.register .loginContainer {
  margin-top: 0px;
}

.passwordContainer {
  margin-bottom: auto;
}

.bigWhiteButton.loginFormButton {
  background-color: rgb(212, 232, 139);
  margin-top: auto;
  height: 50px;
  overflow: hidden;
}

.emailContainer {
  overflow: hidden;
  height: 0;
  visibility: 0;
  opacity: 0;
  transition: .5s;
}

.popupContainer.register .emailContainer {
  height: 63px;
  visibility: 1;
  opacity: 1;
  transition: .5s;
}

.changePopupContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.changePopupButton.bigWhiteButton {
  background-color: rgb(142, 209, 171);
  height: 50px;
  overflow: hidden;
}

/* info */

.infoContainer {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: scale(0); */
}

.infoContainer.active {
  opacity: 1;
  visibility: visible;
  /* transform: scale(1); */
}

.infoAlert {
  background-color: rgb(142, 209, 171);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  border-radius: 30px;
  width: 350px;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transform: scale(0);
  transition: 0.5s;
}

.infoContainer.active .infoAlert {
    transform: scale(1);
}

.infoTextBlock {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.infoText {
  font-size: 25px;
  font-weight: 600;
  padding: 30px 0px;
  display: block;
  text-align: center;
}

.okButton.bigRedButton {
  color: rgb(142, 209, 171);
}

.okButton.bigRedButton:hover {
  background-color: #610d29;
  color: rgb(142, 209, 171);
}

/* blocks */

.miniBlock {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background:none;
  padding: 25px 10px;

}

.teamBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 5px;
  min-height: 30px;
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: bold;
  padding: 0px 10px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  flex-wrap: 0;
}

.playerCard {
  background-color: rgba(241, 241, 241, 1);
  border-radius: 5px;
  min-height: 30px;
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: bold;
  padding: 0px 10px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  font-size: 14px;
}

.playerBetCard .playerCard {
  width: calc(100% - 59px);
}

.playersBetsLi:first-child .playerCard {
  background-color: rgb(142, 209, 171);
}

.myPlayerCard {
  background-color: rgb(212, 232, 139);
}


/* buttons */


.bigRedButton {
  background-color: #610d29;
  color: rgb(241, 241, 241);
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  font-weight: bold;
  border: none;
  outline: none;
}

.bigRedButton:hover {
  background-color: rgb(212, 232, 139);
  color: rgb(98, 13, 42);
  transform: scale(0.9);
}

/*  */
.bigWhiteButton {
  background-color: rgb(241, 241, 241);
  color: rgb(98, 13, 42);
  padding: 10px 30px;
  border-radius: 15px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  border: none;
  outline: none;
  font-size: 16px;
}

.bigWhiteButton:hover {
  background-color: rgb(212, 232, 139);
  transform: scale(0.9);
}


/* animation */

.animationLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.animationLinks:hover {
  color: rgba(98, 13, 42, 1);
  transform: scale(0.9);
}


.animationLinks::after {
  content: '';
  background-color: rgb(98, 13, 42);
  width: 0px;
  height: 1px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.3s;
}

.animationLinks:hover::after {
  opacity: 1;
  width: 100%;
  color: rgba(98, 13, 42, 1);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

/* LOGIN */
.indexHtml {
  width: 100%;
  height: 100%;
  position: relative;
}

.loginBody {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.indexContainer {
  margin: 60px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;


}

.inputWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 320px;
}

.remember {
  margin-top: 20px;
  cursor: pointer;
  flex-direction: row;
  transition: .3s;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.remember:hover {}

.checkbox {
  display: none;
}

.rememberBlock {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}


.remBig {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  transition: .3s;
  border-radius: 20px;
}

.remSmall {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: .3s;
  border-radius: 20px;
  background-color: #610d29;
  opacity: 0;
  transform: scale(0);
}

.checkbox:checked+.remSmall {
  transform: scale(1);
  opacity: 1;

}


.indexInput {
  border-radius: 7px;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: .3s;
  width: 200px;
}

.indexInput:hover {
  background-color: rgb(212, 232, 139)
}

.frgtps {
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.frgtpsWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.frgtpsWrapper::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #610d29;
  margin-bottom: 10px;
}

.indexTitle {
  font-size: 56px;
}

.date-filter {
    margin: 0px 0px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.date-filter__date-box {
    
}

.date-filter__user-id {
    
}

.date-filter__start-date {
    
}

.date-filter__end-date {
    
}

.date-input {
    
}

.date-filter__button {
    
}