



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #fff;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

textarea::-webkit-input-placeholder { color: #fff;}
textarea:-moz-placeholder { color: #fff;}
textarea::-moz-placeholder { color: #fff;}
textarea:-ms-input-placeholder { color: #fff;}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #e5e5e5;
  line-height: 1.5;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: calc(100vh - 50px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;  
}

.container-create-btn {
  justify-content: center;
  display: flex;
  margin-top: 40px;

}

.container-login100::before,
.game-container::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.9);
}

.wrap-login100 {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;

  background: #f3e2c4;
  background: -webkit-linear-gradient(top, #f3e2c4, #000000);
  background: -o-linear-gradient(top, #f3e2c4, #000000);
  background: -moz-linear-gradient(top, #f3e2c4, #000000);
  background: linear-gradient(top, #f3e2c4, #000000);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-logo {
  font-size: 60px; 
  color: #333333;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
}

.login100-form-logo img {
  width: 100%;
}

.login100-form-title {
  font-family: Poppins-Medium;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  display: block;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}


/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;

  background: #9152f8;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  color: #fff;
}

.login100-form-btn:hover:before {
  opacity: 0;
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.modal-header {
    justify-content: right;
}
.modal-content {
    text-align: center;
}

.modal-content .lvl-container p,
.modal-content h3 {
    margin: 10px 0;
}


@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------------------------------------------
[ Bull game ]*/

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.game-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: scroll;
  flex-direction: column;
  background-image: url(../images/bg-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  height: 100%;
}

.game-name {
  text-transform: capitalize;
}

.game-stats-container,
.games-container {
  background: #fff;
  width: 90%;
  margin: auto;
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: -5px 5px 5px #999;
}

.games-container:active {
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.games {
  display: flex;
  flex-wrap: wrap;
}

.games-container {
    overflow: hidden;
}
.games-load .games-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
}


.games-container div h3 {    
  height: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #000;
}

.games-container div img{    
  width: 100%;
  margin: 20px 0;
  border-radius: 50%;
}

.info-container {
  height: 300px;
  padding: 20px;
}
.info-container > div{ 
  border-radius: 10px;
}

.info-wraper .countdown-container {
  display: block;
}


.info-table {
  background: #fff;
  width: 90%;
  margin: 15px auto;
  padding: 20px;
  border-radius: 10px;
}
.info-table table {
  width: 100%;
  margin: 10px 0;
}

.info-table table th {    
  text-align: center;
  color: #fff;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  font-size: 20px;
}

.info-table table td {    
  padding: 5px 0;
}


.countdown-container {
  background-color: #ffffff;
  min-width: 500px;
  padding: 0;
  padding-bottom: 50px;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: auto;
  min-height: 670px;
}

.countdown-container h2,
.games-select {
  font-size: 26px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  display: block;
  padding: 20px;
  background-color: #000;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  font-weight: bold;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;

}

.games-select {
  min-width: 500px;
}
.timerDisplay{
    position: relative;
    background: transparent;
    padding: 20px 0 40px 0;
    color: #0381bb;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    font-family: "Roboto mono",monospace;
}
.timer-buttons{
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: space-around;
}
.timer-buttons button{
    width: 120px;
    height: 45px;
    background-color: #205e94;
    color: #ffffff;
    border: none;
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}
.timer-buttons button:nth-last-child(2){
  background-color: #d23332;
}
.timer-buttons button:nth-last-child(1){
  background-color: #20b380;
}
.game .buttons {
     display: grid;
    grid-template-columns:  auto auto auto; /* Single column */
    grid-template-rows: auto auto auto; /* Three rows */
    gap: 10px; /* Adjust as needed */
    padding: 0 20px;
    flex-wrap: wrap;
}
.doubles .game .buttons { 
     grid-template-columns: auto auto auto auto; /* Three rows */
}
.game .buttons button,
.submit_game,
.stats-button {
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 22px;
    background-color: #228B22 ;
    color: #fff;
    line-height: 1.4;
}

.info-buttons {
    margin: auto;
    text-align: center;
    padding: 20px;
    max-width: 360px;
}

.info-buttons h3 {
    text-align: center;
    padding: 20px;
    /* background: #fff; */
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #9152f8;
    background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
    background: -o-linear-gradient(bottom, #7579ff, #b224ef);
    background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
    background: linear-gradient(bottom, #7579ff, #b224ef);
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;

}

.submit_game {
  margin: auto;
}

.game .buttons button:active,
.submit_game:active,
.stats-button:active {
    background-color:#225e22
}

.game .buttons button:disabled {
    opacity: 0.5;
}

.total {
  font-size: 25px;
  font-family: "Roboto mono",monospace;
  color: #000;
  font-weight: bold;
  padding-top: 5px;
}

.total span{ 
    font-size: 30px;
    color: #228B22;
}

.info {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.game-container img{
    width: 400px;
    margin-bottom: 20px;
    border-radius: 200px;

}
.scoring-20 .overlay {
  transform: rotate(-17deg);
}

.scoring-19 .overlay {
    transform: rotate(181deg);
  }

.doubles .timerDisplay {
  padding: 20px 0 10px 0;
}   

.game-image {
    position: relative;
    margin-bottom: 40px
}

.hit svg {
    display: none;
    transform: translate(-10px, -10px);
}

.hit-1 svg {
    position: absolute;
    left: 48%;
    top: 57%;
}
.hit-2 svg {
    position: absolute;
    left: 48%;
    top: 45%;
} 
.hit-3 svg {
    position: absolute;
    left: 48%;
    top: 45%;
}
.hit-3 svg:first-child {
    position: absolute;
    left: 48%;
    top: 57%;
}
.hit-4 svg {
    position: absolute;
    left: 51%;
    top: 46%;
}
.hit-4 svg:first-child {
    position: absolute;
    left: 47%;
    top: 46%;
}
.hit-5 svg {
    position: absolute;
    left: 42%;
    top: 37%;
}
.hit-5 svg:first-child {
    position: absolute;
    left: 46%;
    top: 45%;
}
.hit-5 svg:last-child {
    position: absolute;
    left: 49%;
    top: 45%;
}
.hit-6 svg {
    position: absolute;
    left: 46%;
    top: 45%;
}
.hit-6 svg:first-child {
    position: absolute;
    left: 49.5%;
    top: 43%;
}
.hit-6 svg:last-child {
    position: absolute;
    left: 50%;
    top: 47%;
}

.overlay {
  position: absolute;
  left: 49px;
}

.to-hit {
    color: #fff;
    font-family: Poppins-Medium;
    font-size: 50px;
    display: flex;
    justify-content: space-evenly;
    width: 120px;
    margin: auto;
}

.to-hit .hit {
  color: #228B22; 
}

.game .buttons button {
  margin-bottom: 20px;
}

.greeting-text {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin: 20px 0px;
  color: #000;
  font-size: 1rem;
}
.greeting-text p {
  font-size: 1rem;
  padding: 10px;
  color: #000;
}

.greeting-text a {
  font-size: 1.2rem;
  color: blue;
}

#reset-title {
  margin: auto;
}

.reset-confim {
  display: flex;
  justify-content: space-evenly;
}

.reset-confim button { 
  padding: 10px 20px;
  border-radius: 10px;
}

#game-info p {
  font-size: 20px;
  color: #000;
}

.inactive-game {
  position: relative;
}

.inactive-game::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.finishing-121 .game .buttons {
    display:flex;
    flex-direction: column;
}

.finishing-121 .game .buttons  label {
    font-size: 2rem;
    color: #fff;
    margin-top: 0px;
}

.finishing-121 .game .buttons input{
    padding: 10px;
    width: 100px;
    border-radius: 10px;
}

.finishing-121 .suggestions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

.finishing-121 .score-info {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
    align-items: center;
}

.finishing-121 .to-hit {
    margin: 0;
}

.finishing-121 .suggestions p { 
    color: #fff
}

.finishing-121 .suggestions h3 { 
    color: #228B22;
    font-size: 2rem;
    margin-bottom: 1rem;
} 

.finishing-121 .game .buttons .btn-danger {
    background-color: #dc3545;
}

#stats-modal .modal-footer {
    justify-content: center;
}


.add-0 {
    grid-row: 1; /* Place button in the second row */
    grid-column: 2;
}

/* Second row */
 .add-1,
.add-2,
 .add-3 {
    grid-row: 2; 
}

/* Third row */
 .add-4,
 .add-5,
 .add-6 {
    grid-row: 3; 
}

@media (max-width: 976px) and (min-width:600px) {

  .countdown-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .game-container {
    display: block;
    height: 100%;
  }

  .game-image {
    margin: auto;
    width: 500px;
  }
  .game-container img {
    width: 500px;
    margin-bottom: 40px;
    border-radius: 300px;

  }

  .timerDisplay,
  .total {
    font-size:37px;
  }

  .total span {
    font-size:50px;
  }

  .to-hit {
    font-size: 80px;
    width: 220px;
  }

  .overlay {
    left:0;
  }

  .game .buttons button {
    font-size: 30px;
    padding: 10px 50px;
    margin: 0px 10px 20px 10px;
  }
  .timer-buttons button {
    width: 200px;
    height: 55px;
    font-size: 30px;
  }
  
  .timer-buttons {
    margin: 0;
    padding-top: 30px;
  }
  
  .finishing-121 .suggestions h3 {
    color: #fff;
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .countdown-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }

  .game-container {
    display: block;
    height: 100%;
  }

  .game-image {
    max-width: 500px;
    margin: auto;
  }

  .game-container img {
    width: 200px;
    border-radius: 50%;
  }
  .hit svg {
    transform: scale(0.5);
  }
  .overlay {
    left:0;
  }

  .countdown-container {
    min-width: inherit;
    border-radius: 0;
    height: 100%;

  }

  .info {
    padding: 0 10px;
  }
  .hit-1 svg,
  .hit-3 svg,
  .hit-5 svg:first-child {
    left: 38%;
    top: 47%;
  }
  .hit-2 svg,
  .hit-3 svg:first-child,
  .hit-4 svg,
  .hit-5 svg,
  .hit-6 svg {
    left: 40%;
    top: 37%;
  }

  .hit-4 svg:first-child,
  .hit-5 svg:last-child,
  .hit-6 svg:last-child {
    left: 43%;
    top: 33%;
  }

  .hit-6 svg:first-child {
    left: 38.5%;
    top: 33%;
  }

  .timer-buttons {
    margin: 0;
    padding-top: 30px;
  }
  
  .doubles.game .buttons {
    width: 270px;
    margin: auto;
  }
  .info {
    flex-direction: column;
  }

  .timerDisplay {
    padding: 20px 0 0px 0;
  }
  .scoring-20 .game .buttons button {
    font-size: 15px;
  }
  .countdown-container h2 {
    font-size: 20px;
  }
  .games-load .countdown-container {
    grid-template-columns: 1fr 1fr;
  }
  .games-select {
    min-width: auto;
  }

  .info-container {
    grid-template-columns: auto;
  }

  .games-load .games-list {
    grid-template-columns: 1fr 1fr;

  }
  .game .buttons button, .submit_game, .stats-button {
    font-size: 18px;
  }
}

@media (max-width: 600px) { 
  .game .buttons button {
    font-size: 17px;
  }
}