@font-face {
  font-family: Mavenpro Variablefont Wght;
  src: url('../fonts/MavenPro-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Hv Simplicite Alternative;
  src: url('../fonts/hv-simplicite-alternative-regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5eeed;
  --brown: #585938;
  --white: #fafafa;
  --pink: #db8aa7;
  --dark_bg: #f5e4e2;
  --lines: #c3c3bc;
  --beige: #dad2c2;
}

.body {
  background-color: var(--bg);
  color: var(--brown);
  flex-flow: column;
  align-items: center;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  font-weight: 100;
}

.server-success {
  display: none;
  padding: 8px;
  border-radius: 5px;
  background-color: #A8D5BA;
}

.server-fail {
  display: none;
  padding: 8px;
  border-radius: 5px;
  background-color: #F4A6A3;
}

.imagesholder {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.image-item {
  width: 30%;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.rows-fake {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.stepnumber {
  color: #2324261a;
  margin-top: 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  position: absolute;
  top: 0px;
  right: 5px;
}

.stepincolumn {
    border: 1px solid var(--lines);
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.holderlistitem {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.column {
  width: 45%;
}

.columns {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.kolommen-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px;
}

.flexhorizontal {
  max-width: 100%;
  display: flex;
  align-items: center;
}

.agendawidth {
  max-width: 400px;
}

.status.ok {
    background-color: #9dff9d;
    color: #02431b;
}
.status {
    background-color: #fbf7ce;
    border-radius: 5px;
    color: #ff4500;
    font-size: 8px;
    line-height: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

.printbutton {
  display: flex;
  background-color: var(--beige);
  padding: 4px;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-size: 10px;
}

.basic-list-hold {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.rounded-select {
  border-radius: 3px;
  font-size: 16px;
}

.logo-im-nav {
  width: 110px;
  transition: transform 0.3s ease;
}

.logo-im-nav:hover {
  transform: scaleX(1.1);
}

.prevnextbtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--beige);
    font-weight: 800;
    background-color: #dad2c254;
  font-size: 14px;
}

.calendar-controls {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 400px;
}

.calendar {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  max-width: 400px;
  grid-template-columns: repeat(7, 1fr);
}
.day {
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  width: 13%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px;
  background-color: var(--beige);
  position: relative;
  color: var(--brown);
}
.day.active {
  background-color: var(--brown);
  color: white;
}
.day.activefront {
  background-color: var(--dark_bg);
  color: var(--brown);
}
.day.today {
  background-color: transparent;
  color: var(--pink);
  border: 1px solid var(--beige);
}
.day.disabled {
  opacity: 0.3;
}
.trainingcircle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brown);
  inset: auto -5px -5px auto;
}

.control-qty {
  align-items: center;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.control-qty-update {
  cursor: pointer;
  background-color: var(--beige);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.control-qty-update.result {
  background-color: white;
  color: var(--brown);
  text-align: center;
  cursor: auto;
  width: 30px;
  min-width: 30px;
  font-size: 14px;
  border: 0px;
}

.holdertoggle {
    padding-bottom: 10px;
    padding-top: 10px;
}

.toggle-switch {
    align-items: center;
    display: flex;
    gap: 10px;
}

.toggle-switch input {
    display: none;
}

.slider {
    background: linear-gradient(145deg, var(--beige), #f7f7f7);
    border-radius: 26px;
    box-shadow: inset 0 0 5px var(--beige);
    cursor: pointer;
    height: 26px;
    position: relative;
    transition: background .3s;
    width: 50px;
}

input:checked+.slider {
    background: linear-gradient(145deg, var(--beige), var(--dark_bg));
}

.slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--beige);
    top: 2px;
    left: 2px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .slider::before {
  transform: translateX(24px);
  background-color: #58593885;
}

.holder-hour {
  display: flex;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--white);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--beige);
  font-size: 12px;
  text-decoration: none;
}

.title-hour {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.book-hour-btn {
  background-color: var(--beige);
  border-radius: 5px;
  font-weight: 600;
  font-size: 10px;
  padding: 1 10 1 10;
}

.hour-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 14px;
}

.matrix-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.matrix-table th {
  font-weight: bold;
  background-color: var(--beige);
  padding: 8px;
  border: 1px solid var(--beige);
}

.matrix-table td {
  padding: 8px;
  vertical-align: middle;
  min-height: 20px;
  font-weight: normal;
  border: 1px solid var(--beige);
  font-size: 12px;
}

.matrix-table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.matrix-table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.matrix-table th:first-child {
  border-top-left-radius: 5px;
}

.matrix-table th:last-child {
  border-top-right-radius: 5px;
}

.ui-message {
  top: 20px;
  right: 10px;
  position: fixed;
  background-color: #F4FFF4;
  z-index: 200;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  color: #175106;
  padding-right: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--beige);
  transition: opacity 0.3s ease,
}

.ui-message.error {
  background-color: #fbe9e1;
  color: #7a1202;
}

.close-ui-message {
  background-color: transparent;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

.alwaysflexhorizontal {
  display: flex;
  flex-direction: row;
}

.tag {
  background-color: var(--bg);
  padding: 3px;
  border-radius: 5px;
  color: var(--pink);
  padding-left: 6px;
  padding-right: 6px;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  max-height: 100%;
}

.collection-items-basic {
  background-color: white;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
  transition: opacity .2s;
  border: 1px solid var(--lines);
}

.actionbtn {
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 12px;
  display: flex;
  border: 1px solid transparent;
  background-color: transparent;
  transition: all 0.5s ease;
}

.actionbtn:hover {
  border-color: var(--beige);
  padding: 13px;
}

.holderactionbtns {
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  max-width: 100px;
  display: flex;
}

.collection-items-basic.flex-hor-spaced {
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}

.pasword-forget-holder {
  justify-content: flex-end;
  margin-top: -10px;
  display: flex;
}

.paswoord-forget {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.loading-ui {
  display: none;
  width: 100px;
}

.containcenter {
  width: 95%;
  max-width: 1500px;
}

.containcenter.hero {
  justify-content: center;
  align-items: center;
  min-height: 550px;
  display: flex;
}

.containcenter.centered-gap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.containcenter.smaller {
  width: 75%;
}

.heading {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Hv Simplicite Alternative, Arial, sans-serif;
  font-weight: 400;
}

.heading.hero {
  transform: translate(-65px);
  font-size: 24px;
}

.heading.two {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 20px;
}

.heading.centersmall {
  text-align: center;
  width: 500px;
  max-width: 100%;
}

.spacer {
  height: 10px;
}

.spacer.double {
  height: 20px;
}

.navholder {
  border: 1px solid var(--brown);
  background-color: var(--brown);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  min-height: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.holdernavlinks {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navlink {
  color: var(--brown);
  text-transform: uppercase;
  padding: 10px;
  font-family: Mavenpro Variablefont Wght, Arial, sans-serif;
  text-decoration: none;
}

.heroholder {
  justify-content: center;
  display: flex;
  position: relative;
}

.herotextholder {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 350px;
  padding-left: 20px;
  display: flex;
}

.heroimage {
  object-fit: cover;
  width: 375px;
  height: 375px;
}

.heroimageholder {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.gradientheroimage {
  background-image: linear-gradient(45deg, #f5eeed00, #f5eeeda6 59%, var(--bg) 93%, var(--bg));
  position: absolute;
  inset: 0%;
}

.bold-text {
  font-weight: 700;
}

.circlehero {
  border: 1px solid var(--pink);
  background-color: var(--dark_bg);
  border-radius: 50%;
  width: 400px;
  height: 400px;
  position: absolute;
  inset: -150px auto auto -200px;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 300px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.section.coloursection {
  position: relative;
}

.section.coloursection.quote {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.nopadtop {
  padding-top: 20px;
}

.holdertitleright {
  text-align: right;
}

.centerdiv {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.centerdiv.gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.arrowbutton {
  border: 1px solid var(--lines);
  color: var(--brown);
  background-color: #fafafa80;
  border-radius: 5px;
  width: 370px;
  max-width: 100%;
  padding: 10px 40px 10px 10px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 2px 5px #0003;
  cursor: pointer;
}

.arrow {
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  transition: all 0.3s ease;
}

.arrow::before {
  content: '+'; /* Default state */
  display: inline-block;
  transition: all 0.3s ease;
}

.arrowbutton:hover .arrow::before {
  content: '●'; /* Or '◯', '⬤', or '⚫' */
}

.colouredcontainer {
  z-index: 5;
  background-color: var(--brown);
  color: var(--bg);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 60px;
  display: flex;
  position: relative;
  gap: 40px;
}

.colouredcontainer.nocolour {
  background-color: transparent;
  color: var(--brown);
}

.colouredcontainer.quote {
  padding-bottom: 40px;
  padding-right: 40px;
}

.smallparagraf {
  max-width: 300px;
  font-size: 16px;
}

.smallparagraf.larger {
  max-width: none;
}

.dienst-hero {
  border: 2px solid var(--brown);
/*   mix-blend-mode: luminosity; */
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 50%;
  max-width: 35%;
  box-shadow: 0 2px 20px #0003;
}

.dienst-hero.notgreen {
  mix-blend-mode: normal;
}

.socialmediaholder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  max-width: 900px;
  display: flex;
}

.holder-instagram-phones {
  justify-content: space-between;
  width: 350px;
  display: flex;
}

.holdersocialhandles {
  margin-top: 20px;
}

.socialmedialink {
  color: #c1bdbd;
  text-transform: uppercase;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.holder-phone {
  position: relative;
}

.phone-image {
  border: 2px solid #fff;
  border-radius: 10px;
  width: 160px;
  overflow: hidden;
}

.phone-image.black {
  border-color: #000;
}

.socialmediaicon {
  margin-right: 10px;
}

.time {
  z-index: 5;
  color: #000;
  background-color: #fff;
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
  position: absolute;
  inset: 6px auto auto 14px;
}

.holdertitleandsocialmedialinks {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 250px;
  display: flex;
}

.pinktext {
  color: var(--pink);
}

.button {
  background-color: var(--pink);
  text-transform: uppercase;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Mavenpro Variablefont Wght, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.button.accept {
  background: linear-gradient(45deg, #175106, #4caf50);
}

.button.navbase {
  background-color: transparent;
  color: var(--beige);
}
.button.navbase:hover {
  color: var(--pink);
}
.button.navsec {
  background-color: var(--beige);
  color: var(--brown);
}

.button.login {
  background-color: var(--brown);
  width: 100%;
}

.button.fake {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
  line-height: 16px;
}

.plain-button {
  background-color: transparent;
  text-transform: uppercase;
  border-radius: 5px;
  padding-left: 0px;
  padingright: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Mavenpro Variablefont Wght, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.plain-button:hover {
  font-weight: 600;
}

.flexvertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 100%;
  display: flex;
}

.flexvertical.gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.spacer10px {
  height: 10px;
}

.google-maps {
  background-image: url('../images/maps.jpeg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 100px;
  align-self: auto;
  width: 50px;
  height: 50px;
}

.footercontentholder {
  flex-flow: wrap;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.footersection {
  background-color: var(--brown);
  color: #fffcf8;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 100px 40px 60px;
  display: flex;
  position: relative;
}

.bottomfooter {
    bottom: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--brown);
    height: 60px;
}

.link-bottomfooter {
    color: var(--white);
    padding-right: 5px;
    font-size: 10px;
    text-decoration: none;
}

.link-bottomfooter.codoo {
    opacity: 0;
}

.footerpart {
  flex-flow: column;
  align-items: center;
  min-width: 250px;
  padding: 20px;
  display: flex;
  width: 30%;
}

.holderlogofooter {
  border: 1px solid var(--beige);
  background-color: var(--bg);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 10vw;
  display: flex;
  position: absolute;
  inset: -5vw auto auto 35vw;
}

.logofooter {
  width: 50%;
  max-width: 250px;
}

.link-footer {
  color: var(--white);
  text-transform: uppercase;
  padding-right: 5px;
  font-size: 14px;
  text-decoration: none;
}

.link-footer:hover {
  padding-left: 5px;
  padding-right: 0;
}

.link-footer.title {
  font-weight: 700;
}

.link-footer.title:hover {
  padding-left: 0;
}

.mapslink {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

._100-widthcenter {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.menuicon {
  display: none;
}

.loginicon {
  background-color: var(--dark_bg);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 15px;
  display: flex;
  position: relative;
  z-index: 201;
  margin-left: 10px;
}

.holderpopup {
  z-index: 101;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.holderpopup-new {
  display: none;
  z-index: 10;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: #00000080;
  perspective: 1000px;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.popup-scene {
  width: 85%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-card {
  width: 100%;
  height: 100%;
  background-color: var(--brown, #b86b40);
  transform: rotateY(-180deg);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.holderpopup-new.show {
  opacity: 1;
}

.holderpopup-new.show .popup-card {
  transform: rotateY(0deg);
  opacity: 1;
  background-color: var(--bg, white);
  color: black;
}

.innerpopup {
  background-color: var(--bg);
  border-radius: 10px;
  width: 85%;
  max-height: 85%;
  padding: 0;
  display: flex;
  position: relative;
}
.innerpopup.dash {
  padding: 20px;
}
.innerpopup.small {
  width: 90%;
  max-width: 400px;
  height: auto;
  flex-direction: column;
  align-items: stretch;
}

.closepopupbtn {
  border: 1px solid var(--lines);
  background-color: var(--dark_bg);
  color: var(--brown);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: -20px -20px auto auto;
}

.loginsection {
  color: var(--dark_bg);
  background-image: linear-gradient(#000000bf, #000000bf), url(../images/login-bg.jpg);
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
}

.holdernavabs {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.undertitle {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
}

.undertitle.big {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}

.undertitle.inspring {
  padding-left: 5px;
}

.form-block {
  width: 350px;
  max-width: 100%;
}

.inputfield {
  background-color: var(--dark_bg);
  border-radius: 5px;
}

.inputfield.onwhite {
  background-color: var(--white);
}

.holder-milestone {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-milestone {
  background-color: var(--beige);
  object-fit: cover;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
}

.smalltext {
  color: #585938d9;
  font-size: 14px;
  line-height: 20px;
}

.smalltext.white {
  color: var(--beige);
}

.div400px {
  max-width: 500px;
}

.quote {
  font-size: 22px;
  line-height: 30px;
}

.flexright {
  text-align: right;
  flex-flow: column;
  align-items: flex-end;
  display: flex;
}

.holdernavdashboard {
  border-right: 1px solid var(--brown);
  flex-flow: column;
  align-items: center;
  width: 25vw;
  padding: 20px 20px 100px;
  display: flex;
  position: fixed;
  inset: 0% auto 0% 0%;
  z-index: 100;
}

.linkdashboard {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--brown);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  cursor: pointer;
}

.icondashboard {
  width: 20px;
}

.holdercontentdashboard {
  width: 100%;
  padding: 40px 60px 40px 30vw;
}

.imagepopup {
  object-fit: cover;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 50%;
  height: 100%;
  max-height: 100%;
}

.textpopup {
  width: 50%;
  padding: 40px;
  overflow: auto;
}

.certificate-icon {
  width: 25px;
}

.adminnavbtn {
  display: none;
}

.holderdienst {
  border-radius: 10px;
  width: 100%;
  min-width: 275px;
  max-width: 275px;
  min-height: 275px;
  position: relative;
  overflow: hidden;
}

.holderdiensten {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.image-dienst {
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.dienst-tekst-grad {
    color: var(--bg);
    background-image: linear-gradient(#585938f2, #585938f2);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    display: flex;
    position: absolute;
    inset: 0%;
    padding-top: 60px;
}

.icon-dienst {
  height: 30px;
  position: absolute;
  inset: 10px 10px auto auto;
}

.icon-dienst.pilates {
  height: 32px;
}

.pakketholder {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--beige);
  border-radius: 5px;
  width: 100%;
  max-width: 380px;
  padding-right: 60px;
  display: flex;
  position: relative;
  text-decoration: none;
  color: var(--brown);
}

.pakket-icon-hold {
  background-color: var(--beige);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 75px;
  min-width: 75px;
  min-height: 75px;
  display: flex;
  position: relative;
  padding: 15px;
}

.icon-pakket {
  width: 25px;
}

.holder-coaches-im {
  position: absolute;
  inset: -10px 0 -10px -7px;
  display: flex;
  flex-direction: row;
}

.coach-image-icon {
  width: 25px;
  height: 25px;
  background-color: var(--beige);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border: 1Px solid var(--brown);
}

.price-pakket {
  background-color: var(--beige);
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 10px;
  line-height: 12px;
  display: inline;
  position: absolute;
  inset: 5px 5px auto auto;
}

.buy-btn-pakket {
  border: 1px solid var(--beige);
  background-color: var(--brown);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 10px;
  display: flex;
  position: absolute;
  inset: auto -10px -10px auto;
}

.pakkettenholder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
  margin: 20px;
  flex-direction: column;
}

.holderbtnandtext {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.holdertextpakket {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 1700px) {
  .body {
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .colouredcontainer.quote {
    width: 85%;
  }

  .stepincolumn {
    padding: 2vw;
  }

  .holderlistitem {
  padding: 1vw;
}

  .agendawidth {
    max-width: 550px;
  }

  .basic-list-hold {
    gap: 1vw;
  }

  .pakketholder {
    width: 30vw;
    min-width: 30vw;
  }
  
  .price-pakket {
    border-radius: 1vw;
    padding: 0.3vw 1vw;
    font-size: 1vw;
    line-height: 1.2vw;
}

  .pakket-icon-hold {
    width: 5vw;
    min-width: 5vw;
    min-height: 5vw;
}

  .buy-btn-pakket {
    width: 40px;
    height: 40px;
    padding: 14px;
    inset: auto -15px -15px auto;
}

  .logo-im-nav {
    width: 10vw;
  }

  .link-footer {
    font-size: 1.1vw;
  }

  .smalltext {
    font-size: 1vw;
    line-height: 1.6vw;
  }

  .containcenter.hero {
    min-height: 70vh;
  }

  .heading {
    font-size: 3vw;
    line-height: 3.5vw;
  }
  .heading.simple {
    font-size: 18px;
    line-height: 24px;
  }

  .heading.hero {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .heading.two {
    font-size: 2vw;
    line-height: 2.3vw;
  }

  .navholder {
    padding: 2vw;
  }

  .herotextholder {
    max-width: 30vw;
  }

  .heroimage {
    width: 30vw;
    height: 30vw;
  }

  .circlehero {
    width: 35vw;
    height: 35vw;
  }

  .arrowbutton {
    width: 35vw;
    padding: 1vw 3vw 1vw 1vw;
  }

  .smallparagraf {
    max-width: 30vw;
    font-size: 1.2vw;
  }

  .smallparagraf.larger {
    max-width: none;
  }

  .socialmediaholder {
    max-width: none;
  }

  .holder-instagram-phones {
    width: 35vw;
  }

  .phone-image {
    width: 16vw;
  }

  .holdertitleandsocialmedialinks {
    max-width: 25vw;
  }

  .button {
    font-size: 1.2vw;
  }

  .button.fake {
    font-size: 1vw;
    line-height: 1.4vw;
  }

  .flexvertical.gap {
    width: 35vw;
  }

  .undertitle {
    font-size: 1vw;
    line-height: 1.5vw;
  }

  .smalltext.white {
    font-size: 1vw;
    line-height: 1.4vw;
  }

  .holderdienst {
    min-width: 20vw;
    max-width: 20vw;
    min-height: 20vw;
    font-size: 1vw;
  }
}

@media screen and (max-width: 991px) {
  .containcenter {
    width: 90%;
  }

  .button.navbase {
    color: var(--brown);
  }

  .holdernavlinks {
    display: none;
    position: fixed;
    background-color: var(--beige);
    top: 0;
    z-index: 200;
    bottom: 0;
    left: 0;
    flex-direction: column;
    right: 0;
    justify-content: center;
  }

  .menuicon {
    background-color: var(--dark_bg);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 15px;
    display: flex;
    position: relative;
    z-index: 201;
  }

  .containcenter.centered-gap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .heroimage {
    width: 300px;
  }

  .circlehero {
    width: 35vw;
    height: 35vw;
    top: -100px;
    left: -20%;
  }

  .section.coloursection {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .dienst-hero {
    max-width: 200px;
    max-height: 200px;
  }

  .google-maps {
    align-self: auto;
    width: 50px;
    height: 50px;
  }

  .footercontentholder {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .imagepopup {
    display: none;
  }

  .column {
    width: 100%;
  }

  .inputfield {
    font-size: 16px;
  }

  .textpopup {
    width: 100%;
  }
  
  .containcenter.centered-gap {
    flex-flow: column;
    align-items: flex-start;
  }

  .heading.hero {
    margin-top: 20px;
    transform: none;
  }

  .navholder {
    box-shadow: none;
    background-color: #f5eeed00;
    border-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .heroholder {
    flex-flow: column;
  }

  .herotextholder {
    padding: 20px;
  }

  .gradientheroimage {
    background-image: none;
  }

  .circlehero {
    top: -60px;
  }

  .colouredcontainer {
    padding: 40px;
  }

  .colouredcontainer.quote {
    width: 95%;
  }

  .socialmediaholder {
    flex-flow: column;
  }

  .holder-instagram-phones {
    justify-content: space-around;
    width: 100%;
    margin-top: 40px;
  }

  .holdersocialhandles {
    margin-top: 0;
  }

  .socialmedialink {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .holdertitleandsocialmedialinks {
    flex-flow: row;
    align-items: center;
    max-width: 100%;
  }

  .google-maps {
    width: 40px;
    height: 40px;
  }

  .footercontentholder {
    flex-flow: wrap;
    justify-content: center;
    padding-top: 60px;
  }

  .footersection {
    padding: 20px 0;
  }

  .footerpart {
    padding-left: 0;
    padding-right: 0;
  }

  .holderlogofooter {
    width: 40%;
    height: 100px;
    top: -50px;
    left: 30%;
  }

  .holdernavdashboard {
    border-right-style: none;
    flex-flow: row;
    justify-content: center;
    width: 100vw;
    padding: 0;
    inset: auto 0% 0%;
  }

  .linkdashboard {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
  }

  .logonavdashboard {
    display: none;
  }

  .linksholdernavdashboard {
    background-color: var(--white);
    justify-content: space-around;
    width: 100%;
    padding-top: 10px;
    display: flex;
    box-shadow: 0 2px 5px #0003;
  }

  .linksholdernavdashboard.admin {
    flex-flow: column;
    justify-content: flex-start;
    height: 100dvh;
    padding-top: 40px;
    display: none;
    overflow: auto;
  }

  .holdercontentdashboard {
    width: 90%;
    margin-bottom: 140px;
    padding-left: 0;
    padding-right: 0;
  }

  .admintoppart {
    justify-content: space-between;
    display: flex;
  }

  .adminnavbtn {
    z-index: 100;
    width: 20px;
    display: block;
    position: relative;
  }
}

@media screen and (max-width: 479px) {
  .heroimage {
    width: 100%;
  }

  .image-item {
    width: 100%;
  }

  .footerpart {
    align-items: flex-start;
  }

  .mapslink {
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
  }

  .image-milestone {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }

  .certificate-icon {
    width: 20px;
  }

  .circlehero {
    width: 120px;
    height: 120px;
    top: 0;
    bottom: -25%;
    left: -15%;
  }

  .colouredcontainer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    align-items: flex-end;
    padding-left: 20px;
    padding-right: 20px;
  }

  .colouredcontainer.quote {
    padding-right: 20px;
  }

  .colouredcontainer.socials {
    align-items: center;
  }

  .holder-instagram-phones {
    flex-direction: row;
  }

  .holdersocialhandles {
    margin-top: 20px;
  }

  .holder-phone {
    width: 45%;
  }

  .holdertitleandsocialmedialinks {
    text-align: center;
    flex-flow: column;
  }

  .holderlogofooter {
    width: 50%;
    left: 25%;
  }

  ._100-widthcenter.leftphone {
    align-items: flex-start;
  }

  .linkdashboard {
    font-weight: 700;
  }
}


@font-face {
  font-family: 'Mavenpro Variablefont Wght';
  src: url('../fonts/MavenPro-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hv Simplicite Alternative';
  src: url('../fonts/hv-simplicite-alternative-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
