.recommended-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 50%);
  z-index: 9999;
}
.flyout {
	position: absolute;
	left: 0;
	right: 0;
	width: 90%;
	max-width: 425px;
	background: var(--pearl);
	border: 1px solid #000;
	padding: 20px 0px;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
}

.modal_header {
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  border-bottom: 1px solid #000;
}
div#modal_close {
    cursor: pointer;
}
/*.modal_content{
	padding: 0px 15px;
}*/


.rec-modal-diamonds {
    padding: 15px 15px;
}
.rec-modal-filters {
    padding: 15px 15px;
    border-bottom: 1px solid #000;
}
.rec_shape_filters {
    display: flex;
    width: 100%;
}
.rec_shape_filters button {
    padding: 0px;
    border: 0px;
    background: transparent;
}
.rec_shape_filters svg {
    width: 100%;
}

.rec-modal-image {
    width: 49%;
    display: inline-block;
    min-height: 110px;
}
.rec-modal-list {
    width: 50%;
    display: inline-block;
}

.rec_table_head p {
    margin-bottom: 0px;
    padding: 10px 5px;
}
.rec_table_head {
    text-transform: uppercase;
    display: flex;
    font-size: 12px;
    text-align: center;
    justify-content: space-between;
    background: var(--pearl-dark);
}

.rec_table_list{
	height: 150px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.rec_table_list::-webkit-scrollbar {
  display: none;
}

.rec-filter-results {
    display: flex;
    width: 100%;
    gap: 5px;
    padding-bottom: 10px;
}
	.rec-filter-results > div {
	    flex-grow: 1;
	    width: 100%;
	}

.rec_item {
    display: flex;
    justify-content: space-around;
    cursor: pointer;
    gap: 2px;
    padding-bottom: 1px;
    background: var(--pearl-dark);
}
.rec_item > div {
    width: 100%;
    text-align: center;
    background: var(--pearl);
}
.rec_item p {
    margin-bottom: 0px;
    padding: 10px 5px;
    font-size: 12px;
}
.rec_item.active > div {
    background-color: var(--chalcedony);
}
.rec-modal-buttons {
    display: flex;
    justify-content: space-between;
}
.rec-modal-buttons button, .rec-modal-buttons a {
    width: 49%;
    text-align: center;
}

.rec-modal-info {
    padding: 0px 15px;
}
.rec-checklist .check_item {
    padding-bottom: 5px;
}
.rec-checklist .check_item:before {
    content: url(https://doamore.com/wp-content/themes/doamoreproject/assets/media/icons/checkbox-complete.svg);
    padding-right: 5px;
}
.rec_shape_filters button.active svg path {
    fill: var(--citrine);
}

@media (max-width: 768px){
	.rec-filter-results{
		flex-direction: column;
	}
	.rec-modal-image{
		width: 50% !important;
    margin: auto;
	}
	.rec-modal-filters p {
	    margin-bottom: 0px;
	}
}