
.custom-common {
    font-family: 'Montserrat';
    font-size: 18px;
    letter-spacing: 1px;
    color: #ffffff;
    display: flex;
}

.preisplugin-flex-row{
    display: flex;
    flex-wrap: wrap;
    /*position: relative;*/
}

.preisplugin-flex-row .investment-amount {
    border-radius: 16px;
    font-size: 16px;
}

.preisplugin-flex-col{
    display: flex;
    flex-direction: column;
    position: relative;

}

.preisplugin-w-40 {
    width: 40%;
}
.preisplugin-w-50 {
    width: 50%;
}
.preisplugin-w-60 {
    width: 60%;
}
.preisplugin-w-100 {
    width: 100%;
}

.preisplugin-m-0{
    margin: 0 !important;
}

.preisplugin-mt-0{
    margin-top: 0;
}
.preisplugin-ml-0{
    margin-left: 0;
}
.preisplugin-mr-0{
    margin-right: 0;
}

.preisplugin-mb-0{
    margin-bottom: 0 !important;
}

.preisplugin-mt-10{
    margin-top: 10px;
}

.preisplugin-mt-20{
    margin-top: 20px;
}

.preisplugin-mr-10{
    margin-right: 10px;
}

.preisplugin-ml-10{
    margin-left: 10px;
}
.preisplugin-mt-a{
    margin-top: auto;
}

/*lg*/
@media screen and (min-width: 1024px) {
    .investment-amount {
        float: right;
    }

    .preisplugin-w-lg-50 {
        width: calc(50% - 10px);
    }

    .preisplugin-w-lg-60 {
        width: calc(60% - 10px);
    }
    .preisplugin-w-lg-70 {
        width: calc(70% - 10px);
    }

    .preisplugin-w-lg-30 {
        width: calc(30% - 10px);
    }

    .preisplugin-w-lg-40 {
        width: calc(40% - 10px);
    }
    .preisplugin-mt-lg-0{
        margin-top: 0;
    }

    .preisplugin-w-lg-100 {
        width: 100%;
    }
    .preisplugin-flex-row > *:first-child {
        margin-right: 10px; /* Adjust as needed */
    }

    /* Add margin to the left of the last item */
    .preisplugin-flex-row > *:last-child {
        margin-left: 10px; /* Adjust as needed */
    }
}
/*md*/
@media screen and (min-width: 1024px) {
}
/*sm*/
@media screen and (min-width: 1024px) {
}

.custom-header {
    text-align: start;
    font-weight: 600;
    font-style:normal;
    color: #ffffff;
}

.custom-cell {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: #969BB4;
}

.price-toggle:hover{
    border-color:#ffffff78 !important;
}

.custom-cell-name {
    padding: 1%;
    color: #FFFFFF;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    text-align: left;
    padding: 10px;
}
/*slider*/
/* Stil für die Container */
.container {
    display: flex;
}

/* Stil für jedes der beiden nebeneinander liegenden Divs */
.box {
    flex: 1;
    padding: 20px;
    /*border: 1px solid #ccc;*/
    margin: 5px;
}
.slider-form {
    display: flex;
    flex-direction: column;
}
.investment-amount {
    /*background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="20" viewBox="0 0 50 20"><text id="currency-text" x="20" y="12" font-size="7" fill="gray">CHF</text></svg>');*/
    /*background-repeat: no-repeat;*/
    /*background-position: calc(100% - 10%) center;;*/
    background-size: auto 100%;
    border-radius: 20px !important;
    /*border-bottom: 5px solid var(--awb-color7) !important;*/
}

input[type="text"] {
    padding-left: 5%;
}
/* Haupt-Range-Stile */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(7, 208, 243, 0.89) 0.5%, #274956 60%);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

/* Thumb-Stile für WebKit (Chrome, Safari) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #34d5db;
    border-radius: 50%;
    cursor: pointer;
}

/* Thumb-Stile für Firefox */
input[type="range"]::-moz-range-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #34d5db;
    border-radius: 50%;
    cursor: pointer;
}

