/* Root Variables */
:root {
  --primary-color: #CEAE58;
  --secondary-color: #2F3E46;
  --font-family: 'Fira Sans', sans-serif;
  --font-size-base: 14px;
  --line-height: 19px;
  --text-color: #2F3E46;
  --bg-color: #fff;
  --border-radius: 12px;
  --transition-speed: 0.3s;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  font-size: var(--font-size-base);
  line-height: var(--line-height);
}

.languageSelector {
  position: absolute;
  top: 4%;
  right: 4%;
  cursor: pointer;
}
.languageSelector .active {
  color: var(--primary-color);
}

/* Input Fields */
input,
textarea {
  width: 100%;
  padding: 8px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #E4E4E9;
  border-radius: 6px;
  transition: border-color var(--transition-speed);
  font-family: var(--font-family);
  font-weight: 400;
  color: #2F3E46B3;
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

::placeholder {
  color: #A1AFC8;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
}

/* Buttons */
.btn {
  padding: 11px 36px;
  font-size: 16px;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  font-family: var(--font-family);
  transition: background-color var(--transition-speed);
}

.btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Selection */
::selection {
  background-color: var(--primary-color);
  color: #fff;
}

/* Default List Styles */
ul,
ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

td,
th {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: var(--primary-color);
  color: #fff;
}

/* Utility Classes */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 16px;
}

.mb-1 {
  margin-bottom: 16px;
}

.p-1 {
  padding: 16px;
}

/* typography */
.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.container {
  max-width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fix {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.relative {
  position: relative;
}

/* ========== Header page Css ========= */


.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header {
  padding: 13px 0px;
  padding-left: 40px;
  border-bottom: 1px solid #F1F1F4;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 49%;
}

.step-item {
  flex: 0 0 auto;
  width: 20%;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #2F3E46;
  gap: 6px;
}

.step-item span.count {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: #F1F1F4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.step-item span.text {
  background: #fff;
  padding-right: 4px;
  flex: 0 0 auto;
}

.step-item::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 1px;
  border-bottom: 2px dashed #E0E0E0;
  content: "";
  z-index: -1;
}

.step-item:last-child::after {
  display: none;
}


.step-item.checked span.count {
  background: #09D48526;
}

.step-item.checked span.count::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url('../imgs/Checkmark.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ========== Header page Css ========= */



/* ========== Layout page Css ========= */

.clubSelect-area {
  height: calc(100vh - 71px);
  width: 100%;
}

.clubSelect-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}

.clubSelect-left {
  flex: 0 0 auto;
  width: 50%;
  padding: 40px 40px;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}

.clubSelect-left::-webkit-scrollbar {
  display: none;
}

.clubSelect-right {
  flex: 0 0 auto;
  width: 50%;
}

.clubSelect-header h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.clubSelect-header p {
  font-size: 14px;
  color: #2F3E46B3;
  margin-bottom: 0px;
}

.clubSelect-header p span {
  color: var(--text-color);
}

.clubSelect-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #F1F1F4;
}

/* ========== Layout Css end ========= */


/* ========== Home page Css ========= */

.clubSelect-map {
  position: relative;
  height: 100%;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-btns {
  display: flex;
  align-items: stretch;
  position: absolute;
  left: 28px;
  top: 24px;
}

.map-btns button {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
}

.map-btns button:first-child {
  border-top-left-radius: 4px;
  border-right: 1px solid #E0E0E0;
  border-bottom-left-radius: 4px;
}

.map-btns button:hover {
  background: #fff8;
}

.map-btns button:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}



.clubSelect-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.clubSelect-result p {
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46B3;
  margin-bottom: 0px;
  line-height: 1;
}


.clubSelect-result span.result {
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46;
}

.srotby {
  padding: 6px 10px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46B3;
}

.srotby span {
  color: #2F3E46;
}

.clubSelect-card {
  border: 1px solid #F1F1F4;
  padding: 15px 16px;
  border-radius: 6px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.clubSelect-card-content {
  flex-grow: 1;
  padding-left: 24px;
  cursor: pointer;
}

.rattings {
  position: absolute;
  right: 24px;
  top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #FFC10D;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 4px;
  background: #FFC10D26;
}

.rattings img {
  flex: 0 0 auto;
  width: 14px;
  position: relative;
  top: -1px;
}

.clubSelect-card-content h6 {
  font-size: 16px;
  font-weight: 500;
  color: #2F3E46;
  margin-bottom: 0px;
}

.clubSelect-card-content p {
  font-size: 14px;
  font-weight: 400;
  color: #2F3E46B3;
  margin-bottom: 9px;
}

.clubSelect-card-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  gap: 28px;
}

