/* Register */
/* Register The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  padding-top: 3rem; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  margin: auto;
  padding: 0;
  width: 95%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Modal Content */
.modal-content-game {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  margin: auto;
  padding: 0;
  width: 95%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  overflow-y: auto;
  height: 830px;
}

/* width */
.modal-content-game::-webkit-scrollbar {
  width: 15px;
}

/* Track */
.modal-content-game::-webkit-scrollbar-track {
  box-shadow: inset 0 0 8px #000;
  border-radius: 6px;
}
 
/* Handle */
.modal-content-game::-webkit-scrollbar-thumb {
  background: -webkit-linear-gradient(top, #e0a12a, #8f6B29, #FDE08D, #c58d24, #FDE08D, #DF9F28); 
  border-radius: 6px;
}

/* Handle on hover */
.modal-content-game::-webkit-scrollbar-thumb:hover {
  background: #e0a12a; 
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background: -webkit-linear-gradient(left, #8f6B29, #FDE08D, #c58d24, #FDE08D, #DF9F28);
  color: #000;
  height: 80px;
  border-bottom: 0px solid #dee2e6;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.modal-body {
  padding: 2px 16px;
  border-width: 10px;
  border-style: solid;
  border-image: 
    linear-gradient(
      to bottom, 
      rgba(0, 0, 0, 0),
      #8f6B29, 
      #FDE08D,
      #c58d24,
      #FDE08D,
      #DF9F28
    ) 3 100%;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
  height: 15px;
  background: -webkit-linear-gradient(left, #DF9F28, #FDE08D, #c58d24, #FDE08D, #DF9F28);
  border-top: 0px solid #dee2e6;
}

@media only screen and (min-width: 576px) {
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1200px) {
  .modal-content {
    width: 1100px;
  }
  .modal-content-game {
    width: 1100px;
  }
}
@media only screen and (min-width: 1440px) {
  .modal-content {
    width: 1350px;
  }
  .modal-content-game {
    width: 1350px;
  }
}

/* Login */
