@import url(../../App.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vi' !important ;
}

html,
body {
  width: 100%;
  height: 100vh;
  font-family: 'Vi' !important;
  /* font-family: ViRegular !important; */
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html a {
  text-decoration: none;
  color: var(--textColor);
}

#root {
  width: 100%;
  height: 100vh;
  background: var(--darkblue);
  color: var(--textColor);
  overflow-x: hidden;
}

.oval {
  position: absolute;
  top: 50%;
}

.wrapper {
  max-width: 475px;
  height: 100vh;
  background: var(--darkblue);
  margin: 0 auto;
  position: relative;
  /* overflow-x: hidden;
     overflow-y: hidden; */
}

.inner-wrap {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* padding-top: 10px; */

}

.inner-wrap .header {
  width: 100%;
  height: 50px;
  display: flex;
  padding: 10px 15px;
  color: var(--headerText);
}

.header .back-btn {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-self:center;
  /* margin-left: 10px; */
}

.header .back-btn img {
  width: 100%;
  height: 100%;

}

.inner-wrap .header h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.inner-wrap .body {
  padding: 0 20px;

  height: 100vh;
  overflow-y: auto;
}

.body::-webkit-scrollbar,
.custom_scroll::-webkit-scrollbar,
.custom_scroll_leader::-webkit-scrollbar {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.body::-webkit-scrollbar-track {
  /* background: rgba(0, 0, 0, 0.4); */
}

.custom_scroll::-webkit-scrollbar-track {
  display: none;
}

.custom_scroll::-webkit-scrollbar-thumb {
  display: none;
}

.body::-webkit-scrollbar-thumb,
.custom_scroll_leader::-webkit-scrollbar-thumb {
  background: var(--darkblue);
  width: 4px;
  display: none;
}

.body::-webkit-scrollbar-thumb:hover,
.custom_scroll::-webkit-scrollbar-thumb:hover,
.custom_scroll_leader::-webkit-scrollbar-thumb:hover {
  background: var(--red);
  width: 4px;
}
.choose-text{
  color: var(--headerText);
}

.games_items {
  /* width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 0px;
  min-height: 60vh;
    */ display: flex;
      flex-wrap: wrap;
      margin-left: -8px;
      margin-right: -8px;
      margin-bottom: 2rem;
      margin-top: 15px;
      /* gap: 19px; */
}

.games_items .item {
  /* width: "50%"; */
    /* height: 180px; */
    position: relative;
    cursor: pointer;
    width: 50%;
      padding-left: 8px;
      padding-right: 8px;
      margin-bottom: 10px;

}

.games_items .item .img {
  width: 100%;
  height: 100%;
}

.games_items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  }
  
  .bottom_btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 20px;
}

.box-text {
  position: absolute;
  width: 91%;
  height: 40px;
  bottom: 0;
  padding: 12px;
  display: flex;
  /* padding-left: 8px; */
    /* margin-right: 16px; */
  justify-content: space-between;
  border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.79) 100%); */
    background: linear-gradient(to bottom,
      rgba(7, 11, 40, 0) 0%,
      rgba(7, 11, 40, 1) 100%);
      
}

.box-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--textColor);

}

.playerIcon {
  display: flex;
  justify-content: center;
}

.playerIcon h3 {
  font-size: 12px !important;
  font-weight: 400;
  color: var(--textColor) !important;
}

.playerIcon img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  line-height: 1;
  margin-top: 2px;
}

input:-internal-autofill-selected {
  background-color: var(--contestDetail) !important;
  -webkit-tap-highlight-color: var(--contestDetail)
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--contestDetail) inset !important;
  color: var(--textColor);
}

input:-webkit-autofill {
  -webkit-text-fill-color: var(--textColor) !important;
}

.redClick {
  color: var(--red);
  cursor: pointer;
}

.botton-footer {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.button1 {
  background-color: var(--red);
}

.bottom-button {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;

}

.footer-logo {
  width: 100%;
  height: 90px;
  color: var(--textColor);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}

.footer-logo img {
  width: 120px;
  height: 40px;
  margin-bottom: 5px;
}

.footer-logo h2 {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.6000000238418579;
  text-align: center;
}

.footer-btn {
  width: 100%;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--textColor);
}

.button2 {
  background-color: var(--playerDetails);
  border: 1px solid var(--roomIdBorder);
  color: var(--headerText);
  margin-right: 10px;
}

.contest-details {
  width: 100%;
  min-height: 80px;
  background: var(--contestDetail);
  border-radius: 15px;
  padding: 13px 18px;
  margin-bottom: 20px;
}

