/* The Modal (background) */
.kp-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 */
	z-index: 100000;
}

/* Modal Content/Box */
.kp-modal-content {
	background-color: #fefefe;
	margin: 100px auto; /* 15% from the top and centered */
	padding: 20px 50px;
	border: 1px solid #e2e2e2;
    position: relative;
    max-width: 800px;
    border-radius: 5px;
}

/* The Close Button */
.kp-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
    position: absolute;
    top: 0;
    right: 10px;
}

.kp-modal-close:hover,
.kp-modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.kp-modal-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 50px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    color: #1F1F1F;
    margin-bottom: 25px;
}

.kp-flex {
    display: flex;
    gap: 10px;
}

.kp-pills {
    display: flex;
    gap: 5px;
}

.kp-pills > .sr-item-details-analysis-item {
    margin-top: -8px;
}

.kp-reviews-container {
    margin-top: 10px;
    min-height: 50px;
    max-height: 600px;
    overflow-y: auto;
}

.kp-reviews-container > .user-revies {
    padding: 15px 50px 15px 30px;
    width: 100%;
}


@media (max-width: 800px) {
    .kp-modal-content {
        margin: 30px 30px;
        padding: 20px 5px 20px 20px;
    }
    .kp-modal-title {
        font-size: 22px;
        text-align: center;
    }
    
}