.priceswitcher {
    display: flex;
    flex-direction: column;
    .priceswitcher__discount {
        background: #f55923;
        padding: 7px 20px 4px 20px;
        border-radius: 50px;
        display: block;
        width: max-content;
        /* font-size: 1rem; */
        font-weight: 400;
        color: #fff;
        margin-bottom: 10px;
    }
    /* .priceswitcher__secondary-price:not(.active) { display: none; } */
    .priceswitcher__main-price{
        order: 1;
    }
    .priceswitcher__secondary-price {
        order: 2;
    }
    .priceswitcher__main-price {
        margin-bottom:0;
        .priceswitcher__amount-old {
            font-weight: 400;
            margin-right: 6px;
        }
        .priceswitcher__amount {
            color: #f55923;
            font-weight: 900;
            letter-spacing: 0;
        }
    }
    .priceswitcher__secondary-price {
        .priceswitcher__amount-old {
            font-weight: 100;
        }
        .priceswitcher__amount {
            color: #717171;
            font-weight: 500;
        }
    }

    .priceswitcher__label {
        color: #b2b2b2;
        font-weight: 100;
        font-size: 11px;
    }

    .priceswitcher__amount-old {
        color: #9b9b9b;
        text-decoration: line-through;
    }
}

.priceswitcher div {
    margin-bottom: 0;
}

.priceswitcher--product-page {
    margin-top: 25px;
    .priceswitcher__discount {
        font-size: 1rem;
    }
    &>div:only-child {
        text-align: left !important;
        .priceswitcher__amount {
            font-size: 1.8rem !important;
            color: #f55923 !important;
            font-weight: 900 !important;
            letter-spacing: 0 !important;
        }
        .priceswitcher__amount-old {
            font-size: 1.1rem !important;
        }
        .priceswitcher__label {
            font-size: 0.7rem !important;
        }
    }
    &>.priceswitcher__main-price {
        text-align: left !important;
        .priceswitcher__amount {
            font-size: 1.8rem;
        }
        .priceswitcher__amount-old {
            font-size: 1.1rem;
        }
        .priceswitcher__label {
            font-size: 0.7rem;
        }
    }
    &>.priceswitcher__secondary-price {
        text-align: left !important;
        .priceswitcher__amount-old {
            font-size: 0.8rem;
        }
        .priceswitcher__amount {
            font-size: 0.8rem;
        }
        .priceswitcher__label {
            font-size: 0.7rem;
        }
    }
}

.priceswitcher--thumbnail {

    .priceswitcher__net:first-child:not(.priceswitcher__secondary-price),
    .priceswitcher__gross:first-child:not(.priceswitcher__secondary-price),
    .priceswitcher__net:only-child,
    .priceswitcher__gross:only-child
    {
        .priceswitcher__amount {
            color: #f55923 !important;
            font-size: 1rem !important;
            font-weight: 900 !important;
            letter-spacing: 0 !important;
        }
    }

    .priceswitcher__net:last-child:not(.priceswitcher__main-price),
    .priceswitcher__gross:last-child:not(.priceswitcher__main-price)
    {
        .priceswitcher__amount {
            color: #717171;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0;
        }
    }

    .priceswitcher__discount {
        font-size: 1rem;
    }
    .priceswitcher__main-price {
        .priceswitcher__amount {
            font-size: 1rem;
        }
        .priceswitcher__amount-old {
            font-size: 0.8rem;
        }
        .priceswitcher__label {
            font-size: 0.8rem;
        }
    }
    .priceswitcher__secondary-price {
        .priceswitcher__amount-old {
            font-size: 0.8rem;
        }
        .priceswitcher__amount {
            font-size: 0.8rem;
        }
        .priceswitcher__label {
            font-size: 0.7rem;
        }
    }
}

.thumbnail-container .product-price-and-shipping > .regular-price,
.thumbnail-container .product-price-and-shipping > .price {
    display: none !important;
}

.product-prices  .current-price .current-price-value {
    display: none !important;
}

.product-prices {
    margin-top: 0;;
}


.product-price > .current-price, .product-prices > .product-discount  {
    display: none !important;
}

.tax-shipping-delivery-label {
    display: none;
}

.thumbnail-container .product-description .priceswitcher--product-page {
    display: none !important;
}

.priceswitcher-settings {
    position: fixed;
    left: 0;
    top: 350px;
    z-index: 1000 !important;
    background: white;
    padding: 13px;
    box-shadow: 2px 2px 2px #7e7e7e26;
    border-radius: 10px;
}

.priceswitcher-settings__toggle {
    background: #777;
    width: 31px;
    height: 21px;
    border-radius: 30px;
    position: relative;
}
.priceswitcher-settings__toggle-dot {
    background: #7daaff;
    width: 19px;
    height: 19px;
    border-radius: 30px;

    position: absolute;
    top: 1px;
    bottom: 1px;

}

.priceswitcher-settings input {
    display: none;
}

.priceswitcher-settings.net {
    .priceswitcher-settings__toggle-dot {
        left: 1px;
    }
    .priceswitcher-settings__price-label--net {
        display: block !important;
    }
}

.priceswitcher-settings.gross {
    .priceswitcher-settings__toggle-dot {
        right: 1px;
    }
    .priceswitcher-settings__price-label--gross {
        display: block !important;
    }
}
.priceswitcher-settings__price-label--net, .priceswitcher-settings__price-label--gross {
    display: none;
}

.priceswitcher-settings__price-display {
    font-size:12px !important;
    display: block;
    color: #000 !important;
    font-weight: 200;
}

@media only screen and (max-width: 769px) {
    main {
        padding-bottom: 45px !important;
    }

    .priceswitcher-settings {
    bottom: 0;
    left:0;
    right: 0;
    top: unset;
    display: flex;
    gap: 15px
    }
}

/* .product-miniature__pricing .priceswitcher--product-page {
  display: none !important;
}

.product-miniature__pricing .priceswitcher--product-page {
  display: none !important;
}

.product-miniature__pricing > .price {
  display: none !important;
} */

.product-prices > .product-price {
  display: none !important;
}

.priceswitcher--thumbnail + .priceswitcher--product-page{
  display: none !important;
}