.contest-details .first {
  width: 100%;
  height: 40px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(74, 74, 92, 0.3);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  color: var(--borderColor);
}

.contest-details .first h3 {
  color: var(--headerText);
  font-weight: 400;
  font-size: 12px;
  line-height: 5px;

}

.contest-details .first h2 {
  color: var(--headerText);
  font-weight: 600;
  font-size: 12px;
  text-align: left;


}

.contest-details .first img {
  width: 14px;
  height: 14px;
}

.contest-details .second {
  width: 100%;
  height: 35px;
  padding: 8px 0;
  margin-bottom: 13px;
}

.contest-details .second h2 {
  font-size: 12px;
  color: var(--headerText);
  font-weight: 600;
}

.contest-details .second h3 {
  font-size: 10px;
  color: var(--headerText);
  font-weight: 400;
}
.position-fixed-back {
  /* background-image: url("../images/contest-back.svg"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 224px; */
}

.contest-cover {
  height: 70vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(10px);


}


.contest-cover::after {
  top: inherit;
  bottom: 0;
  height: 200px;
  z-index: 2;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 18%,
      rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.contest-cover img {
  height: 100%;
  object-fit: cover;
}

.tournament-image {
  width: 100%;
  height: 200px;
 position: absolute;
  align-items: center;
  justify-content: center;
  top:19%;
  display: flex;

}

.tournament-image img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 20px;
}

.gameTypeName {
  font-size: 20px;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 20px;
}

.changeUserName {
  font-size: 14px;
  font-weight: 200;
  color: var(--headerText);
  text-align: center;
  /* margin-bottom: 20px; */
}
.second button {
  width: 100%;
  background-color: var(--red);
  border: none;
  border-radius: 16px;
  color: var(--textColor);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 10px;

  /* padding: 5px 0; */

}

.second button p {
  font: 16px !important;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}

.second button p img {
  width: 16px;
  height: 16px;
}

.second .inner {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: #4A4A5C;
  position: relative;
}

.second .inner span {
  position: absolute;
  height: 100%;
  border-radius: 100px;
  background-color: var(--yellow);
}

.add-username {
  height: 100vh;
  width: 100%;
  background-color: var(--darkblue);
  opacity: 0.8;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;

}

.popUp {
  width: 475px;
  margin: 0 auto;
  min-height: 352px;
  background-color: var(--popup);
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1 !important;
  padding: 40px 30px;
  color: var(--textColor);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  flex-basis: 397px;
  border-radius: 20px;
}

.popUp .form-group {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--borderColor);
  position: relative;
  margin-bottom: 20px;
}

.popUp .form-group input {
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 16px;
  color: var(--headerText);
  position: relative;
}

.popUp label {
  position: absolute;
  background-color: var(--popup);
  padding: 0 10px;
  top: -25%;
  left: 5%;
  color: var(--borderColor);
}

.popUp h2 {
  /* width: 233px; */
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--headerText);
}

.popUp button {
  color: var(--textColor);
  width: 100%;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  height: 40px;
  padding: 8px 12px;
  border: none;
}

.confirm-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}

.confirm-head span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.confirm-head :nth-child(2) {
  color: var(--borderColor);
}

.confirmation-box {
  width: 100%;
}

.confirmation-box .third {
  border: none;
  /* background-color: var(--borderColor); */
  background: var(--contestDetail);
  border-radius: 8px;
  width: 100%;
  height: 40px;
  padding: 0 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--headerText);
}

.confirmation-box .first {
  width: 100%;
  height: 45px;
  background-color: transparent;
  border-bottom: 1px solid var(--borderColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 13px;
}

.confirmation-box .second {
  margin-top: 20px;
}

.buttonGroup {
  color: var(--textColor);
  display: flex;
  width: 100%;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px
}

.winning-breakup {
  width: 100%;
  min-height: 397px;
  background-color: var(--winning);
  border-radius: 16px;
  padding: 16px;
}

.tab {
  font-size: 12px;
  /* padding: 10px 60px; */
  cursor: pointer;
  opacity: 0.6;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 400;
  /* width:80px */
  margin: 0 20px;
}

.buttonGroup .active {
  border-bottom: 3px solid var(--yellow);
  opacity: 1;
color: var(--headerText);
  border-radius: 3px;

}

.winning-breakup .first {
  width: 100%;
  height: 45px;
  display: flex;
  border-bottom: 1px solid var(--borderColor);
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--winningText);
}

.winning-breakup .second {
  color: var(--winningText);
  font-weight: 700;
}

.winning-breakup .first img {
  width: 14px;
  height: 14px;
}

