html, body {
    margin: 0;
    background-color: #F0F0F0;
    border-width: 0;
    border-bottom: solid;
    border-bottom-width: 0;
    border-bottom-color: grey;
}
nav {
    display: flex;
    background-color: white;
    margin-left: auto;
    justify-content: space-between;
}
nav > :first-child {
    display: flex;
    order: 1;
}
nav > :last-child {
    order: 2;
    justify-content: flex-end;
    width: 25px;
    height: auto;
    margin-right: 17px;
    /* filter: invert(28%) sepia(93%) saturate(5947%) hue-rotate(353deg) brightness(103%) contrast(133%); */
}

.logo {
    height: 40px;
    width: auto;
    padding-left: 17px;
    padding-top: 7px;
}

h1 {
    font-family:  ui-sans-serif, system-ui;
    font-weight: 400;
    font-size: 17px;
    padding-top: 3px;
}
main {
    margin-top: 15px;
    display: flex;
    box-sizing: border-box;
}
.parent {
    width: 100%;
}
.card {
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    margin-bottom: 0px;
    border-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: white;
    text-align: center;
}
.timer {
    font-size: 80px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0px;
}
.time-form {
    text-align: center;
}
.start-stop-btn {
    font-family:  ui-sans-serif, system-ui;
    font-weight: 600;
    align-items: center;
    appearance: none;
    background-color: #84BE2B;
    background-image: linear-gradient(1deg, #84BE2B, #84BE2B 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 6px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: black;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s,background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
    margin-bottom: 15px;
}
.settingsBtn {
  all: unset;
  cursor: pointer;
  margin-right: 1px;
    margin-top: 0px;
    /* background-color: #84BE2B; */
    background-color: #C0C0C0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: center;
    font-size: 15px;
    /* padding: 6px; */
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 4px;
    padding-left: 4px;
}

.settingsBtn:focus {
  outline: orange 5px auto;
}

.weekday-btn {
    border: 2px solid black;
    font-weight: 600;
    align-items: center;
    appearance: none;
    background-color: white;
    background-image: linear-gradient(1deg, white, white 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 1;
    border-color:black;
    box-shadow: none;
    box-sizing: border-box;
    color: black;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s,background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}
.gear {
    width: 24px;
}
.settings-container {
    width: auto;
    justify-content: center;
}
.timer-settings {
    width: 40%;
    border-radius: 6px;
    margin: auto;
    text-align: center;
    background-color: white;
    margin-bottom: 25px;
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.timerCon {
    display: flex;
    justify-content: space-evenly;
    padding-top: 7px;
    padding-bottom: 7px;
    
}
.exercise-settings {
    width: 61%;
    border-radius: 6px;
    margin: auto;
    text-align: center;
    background-color: white;
    margin-bottom: 25px;
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.exercise-container {
  display: flex;
}
.routine-exercise {
  flex: 1 2 auto;
  display: block;
  border-right: 2px solid black;
  padding-right: 5px;
}
.exercises {
  flex: 2 1 auto;
  display: flex;
  align-items: flex-start;
  align-content:flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.routine-exercise > div {
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 5px;
  border-right: 5px black;
}
.exercises > div {
  box-sizing: border-box;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  /* margin-bottom: 0%; */
  /* border: 1px solid black; */
}
.exerciseSuggestion {
    display: hidden;
    border-radius: 6px;
    background-color: white;
    justify-content: center;
    text-align: center;
    width: 40%;
    border-radius: 6px;
    margin: auto;
    overflow: hidden;
    margin-top: 15px;
 }
 .slider {
  -webkit-appearance: none;
  width: 80%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin-bottom: 10px
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #84BE2B;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #84BE2B;
  cursor: pointer;
}

 .autoSlider {
  -webkit-appearance: none;
  width: 40%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin-bottom: -2px;
  margin-top: 5px
}

.autoSlider:hover {
  opacity: 1;
}

.autoSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #84BE2B;
  cursor: pointer;
}

.autoSlider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #84BE2B;
  cursor: pointer;
}
.settingsButtonsContainer{
    display: flex;
    justify-content: center;

}

.vl {
  height: 30px;
  border: 1px solid black;
}

#hhNotifications {
    width: 40%;
    border-radius: 6px;
    margin: auto;
    text-align: center;
    background-color: white;
    margin-bottom: 25px;
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 20%;
  /* margin-left: -60px; */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
