.value-list {
	position: absolute;
	top: 0;
	left: auto;
	width: calc(100% - 1.9rem);
	color: #fff;
}

.chosen-value {
	font-family: 'Gotham_Light', sans-serif;
	font-size: inherit;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.10);
	transition: 0.3s ease-in-out;
	z-index: 9;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.20);
	color: #fff;
	width: 100%;
	border-radius: .25rem;
}

.chosen-value::-webkit-input-placeholder {
    color: #fff;
}

.chosen-value:hover {
    background-color: var(--thm-primary);
    cursor: pointer;
}

.chosen-value:hover::-webkit-input-placeholder {
    color: #fff;
}

.chosen-value:focus,
.chosen-value.open {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    outline: 0;
    background-color: var(--thm-primary);
    color: #fff;
}

.chosen-value:focus::-webkit-input-placeholder,
.chosen-value.open::-webkit-input-placeholder {
    color: #fff;
}

.value-list {
    list-style: none;
    margin-top: 4rem;
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: 0.3s ease-in-out;
	z-index: 9;
	border-radius: .25rem;
}

.value-list.open {
    max-height: 320px;
    overflow: auto;
}

.value-list li {
	position: relative;
	height: 4rem;
	background-color: var(--thm-body-light);
	padding: 1rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s;
	opacity: 1;
}

.value-list li:hover {
    background-color: var(--thm-primary);
}

.value-list li.closed {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.sidebar-side .recent-post .post .text {
	text-transform: none;
}
.blog-details .text-content p {
	margin-bottom: 30px;
	text-align: justify;
}
.news-block .lower {
	background: rgba(255, 255, 255, 0.20);
}
.news-block .link-box a {
	background: var(--thm-body-light);
}
@media screen and (max-width: 576px) {
    .blog-details .text-content {
        font-size: 16px !important;
    }
}