/* unset bs3 setting */
body {
  padding-right: 0px !important;
}

:root {
  --blue: #1b66ff;
  --white: #ffffff;
  --lightgray: #f0f5fb;
  --darkgray: #010c1c;
  --gray: rgba(0, 0, 0, 0.718);
  --bluegray: #eaeef9;
  --lightbluegray: #f9fbff;
  --deepgray: #101b2a;
}

ul,
li {
  list-style: none;
}

header {
  position: relative !important;
  height: 440px !important;

  /* background: -moz-linear-gradient(top, #082031 0%, #0e2c40 100%);
    background: -webkit-linear-gradient(top, #082031 0%,#0e2c40 100%); */
  background: linear-gradient(to bottom, #082031 0%, #0e2c40 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#082031', endColorstr='#0e2c40', GradientType=0);
  -webkit-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
  box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
}

.webp header {
  background: url(/img/banner/Minecraftpagebanner.png) center,
    linear-gradient(
      90deg,
      rgb(5 15 33) 0%,
      rgb(6 18 38) 35%,
      rgba(2, 13, 28, 1) 100%
    ) !important;
  background-size: contain;
}

.no-webp header {
  background: url("/img/bmcwater.png") center !important;
}

header:after {
  background: none !important;
}

.navbar {
  z-index: 9;
}

.animation-header {
  display: none;
}

.range-slider {
  width: 100%;
  display: flex;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 10px;
  border-radius: 5px;
  background: var(--white);
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .range-slider__range {
    width: calc(80% - (73px));
  }
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
  background: #375574;
}

.range-slider__range:active::-webkit-slider-thumb {
  background: #375574;
}

.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
  background: #375574;
}

.range-slider__range:active::-moz-range-thumb {
  background: #375574;
}

.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #375574;
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: var(--deepgray);
  padding: 5px 10px;
  margin-left: 8px;
}

.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -6px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid var(--deepgray);
  border-bottom: 7px solid transparent;
  content: "";
}

::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

.kh-selected {
  padding: 10px 12px;
  background-color: #2c3e50;
  color: var(--bluegray);
  font-weight: 500;
  border-radius: 5px;
  outline: 3px solid var(--blue);
  /* font-weight: 700; */
}

#productmodal .modal-dialog {
  /* min-width: 50%; */
  color: var(--darkgray);
}

#productname {
  margin-top: 8px;
  margin-left: 8px;
}
.detail-price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1.3rem;
}

@keyframes yellowflash {
  0% {
  }

  50% {
    border: var(--blue) 2px solid;
    box-shadow: var(--blue) 0px 12px 40px 0px;
  }

  100% {
  }
}

.attention {
  animation-name: yellowflash;
  animation-duration: 1.5s;
}

.chooser {
  padding: 6px;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #e6e9ee;
  border-radius: 30px;
  margin: 42px 0px;
  list-style-type: none;
}

/* .cloud-host-tabs {
  padding: 20px 0;
} */

.chooserbutton {
  display: inline-block;
  padding: 15px 28px;
  cursor: pointer;
  color: var(--blue);
  font-weight: bold;
  text-transform: uppercase;
  transition: ease-in-out color 0.2s, background-color 0.4s;
}

#budgetbutton,
#premiumbutton {
  border-radius: 22px;
  background-color: var(--white);
  color: var(--blue);
}

#premiumbutton:hover,
#budgetbutton:hover {
  background-color: #3a7afa;
  color: white;
}