.closeButton {
  width: 20px !important;
  height: 20px;
  position: absolute;
  right: 1.5rem;
  top: -7%;
  cursor: pointer;
}

.closeButton img {
  width: 100%;
  height: 100%;
}

.close {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--borderColor);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

.buttonGroup .contest-tab {
  width: 33.33%;
  background-color: var(--playerDetails);
  border: 1px solid var(--roomIdBorder);
  padding: 8px 10px;
  /* margin-right: 10px; */
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  color: var(--textColor);
}

.buttonGroup .active1 {
  background-color: var(--red);
  border: none;
  color: var(--textColor);
}

.password-details {
  width: 100%;
  height: 60px;
  border: 1px solid var(--roomIdBorder);
  display: flex;
  border-radius: 12px;
  margin-top: 10px;
  color: var(--headerText);
  justify-content: space-between;
  background-color: var(--roomId);
}

.password-details .firstlayer {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 13px;
  padding: 0 10px;
}

.password-details .firstlayer img {
  width: 14px;
  height: 14px;
}

.password-details .firstlayer span {
  display: flex;
  /* justify-content: space-evenly; */
}

.password-details .firstlayer span:nth-child(1) {
  color: var(--borderColor);
  font-weight: 400;

}

.password-details .firstlayer span:nth-child(2) {
  justify-content: space-between;

}

.contest-details .user-rank {
  display: flex;
  padding: 10px 16px;
  /* justify-content: space-between; */
  border-bottom: 1px solid var(--borderColor);
  margin: 0 10px;
  align-items: center;
  color: var(--headerText);

}

.contest-details:nth-child(1) {
  margin: 0;
}

.contest-details .user-rank:nth-child(1) {
  background: var(--heading);
  border: none;
  margin: 0;
}

.contest-details .user-rank:last-child {
  background: var(--contestDetail);
  border-radius: 12px;
  border: none;
}

.user-rank-details {
  text-align: left;
  /* width:20%; */
}

.user-rank-details:nth-child(1) {
  width: 50%;
  padding: 5px 0;



}

.user-rank-details:nth-child(2) {
  width: 30%;
  padding: 5px 0;

}

.share-friends {
  width: 100%;
  height: 60px;
  background: var(--contestDetail);
  border-radius: 12px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.share-friends h2 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

.frn-images {
  width: 40%;
  display: flex;
  position: relative;
  align-items: center;
}

.frn-images .frnd-avatar {
  width: 30px;
  height: 30px;

}

.frn-images .frnd-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.share-friends .frn-images:nth-child(2) {
  position: absolute;
  left: 50%;

}

.game-rules {
  width: 100%;
  min-height: 300px;
  margin: auto;
  margin-top: 40px;
  font-size: 12px;
  color: var(--headerText);
}

.status {
  width: 80px;
  height: 20px;
  background: var(--green);
  /* padding: 0 15px; */
  border-radius: 0px 0px 6px 6px;
  font-size: 12px;
  font-weight: 400;
  margin-top: -13px;
  margin-bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.completed {
  background-color: var(--completed);
}

.apply-code {
  min-height: 50px;
  /* border-radius: 120px; */
  background: var(--contestDetail)
    /*rgba(217, 217, 217, 0.10);*/
  ;
  margin-bottom: 20px;
  border-radius: 12px;

}

.apply-code .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--textColor);
}

.apply-code .header img {
  width: 16px;
  height: 19px;
  cursor: pointer;
}

.apply-code .header h6 {
  font-weight: 400;
  margin-bottom: 0;
  color: var(--headerText);
}

.apply-code .apply-body {
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 20px 10px;
  position: relative;
}

.apply-code input[type=text] {
  color: var(--headerText);
  min-width: 70%;
  /* border-radius: 120px 0 0 120px; */
  border: none;
  padding: 0 15px;
  background-color: rgba(217, 217, 217, 0.10);
  font-size: 14px;
  height: 40px;
}

.apply-code input[type=text]:focus {
  border: none;


}

.apply-body button {
  position: absolute;
  right: 0;
  margin-right: 13px;
  color: var(--textColor);
  width: 100px;
  height: 30px;
  border: none;
  border-radius: 120px;
  background: var(--red);
  font-size: 13px;
  transition: 0.5s ease-in-out;
  /* margin: 1px; */

}

.innamegame {
  width: 100%;
  height: 35px;
  display: flex;
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  color: var(--textColor);
}

.innamegame input {
  color: var(--textColor);
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;

  border-radius: 8px;
  padding: 9px 15px;
}

input:focus {
  outline: none;
}

.innamegame input:focus {
  outline: none;
  border-radius: 8px;
}

