label.custom_checkbox {
  cursor: pointer;
  margin: 5px 5px !important;
}

label.custom_checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;

}

label.custom_checkbox span {
  padding: 5px 7px;
  border: 2px solid #4e73df;
  display: inline-block;
  color: #4e73df;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}

label.custom_checkbox input:checked+span {
  border-color: #4e73df;
  background-color: #4e73df;
  color: #fff
}


.loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s;
  overflow: hidden;
}

.loadingScreen img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loadingScreen {
  visibility: hidden;
  opacity: 0;
}

.loadingScreen.show {
  visibility: visible;
  opacity: 1;
}


/* DIGIT INPUT */
.marketResult-digitGroup input,
.starlineResult-digitGroup input,
.editMarketResult-digitGroup input {
  width: 30px;
  height: 40px;
  border: 2px solid #bac8f3;
  border-radius: 10px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  margin: 5px 2px;
  padding: 0px;
  caret-color: transparent;
}

.digit-group .splitter {
  padding: 0 5px;
  color: #bac8f3;
  font-size: 24px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Pagination */
.custom-pagination {
  display: inline-block;
}

.custom-pagination a {
  color: black;
  /* float: left; */
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.custom-pagination .active {
  padding: 6px 12px;
  text-decoration: none;
  background-color: #2a52c5;
  color: white;
  border-radius: 5px;
}

.custom-pagination a:hover {
  background-color: #ddd;
}

#image-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#image-list li {
  margin: 10px 20px 10px 0px;
  display: inline-block;
}

#image-list li img {
  width: 250px;
  height: 155px;
}

/* .bg-gradient-primary { */
/* background-color: #fc1c12 !important; */
/*background-image: linear-gradient(180deg, #fbea72 10%, #f8de0b 100%) !important;*/
/* background-image: linear-gradient(180deg, #f76b70 10%, #fc1c12 100%) !important; */
/*background-image: linear-gradient(180deg, #f99781 10%, #ce517c 100%) !important;*/
/* background-size: cover !important; */
/* } */