
.showcase {
    height: 500px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
}

.float-holder {
    position: relative;
    height: 400px;
    width: 1220px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info {
    float: right;
    background-color:#fff;
    padding: 40px;
}

.info-footer {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

#product-hl__mobile {
    margin-bottom: 10px;
}

.prod-rating {
    height: 5%;
}

.red-done {
    margin-top: 25px;
    list-style-image: url("/static/pictures/icons/red_bullets.svg");
}

.bullets {
    margin-top: 15px;
}

#upload-picture-btn {
    margin-top: 0px;
    margin-left: 20px;
}

.mobile__, .picture-slider {
    display: none;
    position: relative;
}

.desktop__ {
    display: block;
}

.product-pictures {
    width: 100%;
}

@media (max-width: 650px) {
    .showcase {
        display: none;
    }

    .mobile__, .picture-slider {
        display: block;
    }

    .desktop__ {
        display: none;
    }

    .info {
        padding: 10px;
        float: none;
        padding-left: 7%;
        padding-right: 7%;
    }

    .info-footer {
        display: flex;
        justify-content: center;
    }
}


.picture-upload{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    max-width: 150px;
    margin: 0px auto auto;
}

#picture-upload-trigger {
    margin-top: 0px;
    margin-left: 20px;
}

.form-group{
    margin-bottom: 50px;
}

.product-template{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.section1{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.img-wrapper{
    width: 60%;
    padding: 50px;
    position: relative;
}

.product-img{
    width: 80%;
    position: absolute;
}

.discount-badge{
    margin-left: 10px;
    margin-top: 10px;
    background: #ff4040;
    color: white;
    border-radius: 10px;
    z-index: 5;
    position: absolute;
    padding: 20px;
    text-align: center;
    left: 2%;
    top: 0%;
}

.discount-badge-text {
    font-size: 25px;
    font-weight: bold;
}

.product-info{
    background: aliceblue;
    width: 40%;
    padding: 50px;
}

.product-features {
    margin-top: 50px;
}

.tab-custom {
    padding: 20px;
}

@media only screen and (max-width: 650px) {
    .section1 {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .product-info {
        margin-top: 30px;
        width: 100%;
        padding: 0 50px 50px 50px;
        margin-bottom: 50px;
    }

    .total-price-wrapper {
        margin-top: 20px;
    }

    .img-wrapper {
        margin-top: 15px;
        width: 100%;
        max-height: 100%;
        position: initial;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: flex-start;
        padding: 0%;
    }

    .product-img{
        position: unset;
    }

    .discount-badge {
        padding: 10px;
    }
}


.btn-big{
    padding-left: 15px;
    padding-right: 15px;
}


.form-check-modified {
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: space-between;
    min-height: 1.8rem;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 2px solid var(--primary-color);
}

.select-label-wrapper{
    display: flex;
    align-items: center;
}

.price-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.total-price-wrapper {
    margin-top: 50px;
}

.deleted-price {
    font-style: italic;
    font-size: small;
}

.price, .discounted-price {
    font-weight: bold;
    font-size: large;
}

.discounted-price {
    color: red;
}

.label-wrapper{
    margin-left: 5px;
}




/* Product description */

.description {
    margin-top: 50px;
}


.section {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 650px) {
    .description {
        margin-top: 0px;
    }

    .section {
        padding: 0px 30px;
    }
}

.headline {
    margin-top: 30px;
    margin-bottom: 30px;
}


/* headlines with lines */
.__with-sidelines{
    overflow: hidden;
    text-align: center;
}
.__with-sidelines > span{
    position: relative;
    display: inline-block;
}
.__with-sidelines > span:before, .__with-sidelines > span:after{
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 2px solid var(--primary-color);
    width: 51px; /* half of limiter*/
    margin: 0 20px;
}
.__with-sidelines > span:before{
    right: 100%;
}
.__with-sidelines > span:after{
    left: 100%;
}


/* Review */
#pre-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 4px solid var(--primary-color);
    margin-top: 60px;
}

#review-wrapper {
    display: none;
}

.reviews-average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-head-notice {
    font-size: xx-large;
}

.small__{
    font-size: 1rem;
}

.reviews {
    list-style-type: none;
    padding-left: 0px;
}

.review {
    border: 4px solid var(--secondary-color);
    border-top: 0px;
    padding: 10px;
    margin: 30px 0px;
}

.review-body {
    margin: 10px 0px;
}

.rating-stars {
    color: #e7c92e;
}

.review-footer {
    display: flex;
    flex-direction: column;
}

.new-review {
    display: flex;
    flex-direction: column;
}

#rating {
    margin-bottom: 10px;
}

.new-review-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
}

.review-image-holder {
    margin-top: 10px;
    display: flex;
}

.review-image {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

@media only screen and (max-width: 650px) {
    .new-review-footer {
        flex-direction: column;
    }
}

#shade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: silver;
    opacity: 0.8;
}

#modal {
    display: none;
    text-align: center;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 101;
    width: 70%;
}

#review-preview-image {
    max-width: 100%;
    z-index: 101;
}

#close-modal {
    display: none;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 10%;
    padding: 20px;
    background-color: #E2B842;
    z-index: 102;
}


.full-icons-wrapper {
    margin-top: 70px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
}

.half-icons-wrapper {
    display: flex;
    flex-direction: row;
    width: 50%;
}

@media only screen and (max-width: 650px) {
    .full-icons-wrapper {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .half-icons-wrapper {
        width: 100%;
    }
}

.icon-size-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
}
.icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.icon {
    height: 80px;
    width: auto;
}
.size-wrapper {
    width: 100%;
    text-align: center;
}

.size-header {
    font-size: 0.75rem;
}

@media only screen and (max-width: 650px) {
    .size-wrapper {
        margin-top: 20px;
    }
}

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

.content-wrapper {
    display: flex;
    flex-direction: row;
}


.media-part, .text-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 30px;
}

.media-part {
    align-items: center;
}

.product-description-media {
    width: 70%;
}

.product-description-text {
    width: 30%;
}

.price-table {
    width: -webkit-fill-available;
}

.demo-picture {
    width: 80%;
    border-width: 23px;
    border-style: solid;
    border-color: white;
}

.option-wrapper {
    display: flex;
    max-width: 100px;
    margin-left: 10px;
    border: 4px solid transparent;
    align-items: flex-start;
}

.options-wrapper {
    display: flex;
}

.option-picture {
    width: 73px;
}

.passepartout {
    margin-top: 20px;
}

@media only screen and (max-width: 650px) {
    .content-wrapper {
        flex-direction: column;
    }

    .media-part, .text-part {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 10px;
    }

    .text-part {
        margin-top: 30px;
    }

    .options {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .frames, .passepartout {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .demo-picture {
        width: 90%;
    }

    .character-description {
        padding-left: 7%;
        padding-right: 7%;
    }
}


.secondary-outline {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.secondary-outline:focus {
    color: var(--primary-color);
}

.secondary-outline:hover {
    background-color: #fff;
    border-color: var(--secondary-color);
    color: var(--primary-color);
    fill: #fff;
}

.secondary-outline:active {
    background-color: #fff;
    border-color: var(--secondary-color);
    color: var(--primary-color);
    fill: #fff;
}


#progress-bar {
    margin-top: 30px;
    display: none;
}