.innamegame button {
  width: 30%;
  height: 100%;
  border: none;
  border-radius: 7px;
  background: var(--red);
  color: var(--textColor);
  border: none;
}

.save-team {
  color: var(--textColor);
  width: 90%;
  height: 40px;
  border: none;
  background-color: var(--red);
  border-radius: 100px;
  position: absolute;
  bottom: 2%;
}

.password-details .firstlayer img {
  margin-left: 2px;
  cursor: pointer;
}

.password-details .firstlayer:first-child {
  border-right: 1px solid var(--borderColor);
}

.no_tournament h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 20px;
  font-weight: 700;
}

.Toastify__toast--success {
  border: 1px solid #3A9EA5 !important;
  border-radius: 10px !important;
  background: var(--blackWhite) !important;
}

.Toastify__toast--success::before {
  content: url("../assets/images/svg/successToast.svg");
  position: relative;
  z-index: 100000;
  left: 12px;
  top: 6px;
}

.Toastify__toast--success::after {
  content: url('../assets/images/svg/closeToast.svg');
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  left: 265px;
  padding-top: 14px !important;
}

.Toastify__toast--error {
  border: 1px solid #EB5757;
  border-radius: 10px !important;
  background: var(--blackWhite) !important;
}

.Toastify__toast--error::after {
  content: url('../assets/images/svg/closeToast.svg');
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  left: 265px;
  padding-top: 14px !important;
}

.Toastify__toast--error::before {
  content: url("../assets/images/svg/errorToast.svg");
  position: relative;
  z-index: 100000;
  left: 12px;
  top: 6px;
}

.Toastify__toast-container {
  /* left: 0; */
  z-index: 10000;
}

.Toastify__close-button--light,
.Toastify__close-button {
  color: var(--headerText) !important;
}

.box {
  /* width: 25%; */
}

.padding-top2 {
  text-align: center;
  width: 90%;
  height: 35px;
  border-radius: 20px;
  background-color: var(--red);
  margin: 0 auto;
}

.padding-top2 button {
  width: 100%;
  color: var(--textColor);
  border-radius: 16px;
  background-color: var(--red);
  border: none;
  height: 100%;
}

.card-header {
  background-color: lightgray;
  cursor: pointer;
  border-bottom: none;
}

.card-header.active {
  background-color: green;
  color: white;
}

/* .accordion-button:not(.collapsed) */
/* .accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:first-of-type .accordion-button,.accordion-body
{
 color: var(--textColor);
 background-color: var(--contestDetail);
 height: 40px;

}
.accordion-item:last-of-type .accordion-button.collapsed{
 height: 40px;
 
}
.accordion-button{
 padding: 5px 16px  !important;
}
.accordion-button::after{
 color: var(--textColor);
 background-image: url("../images/down-arrow.png") !important;
 height: 20px;
 background-size: 1rem !important;

}
.accordion-item{
 border: none !important;
}
.accordion-button:focus{
 box-shadow: 0 0 0 0.25rem var(--contestDetail) !important;
}
.accordion-item:last-of-type .accordion-collapse{
 height: 50px;
 border-radius: 0 !important;
}
.accordion-body{
 padding: 0  !important;
 width: 100% !important;
} */
.success-meessage {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 10px;
  padding: 5px 0;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--contestDetail) !important;
}

.accordion-button::after {
  color: var(--textColor);
  background-image: url("../images/down-arrow.png") !important;
  height: 20px;
  background-size: 1rem !important;

}

.accordion-item {
  border: none !important;
  border-radius: 120px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 1rem;
}

.accordion-header {
  background-color: var(--contestDetail);
}

.accordion-body {
  padding: 0 !important;
  width: 100% !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--contestDetail) !important;
  color: var(--textColor) !important;
  background-color: #e7f1ff !important;
  box-shadow: inset 0 -1px 0 var(--contestDetail) !important;
}

.accordion-item:last-of-type .accordion-collapse {
  background-color: var(--contestDetail);
}
.header svg{
  width: 30px;
  height: 30px;
}
.instructions{
  color: var(--headerText);
  margin-top: 20px;
}
.ins-img,.ins-img img {
  width: 100%;
  /* height: 181px; */
  border-radius: 15px;
}


.playstore , .playstore img{
  width: 100px;
  height: 35px;
  border-radius: 5px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(217, 217, 217, 0.00);
}


.iframclass{
  width: 100% !important;
  height: 100% !important;
  }


.loading {
margin: 40px auto;
border: 3px solid #CCCCCC;
background: white;
width: 40px;
height: 40px;
border-radius: 8px;
/* Aqui declaramos nossa animação inline */
animation: rotate 3s infinite linear;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}

