.mainSectionContainer {
  padding: 0px;
}

.sectionHeading {
  font-size: 14px;
  font-weight: bolder;
  margin-top: 20px;
  margin-bottom: 25px;
}

.mainSectionContainer > .addressSection {
  padding-top: 15px;
  background-color: white;
  box-shadow: 2px 0px 10px -1px rgba(0, 0, 0, 0.2);
}

  .mainSectionContainer > .addressSection > .editButtonContainer > #editButton {
    width: 100%;
    font-weight: bolder;
  }

  .mainSectionContainer > .addressSection > .validAddress > #paraGeoInvalid {
    color: red;
    font-weight: bold;
    font-size: 14px;
  }

  .mainSectionContainer > .addressSection > .validAddress > #paraGeoValid {
    color: #23cc23;
    font-weight: bold;
    font-size: 14px;
  }

  .mainSectionContainer > .addressSection > .textBoxBorder > li > span {
    font-weight: bold;
    font-size: 13px;
  }

.selectBoxContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

  .selectBoxContainer > .selectBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    background-color: white;
  }

    .selectBoxContainer > .selectBox > .tickBox {
      margin-right: 10px;
      width: 30px;
      height: 30px;
      border-radius: 5px;
      border: solid 1px #333333;
      padding: 4px;
    }

    .selectBoxContainer > .selectBox > .tickBoxText {
      font-weight: bold;
      color: #2e2e2e;
    }

    .selectBoxContainer > .selectBox > .tickBox.active {
      background-color: #2ab12a;
    }

    .selectBoxContainer > .selectBox > .tickBox > img {
      max-width: 100%;
      max-height: 100%;
    }