.budgetbutton.chosen {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

.premiumbutton.chosen {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

/* .premiumbutton.chosen ~ .budgetbutton {
  background-color: var(--blue) !important;
} */

.premium .ordr-bttn-clouds {
  background: gold;
  color: var(--deepgray) !important;
}

.ordr-bttn-clouds {
  cursor: pointer;
}

.premium .ordr-bttn-clouds:hover {
  background: gold;
  color: white;
}

.clouds-content {
  margin-bottom: 10px;
}
/* 
  .selectorbutton {
    border: 1px solid #b8c2c6;
    border-radius: 16px;
    background-color: transparent;


    padding: 12px;
    font-size: 18px;
    user-select: none;
    outline-width: 0px !important;
  }

  .selectorbutton:hover {
    border: 1px solid #8c9ca6;
  }

  .selectorbutton {
    color: white;
    background-color: #54b55d !important;
    font-weight: 900
  }

  .selectorbutton:hover {
    background-color: #51ab59 !important;
  } */

.premiumselector {
  background: gold !important;
  color: #333;
  border: unset;
}

.premiumselector:hover {
  background: #f3cd03 !important;
  border: unset;
}

.tijdsduur {
  line-height: 26px;
  font-size: 15px;
  filter: opacity(0.5) !important;
  padding-bottom: 25px !important;
}

.product-prijs {
  padding: 0px !important;

  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* .product-prijs::after {
  z-index: -1;
  content: "";
  background: url(/img/productcardpriceblob.svg) no-repeat;
  height: 70px;
  width: 150px;
  position: absolute;
  left: 0;
  margin-top: -5px;
} */

.product-prijs span {
  font-size: 18px;
}

.benedenruimte {
  margin-bottom: 10px !important;
}

.productnaam {
  font-weight: 600;
  font-size: 22px;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}

.product-card:hover {
}
/* @keyframes buy {
  0% {
    width: 115px;
  }

  100% {
    width: 100%;
  }
}
.product-card:hover .primary-btn {
  animation-name: buy;
  animation-duration: 0.3s;
} */
/* .primary-btn {
  transition: 0.3s ease-in-out;
  width: auto;
}
.product-card:hover .primary-btn {
  width: 100%;
} */

.product-card img {
  max-width: 50%;
}

.product-card .prijscontainer {
  display: flex;
  justify-content: center;
}
.keuzehulp-box {
  background-color: var(--white);
  padding: 25px;
  border-radius: 15px;
}

.panel-section {
  background: var(--darkgray);
}

.keuzehulp-text {
  text-align: start;
  border-right: 2px solid var(--lightgray);
  padding-right: 25px;
}

@media (max-width: 768px) {
  .rij {
    flex-direction: column;
  }
  .keuzehulp-text {
    text-align: center;
    border-right: unset;
    padding-right: unset;
  }

  #productmodal {
    overflow-y: scroll;
  }
}

.khbox {
  display: flex;
  background-color: var(--white);
  padding: 30px 60px;
  justify-content: center;
  margin-top: -60px;
  z-index: 100;
  border-radius: 10px;
  align-items: center;
  gap: 40px;
}

.prodgrid .product-btn {
  padding-top: 25px;
  border-top: 3px solid var(--lightgray);
  margin-top: 25px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.prodgrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 2fr 1fr;
  gap: 24px 24px;
  grid-template-areas:
    "div1"
    "div2"
    "div3"
    "div4"
    "div5"
    "prembungee"
    "div6";
}
.prembungee {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px 24px;
  grid-template-areas:
    "prem"
    "bungee";
  grid-area: prembungee;
}

.prem {
  grid-area: prem;
}

.bungee {
  grid-area: bungee;
}

.div1 {
  grid-area: div1;
}

.div2 {
  grid-area: div2;
}

.div3 {
  grid-area: div3;
}

.div4 {
  grid-area: div4;
}

.div5 {
  grid-area: div5;
}

.div6 {
  grid-area: div6;
}
.prembungee-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 500px) {
  .prodgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "div1 div2"
      "div3 div4"
      "div5 div6"
      "prembungee prembungee";
  }

  .prembungee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 24px 24px;
    grid-template-areas: "prem bungee";
    grid-area: prembungee;
  }
}

@media (min-width: 1050px) {
  .prodgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-columns: 1fr;
    gap: 24px 24px;
    grid-auto-flow: row;
    grid-template-areas:
      "div1 div2 div3 div4"
      "div5 prembungee prembungee div6";
  }

  .prembungee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px 24px;
    grid-auto-flow: row;
    grid-template-areas:
      "prem prem"
      "bungee bungee";
    grid-area: prembungee;
  }

  .prembungee-row {
    flex-direction: row;
  }

  .prembungee-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
  }

  .prembungee-header {
    padding: 0px 20px;
  }
}

.centerimg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
}

#minecraftfeatures h3 {
  font-weight: 600;
  margin-bottom: 4px;
}

#minecraftfeatures {
  padding: 100px 0px;
}
#mcpanelshowcase {
  background-color: var(--lightgray);
}

#bedrocksection {
  background-color: var(--darkgray);
  margin-bottom: 80px;
}

.bedrock-banner {
  border-radius: 10px;
  margin-bottom: -80px;
  padding: 40px;
  background-color: var(--blue);
}

.verschil {
  margin-top: 20px;
}

.panel-feature {
  padding: 24px;
  background-color: var(--darkgray);
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  position: static;
  box-shadow: 20px 18px 20px -10px rgb(0 0 0 / 45%);
  border: solid 2px var(--deepgray);
}
/* .pf-svgwrapper {
  background-color: var(--white);
  padding: 4px;
  border-radius: 30px;
  display: flex;
} */
.panel-feature h3 {
  margin-bottom: unset;
}

@media (min-width: 1024px) {
  .panel-feature {
    width: 35%;
    position: absolute;
  }
}

#minecraftfeatures p {
  font-size: 16px !important;
}

#minecraftfeatures .col-md-4 {
  max-width: 500px;
}

.khlistitem {
  display: flex;
  font-size: 16px;
  align-items: center;
}

.prem .product-btn {
  border-top: 3px solid rgb(36, 36, 41);
}
