/* body
{
    background-color: black;
} */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  .switch input {display:none;}

  .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: 26px;
    width: 26px;
    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(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 75px;
    margin-bottom: 50px;
    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 checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark
{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #faf2c0;
    border-radius: 50%;
}
.container:hover input ~ .radio-checkmark {
    background-color: #ccc;
}
.container input:checked ~ .radio-checkmark {
    background-color: #2196F3;
}
.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container input:checked ~ .radio-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .radio-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*------------------------------------------------------------------------------------
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 64px;
    width: 64px;
    background-color: white;
    background-image: url("../img/Boy_Render_128x128.png");
    background-size: cover;
    border: 1.5px solid black;
    border-radius: 5px;
}
.container:hover input ~ .checkmark {
    background-color: #ffffbb;
}

.container input:checked ~ .checkmark {
    background-color: #ffffbb;
    border: 4px solid rgb(255, 232, 28);
}

/* .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} */
/*------------------------------------------------------------------------------------
*/
.mainSection
{
    margin:  0;
    width:  600px;
    height:  800px;
}