.inquiry-form {
    padding: 20px;
    background: rgb(231, 231, 231);
    border-radius: 5px;
}

.inquiry-title {
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.inquiry-form > section {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.inquiry-form > section > label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.inquiry-form > section > input,
.inquiry-form > section > textarea {
    padding: 14px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 6px;
    border: 1px solid lightgray;
}

.inquiry-submit {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
}

.inquiry-submit > button {
    padding: 14px 18px;
    color: white;
    background: #E3513A;
    font-size: 16px;
    border: 0px;
    cursor: pointer;
    border-radius: 6px;
}

.inquiry-submit > button:hover {
    background: #f3644e;
}

.main-image {
    margin-bottom: 30px
}

.main-image-tag {
    width: 100%;
    max-height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

.info-tag {
    margin-bottom: 20px;
}

.info-name {
    font-weight: 500;
    font-size: 14px;
}

.info-list {
    display: flex;
}

.info-element {
    padding: 7px 10px;
    border: 1px solid lightgray;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    margin: 10px 5px;
}

.info-list > .info-element:first-child {
    margin-left: 0px;
}

.wrapper {
    margin-top: 100px;
    display: flex;
    justify-content:space-between;
}

.right-side {
    width: 400px;
}

.left-side {
    width:calc(100% - 450px);
}

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

.product-title {
    font-size:40px;
    font-weight:600;
    margin-bottom: 30px;
}

#product-loading {
    text-align: center;
}

#product-not-found, #product-details {
    display: none;
}

@media screen and (max-width: 1050px) {
    .right-side {
        width: 340px;
    }
    .left-side {
        width:calc(100% - 360px);
    }
    .wrapper {
        margin-top: 70px;
    }    
}

@media screen and (max-width: 850px) {
    .right-side {
        width: 100%;
    }
    .left-side {
        width: 100%;
    }
    .wrapper {
        margin-top: 40px;
        flex-direction: column;
    }
    .product-parahs {
        margin-top: 20px;
    }
    .product-title {
        font-size:30px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .info-element {
        font-size: 12px;
        padding: 6px 8px;
        margin: 3px 3px;
    }
    .info-list {
        flex-wrap: wrap;
        margin-top: 3px;
    }
    .product-parahs {
        margin-top: 0px;
    }
    .info-tag {
        margin-bottom: 10px;;
    }
    .inquiry-form > section > input,
    .inquiry-form > section > textarea {
        padding: 10px;
        font-size: 14px;
        font-weight: 300;
        border-radius: 4px;
    }
    .inquiry-submit {
        margin-top: 14px;
    }
    .inquiry-submit > button {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 4px;
    }
    .inquiry-form {
        padding: 15px;
    }
    .right-side {
        margin-top: 30px;
    }
    .inquiry-title {
        font-size: 14px;
    }
    .product-title {
        font-size:24px;
        margin-bottom: 14px;
    }
}