.products-mapping-text{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.product-link{
    text-decoration: none;
}

.techniques-graph-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem auto;
}

.techniques-graph{
    flex-basis: 55%;
    height: 500px;
}

.techniques-table-container{
    flex-basis: 40%;
}

@media(max-width: 1023px){
    .techniques-graph{
        flex-basis: 100%;
    }

    .techniques-table-container{
        flex-basis: 100%;
    }
}

.mitre-number-cell{
    padding-right: 1.5rem !important;
}

#technique-modal{
    display: none;
}

@media(max-width: 1023px){
    #technique-modal{
        width: 90% !important;
    }
}

#technique-modal-mapping{
    color: #000000 !important;
}

/** Export form **/

#export-pdf{
    background: url("/assets/img/import_24.svg") no-repeat center center;
    background-size: cover;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    cursor: pointer;
}

#export-loader{
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
}

.form-content__row{
    margin-bottom: 0.5rem;
}

.form-content__row.action-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.form-content__row .action-add{
    text-align: center;
}

.action-button{
    border: 2px solid transparent;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "Golos Text",Helvetica,Arial,sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.1;
    padding: 0.5rem;
    text-decoration: none;
}

.action-add{
    background: #02ab3c;
    color: white !important;
    border-radius: 12px;
    padding: 0.7rem;
}

.action-add:hover{
    opacity: 0.8;
}

.action-add:disabled{
    opacity: 0.8;
    background: #808080FF;
}

.action-add:active{
    background: #006A4B;
}