/* Popup styles */
.popup {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.popup-content {
  width: 50%;
  z-index: 999;
  background: #151527;
  padding: 40px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

  @media screen and (max-width:768px){
    width: 90%;
  }
}

.popup .modal-title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px;
  margin-left: 24px;
}

.popup .form-check-label {
  color: #fff;
}
.popup.show {
  visibility: visible;
  opacity: 1;
}
.popup button {
  padding: 8px 15px;
  margin-top: 10px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
  height: 50px;
  margin-left: 24px;
  font-size: 16px;

  @media screen and (max-width:768px){
    width: calc(100% - 24px);
  }
}

.check-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 25px;
  cursor: pointer;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.label-text{
  line-height: 25px;
  position: relative;
  top: -6px;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 3px;
}


/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 7px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}