
main{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
}

.content-body{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 500px 2rem 1fr;
    grid-template-columns: 500px 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.content-header-title{
    margin-bottom: 0;
}

.product-code{
    margin-top: 0.5rem;
    color: rgb(113, 112, 112);
}

.content-start{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.1rem;
}

.square-wrapper{
    position: relative;
    padding-bottom: 100%;
}

.square-container{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product-image, .product-gallery-image{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-image.shkalle{
    -o-object-fit: contain;
       object-fit: contain;
}

.product-manufacturer{
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
}

.product-gallery-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr 0.1rem 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.1rem;
}

.fa-angle-right, .fa-angle-left{
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1000;
    color: white;
    z-index: 1046;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 3rem;
    text-shadow: 0px 0px 10px #000000cc;
    box-shadow: none;
    padding: 20px;
}

.fa-angle-left{
    left: 0px;
}

.fa-angle-right{
    right: 0px;
}

.product-thickness-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: center;
    gap: 0.5rem;
    position: relative;
}

.product-thickness-image{
    width: min(100%, 500px);
}

.product-thickness{
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.5rem 0 0.5rem;
    font-weight: bolder;
    width: 100%;
    justify-content: center;
}

.content-desciption{
    margin-top: 0;
}

.more-help{
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid #bababa;
}

aside{
    text-align: center;
}

.doors-container{
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem;
}

.doors-container img{
    box-shadow: 2px -2px 7px #a4a4a4c4;
    cursor: pointer;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 940px) {
    .content-body{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .content-body{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .more-help{
        margin-top: 1rem;
    }
    
    .doors-container{
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}