.clubSelect-card-content ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #2F3E46B3;
  line-height: 1;
}

.clubSelect-card-content button.choose-club {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  background: transparent;
  border: none;
  padding: 0px;
  font-family: var(--font-family);
}

.clubSelect-card-img {
  flex: 0 0 auto;
  width: 213px;
}

.clubSelect-card-img img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

/* ========== Home page Css end ========= */


/* ========== Home page Css ========= */

.productSelect-items {
  background: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  padding: 20px 22px;
  margin-bottom: 32px;
}

.productselect-checks {
  margin-bottom: 12px;
}

.productselect-item {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 6px;
  padding: 16px 12px;
  gap: 10px;
  border: 1px solid transparent;
}

.productselect-item span.ind {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: flex;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.productselect-infos h5 {
  font-size: 16px;
  font-weight: 500;
  color: #2F3E46;
  margin-bottom: 8px;
}

.productselect-infos p {
  font-size: 14px;
  line-height: 19px;
  color: #2F3E46B3;
  margin-bottom: 11px;
}

.productselect-infos ul.col-2 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: space-between;
  gap: 10px;
}

.productselect-infos ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 19px;
  color: #2F3E46;
  flex: 0 0 auto;
  width: 200px;
}

.productselect-infos {
  max-width: 441px;
}

.productselect-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-grow: 1;
}

.productselect-prising h5 {
  margin-bottom: 0px;
  font-size: 20px;
  text-align: end;
  font-weight: 500;
  color: var(--primary-color);
}

.productselect-prising h5 span {
  font-size: 16px;
  display: block;
}

.productselect-checks:last-child {
  margin-bottom: 0px;
  cursor: pointer;
}

.productselect-checks input:checked~label span.ind {
  border-color: #2F3E46;
}

.productselect-checks input:checked~label .productselect-item {
  border-color: #2F3E46;
}

.productselect-item span.dot {
  width: 12px;
  height: 12px;
  display: block;
  background: #2F3E46;
  border-radius: 50%;
  opacity: 0;
  transition: all .3s ease;
}

.productselect-checks input:checked~label .productselect-item span.dot {
  opacity: 1;
  visibility: visible;
}

.moreInfo-block h5 {
  font-size: 20px;
  font-weight: 600;
  color: #2F3E46;
  margin-bottom: 9px;
}

.moreInfo-block p {
  color: #2F3E46B3;
}

.moreInfo-durations {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.moreInfo-durations .col {
  padding: 0px 15px;
  width: 33.33%;
}

.moreInfo-chooseExtra {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.moreInfo-chooseExtra .col {
  padding: 0px 15px;
  width: 50%;
}




.duration-Item label {
  background: #F8F8F8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.duration-Item label span.ind {
  width: 16px;
  height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.duration-Item label span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F3E46;
  display: block;
  opacity: 0;
  transition: all .3s ease;
}

.duration-Item input:checked~label span.ind {
  border-color: #2F3E46;
}

.duration-Item input:checked~label span.dot {
  opacity: 1;
}





.chooseExtra-item label {
  background: #F8F8F8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.chooseExtra-item label span.ind {
  width: 16px;
  height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.chooseExtra-item label span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F3E46;
  display: block;
  opacity: 0;
  transition: all .3s ease;
}

.chooseExtra-item input:checked~label span.ind {
  border-color: #2F3E46;
}

.chooseExtra-item input:checked~label span.dot {
  opacity: 1;
}

.chooseExtra-item .contents {
  flex-grow: 1;
}

.chooseExtra-item .contents h6 {
  font-weight: 600;
  color: #2F3E46;
  font-size: 14px;
}

.chooseExtra-item .contents ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 8px;
}

.chooseExtra-item .contents ul li {
  font-size: 12px;
  line-height: 19px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
  padding: 2px 0px;
}

.chooseExtra-item .contents .prises {
  font-size: 16px;
  font-weight: 500;
  color: #2F3E46;
  text-align: end;
}

.chooseExtra-item .contents .prises sub {
  font-size: 12px;
  color: #BBB;
  bottom: 3px;
  position: relative;
}

.moreInfo-block {
  margin-bottom: 30px;
}

.moreInfo-block .discountCode {
  width: 100%;
  color: var(--primary-color);
}
.moreInfo-block .discountCodeError {
  width: 100%;
  color: #f16666;
}

.moreInfo-effective {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moreInfo-effective .date {
  padding: 10px 12px;
  background: #F8F8F8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 59px;
  font-size: 14px;
}

.moreInfo-effective .date span.icon img {
  max-width: 15px;
}

.moreInfo-effective .date span {
  display: block;
  line-height: 1;
}


/* .product-slideImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */

.product-slideImg img {
  max-width: 100%;
}

.product-slideImg {
  height: 100%;
}

.product-slider {
  height: 100%;
}


.product-slider {
  height: 100%;
  position: relative;
}

.product-slideImg {
  height: 100%;
}



.product-extraImgs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.product-extraImgs .img-1 {
  width: 42%;
  height: 45%;
  position: relative;
  left: 10%;
}

.product-extraImgs img {
  border-radius: 27px;
  object-fit: cover;
  object-position: top;
  position: relative;
}

.product-extraImgs img.img-2 {
  width: 52%;
  max-width: 100%;
  margin: -93px 96px 0px auto;
}


.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  gap: 10px;
}

.slider-dots span {
  width: 20px;
  height: 20px;
  background: #0006;
  display: block;
  border-radius: 50%;
  position: relative;
}

.slider-dots span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: #FFF6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.slider-dots span.active::after {
  opacity: 1;
}


