/* The container */
.checkBoxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float:left;
  }
  
  /* Hide the browser's default checkbox */
  .checkBoxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #F7F7F7;
      border: 2px solid #E7E7E7;
  
  }
  
  /* On mouse-over, add a grey background color */
  .checkBoxContainer:hover input ~ .checkmark {
    background-color: #eee;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkBoxContainer input:checked ~ .checkmark {
    background-color: #FF9D00;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkBoxContainer input:checked ~ .checkmark:after {
    display: block;
  }
  
  .checkBoxContainer input:disabled ~.checkmark {
    background-color: #dddddd;
  }

  .checkBoxTextDisabled {
      color: #dddddd;
  }

  /* Style the checkmark/indicator */
  .checkBoxContainer .checkmark:after {
    left: 9px;
    top: 3px;
    width: 5px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  @media (min-width: 767.98px)  { 
      #eventPlaceRegister {
        position: absolute;
        top: 35px;
        left: 580px;
        width: 449px;
        height: 23px;
        text-align: left;
        font: normal normal normal 20px/30px Ubuntu;
        letter-spacing: 0.2px;
        color: #000000;
        opacity: 1;
    }
    
    #eventPlaceLogoRegister {
        position: absolute;
        top: 29px;
        left: 540px;
        width: 18px;
        height: 22px;
    }

    .eventBoxContent {
      position: absolute;
      width: 100%;
    }

    .eventBoxRegister {
      position: absolute;
      top: 0px;
      width: 100%;
    }

    .registeredPlayers {
      position: absolute;
      top: 35px;
      left: 1103px;
      font-weight: bold;
    }

    .arrowUp {
      position:absolute;
      top: 42px;
      left: 97%;
      display: none;
  }

    .arrowDown {
      position:absolute;
      top: 42px;
      left: 97%;
    }

    .checkCircle {
        position:absolute;
        top: 33px;
        left: 81%;
        color: #e2e2e2;
    }

    .crossCircle {
        position:absolute;
        top: 33px;
        left: 85%;
        color: #e2e2e2;
    }
    
    .eventInfo {
      position: relative;
      height: 100px;
    }
  }

  @media (max-width: 767.98px)  { 
    #eventPlaceRegister {
      position: absolute;
      top: 70px;
      left: 110px;
      height: 23px;
      text-align: left;
      font: normal normal normal 16px/20px Ubuntu;
      letter-spacing: 0.2px;
      color: #000000;
      opacity: 1;
    }
  
    #eventPlaceLogoRegister {
        position: absolute;
        top: 70px;
        left: 75px;
        width: 18px;
        height: 22px;
    }

    .eventBoxContent {
      position: absolute;
      top: 40px;
      width: 100%;
    }

    .eventBoxRegister {
      position: absolute;
      top: 0px;
      width: 100%;
    }

    .registeredPlayers {
      position: absolute;
      top: 5px;
      left: 233px;
      font-weight: bold;
      text-align: center;
  }


    .arrowUp {
      position:absolute;
      top: 15px;
      left: 92%;
      display: none;
  }

  .arrowDown {
      position:absolute;
      top: 15px;
      left: 92%;
  }

  .checkCircle {
      position:absolute;
      top: 5px;
      left: 45%;
      color: #e2e2e2;
  }

  .crossCircle {
      position:absolute;
      top: 5px;
      left: 55%;
      color: #e2e2e2;
  }

  .eventInfo {
    position: relative;
    height: 150px;
  }
}