*,
  *:before,
  *:after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
    font: inherit;
  }

  img,
  picture,
  svg,
  video {
    display: block;
    max-width: 100%;
  }

  body {
    min-height: 100vh;
  }

  a {
    color: #000000 !important;
    text-decoration: none !important;
  }

  /* notification */
  .notification {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
    width: 350px;
    height: 600px;
    min-width: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 -4px 32px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: all linear 0.2s;
  }

  .notification h4 {
    margin-top: 20px;
  }

  .notification .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-direction: column;
    color: #1d2129;
    padding: 20px;
  }

  .notification .bell {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
  }

  .notification .bell .count {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 3px;
    color: red;
    font-weight: bold;
  }

  .notification.active {
    transform: translate(-5%, -50%);
  }

  .notification.active .bell {
    transform: translateX(0%);
  }

  .notification .bell i {
    margin: 3px;
  }

  /* tilte Page */
  .titlePage h3 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
  }

  .titlePage h3:before {
    width: 28px;
    height: 5px;
    display: block;
    content: "";
    position: absolute;
    bottom: 2.5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b80000;
  }

  .titlePage h3:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b80000;
  }
  /* custom checkbox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;

}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

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

/* custom radio */
.radio{
  display: flex;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio .checkmark{
  position:absolute;
  top:0;
  left:0;
  width:30px;
  height:30px;
  background:#eee;
  border-radius:50%;
}
.radio:hover .checkmark{
  background:#ccc;
}
.radio .checkmark:after{
  content:"";
  position:absolute;
  display:none;
}
.radio .checkmark:after{
  top:50%;
  left:50%;
  width: 15px;
  height: 15px;
  border-radius:50%;
  border: solid 3px white;
  transform:translate(-50%,-50%) rotate(45deg);
}
.radio input:checked ~ .checkmark{
  background:#2196F3;
}
.radio input:checked ~ .checkmark:after{
  display:block;
}
