@font-face {
  font-family: JF_font;
  src: url(../fonts/JF-Flat-regular.ttf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #3db772;
  --subColor: #3db772;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: #3db772 !important;
}

.mainBack {
  background-color: #3db772 !important;
  border-color: #3db772 !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* --------------- login page  --------------- */
.login_game {
  min-height: 100vh;
  background-image: url(../images/game_login.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 90px 50px;
}
.login_game .info h1 {
  color: #3db772;
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  word-spacing: -20px;
  line-height: 1;
}
.login_game .info h1 span {
  display: block;
}
.login_game .info h1 span:nth-of-type(2) {
  letter-spacing: 7px;
}
.login_game .info h1 span:nth-of-type(3) {
  letter-spacing: 8px;
}
.login_game .info p {
  color: #3db772;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1;
}
.login_game .logos {
  margin-top: calc(100vh - 500px);
}
.login_game .form {
  padding: 50px;
  background-color: #fff;
  border-radius: 15px;
}
.login_game .form .form-group {
  margin-bottom: 30px;
}
.login_game .form .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.login_game .form .form-group .form-control {
  background-color: #f5f5f5;
  border: 0;
  min-height: 50px;
  border-radius: 6px;
}

/* --------------- game page  --------------- */
.game_page {
  background-color: #f0f0f0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.game {
  position: relative;
  z-index: 10;
  width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 10px 50px rgba(0, 0, 0, 0.1333333333);
}
.game .back_img {
  height: 100%;
  width: 100%;
}
.game .back_img .img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game .objects_imgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.game .objects_imgs .object {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 1;
  border: 5px solid red;
  transition: all 0.2s ease;
  opacity: 1;
  cursor: auto;
  background: transparent;
}
.game .objects_imgs .object.unShow {
  opacity: 0;
}
.game .objects_imgs .object img {
  position: relative;
  z-index: 2;
}
.game .obj_to_find {
  position: relative;
  bottom: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding-left: 300px;
}
.game .obj_to_find .imgs {
  display: flex;
  width: 100%;
  min-height: 148px;
  justify-content: center;
  border-top: 5px solid #3db772;
  height: 100%;
  padding: 20px;
}
.game .obj_to_find .imgs .img {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 10px;
  text-align: center;
  margin: 0 10px;
}
.game .obj_to_find .imgs .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.2));
}
.game .points_clac {
  position: absolute;
  z-index: 30;
  left: 0;
  bottom: 0;
  width: 300px;
  text-align: center;
  background-color: #3db772;
  color: #fff;
  border-radius: 0 20px 0 0;
}
.game .points_clac .points_title {
  color: #3db772;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  border: 5px solid #3db772;
  margin-top: -20px;
}
.game .points_clac .points_title h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.game .points_clac .content {
  display: flex;
  justify-content: space-around;
  padding: 20px 0 10px;
}
.game .points_clac .content .points-card p {
  font-weight: 500;
  font-size: 15px;
}
.game .points_clac .content .points-card h6 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  color: #3db772;
  margin: 10px auto 20px;
  font-size: 20px;
  font-weight: bold;
}
.game .control_icons {
  position: absolute;
  z-index: 20;
  right: 0;
  top: 0;
  background-color: #3db772;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3333333333));
}
.game .control_icons a {
  padding: 15px;
}
.game .started_screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7176470588);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game .started_screen .content {
  display: flex;
  align-items: center;
}
.game .started_screen .avatar {
  width: 40%;
}
.game .started_screen .text_box {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.8431372549);
  color: #000;
  font-weight: bold;
  text-align: center;
  border-radius: 15px;
  border: 2px solid #3db772;
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
}
.game .started_screen .text_box h5 {
  margin-bottom: 10px;
}
.game .started_screen .text_box h6 {
  opacity: 0.5;
}
.game .started_screen .text_box .form-control {
  min-height: 50px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.game .end_screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game .end_screen .content {
  display: flex;
  align-items: center;
  width: 50%;
}
.game .end_screen .text_box {
  padding: 50px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 15px;
  border: 2px solid #3db772;
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
  width: 100%;
}
.game .end_screen .text_box .rate {
  margin-bottom: 30px;
  color: gold;
  font-size: 20px;
}
.butn {
  padding: 13px 35px;
  border-radius: 10px;
  background-color: #3db772;
  color: #fff;
  margin-top: 30px;
  border: 0;
  font-size: 13px;
}
.butn:hover {
  background-color: #222;
  color: #fff;
}

.countdown_box {
  position: absolute;
  right: 50px;
  bottom: 138px;
  z-index: 50;
  width: calc(100% - 400px);
  pointer-events: none;
}
.countdown_box .countdown {
  font-size: 16px;
  color: #3db772;
  text-align: center;
  margin-bottom: 15px;
  position: absolute;
  right: -20px;
  top: -15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #3db772;
}
.countdown_box .progress-bar {
  width: 100%;
  height: 15px;
  background-color: #f1f1f1;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #a3ffda;
}
.countdown_box .progress {
  height: 100%;
  background-color: #3db772;
  width: 0%;
}
.countdown_box .end-div {
  display: none;
}

.countdown_done {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
}
.countdown_done .content {
  display: flex;
  align-items: center;
  width: 50%;
}
.countdown_done .text_box {
  padding: 50px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 15px;
  border: 2px solid #3db772;
  -webkit-margin-start: 30px;
          margin-inline-start: 30px;
  width: 100%;
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
/* ======= *//*# sourceMappingURL=style.css.map */