.glue-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}
.glue-container .col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.btn-calc {
    color: white;
    background: #2B2A29;
    height: 50px;
    width: 100%;
    max-width: 290px;
    margin-top: 15px;
    border: none;
}
.card-buy-action__link.btn.btn--black {
    background: #2B2A29 !important;
    height: 50px;
}


#glue-form label {
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.glue-container input,
.glue-container select {
    color: #8c8c8c;
    width: 100%;
    max-width: 490px;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px;
    border: none;

}

.glue-container input[type="number"] {
    width: 100%;
    max-width: 290px;
}


#result {
    margin-top: 60px
}
#result h4 {
    font-weight: 400;

    font-size: 20px;

}

#result .calc-container {
    display: flex;
    width: 100%;
    gap: 30px;
}

#result .calc-container .calc-item {
    flex: 1;
    padding: 20px;

}

#result .calc-container .calc-item p {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
}
#result .calc-container .calc-item p strong {
    font-weight: 600;
}

.product {
    display: none;
}
.product.show {
    display: block;
}

.product .flex-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.product .flex-row .col {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product .flex-row .col img {
    width: 100%;
    object-fit: contain;
}
.product-name {
    font-size: 20px;
    font-weight: 600;
}
.product-price {
    font-family: "Geologica-Regular";
    font-size: 24px;
    color: var(--black);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.card-price-about{
    display: flex;
    justify-content: center;
    height: 28px;
}

.card-price-about-text{
    position: absolute;
    background-color: var(--dark-grey);
    max-width: 240px;
    margin-top: -93px;
    box-shadow: 3px 4px 9px var(--dark-grey);
    display: none;
}
.card-price-about-pic{
    cursor: pointer;
}
.card-price-about-text-wrap {
    color: var(--white);
    font-family: "Geologica-LIght";
    font-size: 14px;
    padding: 12px;
}
.card-price-about-text-wrap::before, .card-price-about-text-wrap::after {
    content: '';
    position: absolute;
    left: 46%; bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid var(--dark-grey);
}
.card-price-about-text-wrap::after {
    border-top: 10px solid var(--dark-grey);
    bottom: -19px;
}
.card-price-about:hover .card-price-about-text {
    display: flex;
}

@media (max-width: 768px) {
    .glue-container {
        flex-direction: column;
        align-items: center;
    }
    .product-price {
        font-size: 18px;
    }
}