#product-details-table {
    border-collapse: collapse;
    border-spacing: 0;
    position: relative;
    text-align: left;
    table-layout: fixed;
    border-color: grey;
    font-size: 0.8em;
    width: 100%;
    /* margin: 0 5px 10px 5px; */
}

thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    border-collapse: separate;
}

tr {
    height: 30px;
    color: #30323d;
    display: table-row;
    background-color: white;
    border-bottom: thin solid #f1f1f1;
}

td:first-child {
    font-weight: bold;
}

td {
    padding: 13px 10px;
    word-wrap: break-word;
    outline: none;
}

#load-input {
    position: relative;
    padding: 0 5px 0 20px;
    width: 75px;
    height: 30px;
    border-radius: 7px;
    text-align: left;
    border: 1px solid #6f6f6f;
}

#backup-time {
    font-style: normal;
    padding-left: 20px;
    color: #4CB963;
    font-weight: bold;
}

.detail-group-title {
    background-color: #f5f5f5;
    font-weight: normal !important;
    font-size: 1.1em;
}

.products-container {
    display: flex;
    align-self: baseline;
    flex-direction: column;
    width: 75%;
    margin: auto;
    margin-top: 60px;
    padding: 10px 0 50px 0;
    justify-content: flex-start;
}

.product-title {
    text-align: left;
    color: #30323d;
    line-height: 1.2em;
    padding-bottom: 10px;
}

#model-name {
    padding: 10px 0px;
    font-size: 14px;
    color: #555555;
}

#model-price{
    font-size: 1.3em;
    padding-bottom: 10px;
}

.sub-title {
    text-align: left;
    color: #B80056;
    margin: 0 0 5px 0;
}

.list-points {
    font-size: 1em;
}

.product-info-container {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    justify-content: center;
}

.product-image-container {
    order: 0;
    padding: 30px 5% 30px 5%;
    width: 40%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
}

.product-image {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.powercom-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
}

.product-description-container {
    order: 1;
    flex-grow: 1;
    padding: 0 0 60px 5%;
    width: 45%;
}

.product-info-group {
    border-top: 1px solid #e7e6e6;
    padding: 20px 10px;
}

.details-container {
    display: flex;
    gap: 20px;
    padding: 2%;
    width: 95%;
    order: 2;
}

.details-header {
    width: 25%;
}

.details-content {
    flex-grow: 0;
    width: 75%;
}

.table-title {
    order: 3;
    text-align: center;
    color: white;
    font-size: 18px;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 0px;
}

.table-container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 0px 40px -20px #555555;
}

.amazon-button {
    background: #FFA41C;
    border-color: #FF8F00;
    color:black;
    border-width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 250px;
    box-shadow: 0px 0px 20px -10px #555555;
    border-radius: 100px;
}

.amazon-button:hover {
    background: #FA8900;
    color:black;
}

.hidden {
    display: none;
}

.powercom-link {
    text-decoration-color: #a2dffb;
    color: #007db5;
}

.powercom-link:hover,
.powercom-link:focus {
    color: #B80056;
    text-decoration-color: #B82C6D;
}

@media only screen and (max-width: 900px) {
    .products-container {
        width: 700px;
    }

    .details-container {
        flex-direction: column;
    }

    .details-header,
    .details-content {
        width: 100%;
    }

    .product-image-container {
        padding: 30px 5% 60px 5%;
        height:400px;
    }

    .powercom-logo {
        right: 0;
        width: 35%;
    }

    .product-description-container {
        padding: 0 5% 60px 5%;
    }
}

@media only screen and (max-width: 700px) {
    .products-container {
        padding-top: 10px;
        width: 100%;
    }

    .details-container {
        flex-direction: column;
    }

    .details-header,
    .details-content {
        width: 100%;
    }


    .product-info-container {
        flex-direction: column;
        justify-content: center;
    }

    .product-image-container {
        padding: 30px 0 60px 0;
        margin: auto;
        height: 400px;
        width: 50%;
    }

    .product-description-container {
        width: 90%;
        padding: 0 0 10px 5%;
    }

    .title-container::before {
        opacity: 0.1;
        filter: blur(3px);
        -webkit-filter: blur(3px);
    }

}