html {background-color: #ffffff}

.section-collapser {
    cursor: pointer;
}

.section-collapser:after {
   content: url('assets/arrow-up.png');
   float: right;
}

.section-collapser.collapsed:after {
   content: url('assets/arrow-down.png');
   float: right;
}

.bg-info {
    background-color: #ffffff !important;
}

.bg-primary {
    background-color: #ffffff !important;
    border-color: #000000 !important;
    color: black !important;
}

.bg-secondary {
    background-color: #cccccc !important;
    border-color: #ec1d90 !important;
}

.form-control {
    background-color: #cccccc !important;;
}

.btn-dark {
    background-color: #ec1d90 !important;
    color: black;
}

.text-pink {
    color: #ec1d90;
}

.bg-page-links {
    background-color: #cccccc !important;
    border-color: #000000 !important;
    text-align: right; !important;
    color: #ec1d90;
}

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #ccc;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #EC1D90;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}
