/* Common Styles */

/* Smaller H-tags in mobile */
@media (max-width: 575px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 1rem; }
}

.text-strike {
    text-decoration: line-through;
}

:target::before {
    content: "";
    display: block;
    height: 80px; /* fixed header height*/
    margin: -80px 0 0 0; /* negative fixed header height */
}


/* custom checkbox */
.m2-cr-container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 576px) {
    .form-inline label.m2-cr-container {
        justify-content: inherit;
    }
}

/* Hide the browser's default radio button */
.m2-cr-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.m2-cr-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.m2-cr-container:hover input ~ .m2-cr-radio {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.m2-cr-container input:checked ~ .m2-cr-radio {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.m2-cr-radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.m2-cr-container input:checked ~ .m2-cr-radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.m2-cr-container .m2-cr-radio:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* custom content */
.m2-custom-content img {
  max-width: 100%;
  height: auto !important;
}
