@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

:root {
  --fontFam: 'Poppins', sans-serif;
  --color1: #F9F9F9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--fontFam);
  letter-spacing: 1px;
  background: var(--color1);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  width: 100vw;
  background-color: #1432CB;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  padding: 30px 0;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #000080;
  border-radius: 50%;
  margin-right: 1rem;
}

label:hover {
  background-color: #fff;
  border: 2px solid #1432c8;
}

label input {
  display: none;
}

label span.ball {
  display: inline-block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #000080;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}

label input:checked+span.ball {
  opacity: 1;
}

.optionText {
  color: #000080;
  font-weight: 600;
  padding-bottom: 10px;
}

.option {
  display: flex;
  flex-direction: row;
  padding-bottom: 14px;
}

.circle,
.circle2 {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  font-weight: 900;
  border-radius: 50%;
  line-height: 40px;
  margin: 4px;
}

.circle2 {
  position: relative;
}

/* circle colors */
.circle-lotto {
  background-color: #FDC0C0;
  color: #640101;
}

.circle-euromillions {
  background-color: #FCDE66;
  color: #7F0000;
}

.circle-set-for-life {
  background-color: #B0F2F4;
  color: #000080;
}

.circle-thunderball {
  background-color: #E0CCFF;
  color: #530078;
}

.circle-lotto-hotpicks {
  background-color: #FDC0C0;
  color: #640101;
}

.circle-euromillions-hotpicks {
  background-color: #FCDE66;
  color: #7F0000;
}

/* circle2 colors*/
.circle2-euromillions {
  background-color: #FFC400;
  color: #000080;
}

.circle2-set-for-life {
  background-color: #00D6DA;
  color: #000080;
}

.circle2-thunderball {
  background-color: #6500A2;
  color: #FFFFFF;
}

.circle2-suffix {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.circle2-suffix-euromillions {
  background-color: #d06a00;
}

.circle2-suffix-set-for-life {
  background-color: #049ba3;
}

.circle2-suffix-thunderball {
  background-color: #b383fc;
}

.desc {
  padding: 20px 0;
}

.btn,
.btn2 {
  background-color: #000080;
  color: #ffffff;
  border: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  font-size: 18px;
  letter-spacing: 1.1px;
  padding: 10px 18px;
  cursor: pointer;
}

.btn2 {
  padding-left: 10px;
  background-color: #666;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.btns {
  margin-bottom: 30px;
  display: none;
}

.description,
.displayResults {
  background-color: #fff;
  color: #333;
  width: 280px;
  height: 150px;
  padding: 12px;
  border: 1px solid #000080;
  border-radius: 10px;
  margin-bottom: 30px;
}

.displayResults {
  display: none;
  width: auto;
  height: auto;
}

.description-title {
  color: #000080;
  font-weight: 700;
  padding-bottom: 4px;
}

.hotpicks-range {
  display: none;
}

.hotPicksContainer {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}

.box {
  width: 34px;
  border: 1px solid black;
  text-align: center;
  margin: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.box:hover {
  border: 1px solid #1432c8
}

.hotpicks-description {
  font-size: 14px;
}

.highlight {
  background-color: #000080;
  color: #fff;
  border-color: #000080;
}

.resultbox {
  border: 1px solid #000;
}

@media only screen and (max-width: 400px) {

  .circle,
  .circle2 {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 2px;
  }

  .circle2-suffix {
    width: 10px;
    height: 10px;
  }

  .description-title {
    padding-bottom: 6px;
  }
}

@media only screen and (max-width: 340px) {

  #optionsForm {
    padding-left: 10px;
  }

  .desc {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .description {
    width: auto;
    height: auto;
    margin: 10px;
  }

  .hotPicksContainer {
    padding-left: 10px;
  }

  .hotpicks-description {
    padding-left: 10px;
  }

  .displayResults {
    margin: 10px;
  }

  .btn,
  .btn2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 10px;
  }

  label {
    width: 20px;
    height: 20px;
  }

  label span.ball {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}