.productselect-link {
  text-align: end;
}

.productselect-link a {
  font-size: 12px;
  font-weight: 500;
  color: #2F3E46;
  text-decoration: underline;
}

.productselect-link a:hover {
  text-decoration: none;
}

.product-bottom-btn {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  padding: 0px 40px;
}

/* ========== Home page Css end ========= */


/* ========== Registration page  Css ========= */
.bg-grey {
  background-color: #F8F8F8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.registration-info h2 {
  font-size: 20px;
  font-weight: 500;
  color: #2F3E46;
  margin-bottom: 20px;
}

.regiInfo-block h3 {
  font-size: 16px;
  font-weight: 500;
  color: #2F3E46;
  margin-bottom: 12px;
}

.regiInfo-block-content .productselect-content,
.regiInfo-block-content .chooseExtra-item {
  background: #fff;
  border-radius: 6px;
  padding: 15px 16px;
}

.registration-info {
  max-width: 544px;
}

.regiInfo-block {
  margin-bottom: 32px;
}

.prise-overview ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  color: #2F3E46;
}

.prise-overview ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prise-overview ul li span:last-child {
  font-weight: 500;
}

.prise-overview ul li.total span {
  color: var(--primary-color);
}

.prise-overview ul li.sep {
  border-bottom: 1px solid #E6E6F0;
}


.userData {
  padding: 32px 40px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.userData::-webkit-scrollbar {
  display: none;
}

.userData-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2F3E46;
  margin-bottom: 0px;
}

.userData-header {
  margin-bottom: 26px;
}

.userData-block h3 {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 600;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -6px;
  margin-right: -6px;
}

.col-3 {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0px 6px;
}

.label-text {
  font-size: 14px;
  font-weight: 500;
  color: #2F3E46;
  margin-bottom: 4px;
}

.input-wrapper {
  margin-bottom: 14px;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
  padding: 0px 6px;
}

.checkbox label span.ind {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: flex;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: normal;
}

.input-radios {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
}

.checkbox label span.dot {
  width: 8px;
  height: 8px;
  display: block;
  background: #2F3E46;
  border-radius: 50%;
  opacity: 0;
  transition: all .3s ease;
}

.checkbox input:checked~label span.dot {
  opacity: 1;
}

.checkbox input:checked~label span.ind {
  border-color: #2F3E46;
}

.userData-box {
  margin-bottom: 20px;
}

.uploadImg {
  border: 1px dashed #BBB;
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
}

.img-prev {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 8px;
}

.img-prev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.img-infos span {
  font-size: 10px;
  font-weight: 400;
  color: #2F3E46B3;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}


.img-infos b {
  font-size: 10px;
  color: #2F3E46;
  line-height: 1;
}

.userData-block {
  margin-bottom: 24px;
}

/* ========== Registration-info page Css end ========= */

/* ========== Success page Css ========= */

.clubSelect-area.success-page {
  height: 100vh;
}

.clubSelect-area.success-page .clubSelect-left {
  width: 100%;
}

.success-page .registration-info {
  margin: 0 auto;
}

.success-page .clubSelect-left {
  padding-top: 67px;
}

.success-header .success-icon {
  margin-bottom: 25px;
}

.success-header h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}

.success-header {
  margin-bottom: 32px;
}

.success-icon img {
  max-width: 100%;
}

/* ========== Success page Css end ========= */

/* ========== Home page Css ========= */

/* ========== Home page Css end ========= */




/* Responsive Adjustments */
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .form-area .container {
    max-width: 554px;
  }

  .success-content {
    max-width: 554px;
  }

  .container {
    max-width: 1140px;
  }


}



