﻿.psm-review-container {
    background-color: white;
    padding: 10px;
}

.psm-reviews-button {
    padding: 10px;
    border: 1px black solid;
    background-color: #d3d3d3;
    color: black;
    display: flex;
    flex-flow: row;
    width: auto;
    float: left;
    margin: 5px;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    border-radius: 5px;
}

.psm-review-third {
    flex: 0 0 30%;
    border: 1px #d9d9d9 solid;
    background-color: white;
    color: black;
    padding: 10px;
    margin: 10px 0;
    position: relative;
}
    .psm-review-third > table {
        position: relative;
        box-sizing: content-box;
        table-layout: fixed;
        width: 98%;
        margin-left: 5px;
        margin-top: 5px;
    }

.psm-review-comments {
    min-height: 230px;
    padding: 5px;
}

@media (min-width:601px) {
}

@media (min-width:993px) {
}

.psm-review-row-padding {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 991px) {
    .psm-review-third {
        flex: 0 0 47%;
    }
}

@media (max-width: 767px) {
    .psm-review-third {
        flex: 0 0 97%;
    }

    .psm-review-comments {
        min-height: unset;
    }
}

/* The Modal (background) */
.psm-reviews-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.psm-reviews-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 600px;
}

/* The Close Button */
.psm-reviews-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -24px;
    margin-right: -15px;
}

    .psm-reviews-modal-close:hover,
    .psm-reviews-modal-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
