
.slidecontainer {
  width: 100%; /* Width of the outside container */
}
.rangeSlider__fill {
    background: #6182a9;
}

.rangeSlider__handle:after {
    background: #6182a9;
}
.rangeSlider {
    background: #ced1d5;
    margin-top: -4px;
    margin-bottom: 5px;
    
}
.bundle-container {
    display: flex;
    flex-direction: column;
    width: 670px;
}

.bundle-text-container {
    display: flex;
    padding-left: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 5px;
    border: solid 1px #dedede;
}

.bundle-key  {
    flex-grow: 1;
    font-family: 'SBSansInterfaceRegular';
    font-size: 14px;
    margin-bottom: 5px;
}

.bundle-value {
    font-family: 'SBSansInterfaceRegular';
    font-size: 21px;
}


.bundle-text {
    align-self: flex-end;
    font-family: 'SBSansInterfaceRegular';
    font-size: 21px;
    padding-left: 4px;
}

.rangeSlider__horizontal {
    height: 4px;
    width: 100%;
}

.rangeSlider__handle {
    border: none;
    width: 18px;
    height: 18px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
    background: white;

}
.rangeSlider__handle__horizontal {
    top: -7px;
}

.rangeSlider__handle:after {
    width: 10px;
    height: 10px;
}
.edges-container {
    display: flex;
    font-family: 'SBSansInterfaceRegular';
    font-size: 14px;
    color: #878b90;
    justify-content: space-between;
}
.subtitle {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: 'SBSansInterfaceSemibold';
  font-size: 21px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #2c3136;
}
.accordion-container {
    display: flex;
    border-radius: 5px;
    border: solid 1px #bfc5ca;
}
.accordion-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    
}
.accordion-upper {
    display: flex;
}
.accordion-lower {
    display: flex;
    transition: max-height .2s, margin .01s ease-out;
    max-height: 700px;
}
.accordion-button {
    display: flex;
    width: 46px;
    border-left: solid 1px #bfc5ca;
    background-color: #f0f3f6;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.value-upper-double-container, .value-lower-double-container  {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    flex-basis: 10%;
}
.value-upper-double-container {
    padding-left: 30px;
    padding-top: 30px;
    box-sizing: border-box;
    padding-bottom: 30px;
    border-bottom: solid 1px #bfc5ca;
}
.value-upper-simple-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 10%;
    box-sizing: border-box;
    padding-right: 30px;
    padding-top: 30px;
    padding-left: 25px;
    padding-bottom: 30px;
    border-bottom: solid 1px #bfc5ca;
}

.value-lower-double-container {
    flex-direction: row;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-top: 30px;
    box-sizing: border-box;
}
.value-lower-double-element {
    display: flex;
    flex-direction: column;
    flex-basis: 10%;
    flex-grow: 1;
}

.value-upper-text {
    font-family: 'SBSansInterfaceRegular';
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  color: #2c3136;
}
.value {
    font-family: 'SBSansDisplaySemibold';
    font-size: 36px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: normal;
    color: #2c3136;
    margin-top: 12px;
}

.value-lower-title {
    font-family: 'SBSansInterfaceSemibold';
    font-size: 21px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    color: #2c3136;
}

.value-lower-text {
    font-family: 'SBSansInterfaceRegular';
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: #2c3136;
    margin-top: 20px;
}
.mark {
    font-size: 10px;
    vertical-align: top;
}
.value-lower-simple-container, .value-upper-simple-container {
    background-color: #f0f3f6;
}
.value-lower-simple-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 10%;
    box-sizing: border-box;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 25px;
    padding-top: 30px
}

.arrow {
    color: #000;
    transition: transform .2s ease-out;
    transform: rotate(180deg);
}

body {
    max-width: 1170px;
    margin: auto;
}
@media (max-width: 1249px) {
    body {
        max-width: 942px;
    }

    .bundle-container{
        max-width: 536px;
    }
}

@media (max-width: 1023px) {
    body {
        max-width: 687px;
    }
    .bundle-container{
        max-width: 392px;
    }
}
@media (max-width: 767px) {
    body {
        max-width: 295px;
    }
    .bundle-container{
        max-width: 100%;
    }
    .value-upper-simple-container {
        display: none;
    }
    .value-lower-simple-container {
        display: none;
    }
    .accordion-container {
        flex-direction: column;
    }
    .accordion-button {
        width: 100%;
        border-top: solid 1px #bfc5ca;
        border-left: none;
        height: 40px;
    }
    .value-upper-double-container, .value-lower-double-container {
        padding: 20px;
    }
    .value-lower-double-container {
        
        flex-direction: column;
    }
    .value-lower-double-element:nth-child(2) {
        margin-top:20px;
    }
}