/* Custom select veld */
.classSelect {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  appearance: none;
  background-color: white;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18" height="18"><path fill="black" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
  cursor: pointer;
}

/* Focus effect */
.classSelect:focus {
  outline: none;
  border-color: #c0a570;
  box-shadow: 0 0 3px rgba(192, 165, 112, 0.5);
}

/* Tijdslots */
.schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-slot {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  width: 100px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.time-slot:hover {
  border-color: #c0a570;
}
.time-slot.disabled:hover {
  border-color: none;
}

/* Actieve geselecteerde stijl */
.time-slot.selected {
  border-color: #c0a570;
  background: #faf3e0;
  font-weight: bold;
}
.time-slot.selected >.day, .time-slot.selected >.time {
  color: #333;
}

/* Dag bovenaan */
.day {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}
.disabled > .day {
  color: #dedede;
}
.disabled > .time {
  color: #dedede;
}

/* Tijd onderaan */
.time {
  font-size: 12px;
  color: #666;
}






.loaderParent {
  position: absolute;
  top: 0;
  left: 22%;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;

  &__caption {
    background: red;
  }
}

.loaderIcon {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0.0)
  }

  50% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }

  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



/**
FINISHED ICON
**/
.icon-status {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;

  &__blob {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(76, 192, 248);
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
      margin: 10px;
      height: 5rem;
      width: 5rem;
      transform: scale(1);
      animation: pulse-black 3s infinite;
      z-index: 2;

      .checkmark {
          display: inline-block;
          width: 110px;
          height: 110px;
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
      }
  
      .checkmark_stem {
          position: absolute;
          width: 8px;
          height: 24px;
          background-color: #ffffff;
          left: 40px;
          top: 33px;
          border-top-left-radius: 12px;
          border-top-right-radius: 12px;
      }
      
      .checkmark_kick {
          position: absolute;
          width: 20px;
          height: 8px;
          background-color: #ffffff;
          opacity: 0.4;
          left: 27.5px;
          top: 57px;
          border-top-left-radius: 12px;
          border-bottom-left-radius: 12px;
          border-bottom-right-radius: 12px;
      }
  }

  &__dots {
    position: absolute;
    top: 45%;
    z-index: 1;
  }

  &__dot {
      position: absolute;
      width: 20px;
      height: 20px;
      animation: shoot 3s ease-out infinite;
      animation-name: shoot, fade;
  
      &:nth-child(1) {
          transform: translate(-6vw, 1vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 16px;
          height: 16px;
          top: -0.5rem;
          left: -4.5rem;
      }
  
      &:nth-child(2) {
          transform: translate(-8vw, -3vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 12px;
          height: 12px;
          top: -1.5rem;
          left: -5rem;
      }
  
      &:nth-child(3) {
          transform: translate(-5vw, -4vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 8px;
          height: 8px;
          top: -1.75rem;
          left: -3.05rem;
      }
  
      &:nth-child(4) {
          transform: translate(-4vw, 7vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 4px;
          height: 4px;
          top: 2.5rem;
          left: -2.5rem;
      }
  
      &:nth-child(5) {
          transform: translate(6vw, 5vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 16px;
          height: 16px;
          top: 1.55rem;
          left: 2.75rem;
      }
  
      &:nth-child(6) {
          transform: translate(7vw, 0vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 12px;
          height: 12px;
          top: -0.65rem;
          left: 3.75rem;
      }
  
      &:nth-child(7) {
          transform: translate(3vw, 4vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 8px;
          height: 8px;
          top: 1.75rem;
          left: 1.75rem;
      }
  
      &:nth-child(8) {
          transform: translate(4vw, 6vh);
          background: rgba(76, 192, 248);
          border-radius: 50%;
          width: 4px;
          height: 4px;
          top: 3.05rem;
          left: 1.75rem;
      }
  }
}

@keyframes pulse-black {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(76, 192, 248, 0.7);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 20px rgba(76, 192, 248, 0);
  }

  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(76, 192, 248, 0);
  }
}

@keyframes shoot {
  0% {
      transform: translate(50%, 50%);
  }
}

@keyframes fade {
  to {
      opacity: 0;
  }
}


.timesRow {
  min-width: 40vw;
  overflow-x: scroll;
}

.timeDetails {
  height:80px;
  width: 60px;
  margin-right: 4px;
  float: left;
}

.coachDetails {
  width: 80px;
  float: left;
  margin-top: 24px;
}

.loading {
  margin-top: 8px;
  margin-left: 4px;
  font-style: italic;
}