.rooms-container .category .list-of-rooms .rooms-wrapper{
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	justify-content: space-between;
	
}

.rooms-container .category .list-of-rooms {
	/*max-height: 0;
    overflow: hidden;*/
    display: none;
}

.rooms-container .category.open .list-of-rooms {
	/*max-height: unset;
	display: block;*/
}



.rooms-container .category .list-of-rooms .room {
	width: 210px;
    height: 210px;
    background-size: contain;
    background-position: center center;
    background-color: #fff;
    background-repeat: no-repeat;
    margin: 0px 0px 16px 0;
    cursor: pointer;
    position: relative;
}

.rooms-container .category .list-of-rooms .room:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #292E2D;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
}

.rooms-container .category .list-of-rooms .room.selected:after,
.rooms-container .category .list-of-rooms .room:hover:after {
	opacity: 0.85;
}


.rooms-container .category .list-of-rooms .room .dot {
	position: relative;
	width: 52px;
	height: 52px;
	pointer-events: none;
	-webkit-border-radius: 50px;
	        border-radius: 50px;
	/*border: 2px solid #fff;*/
	left: 75px;
	top: 75px;
	z-index: 100;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
	
	background-image: url(../../assets/images/plus.svg);
}

/*.rooms-container .category .list-of-rooms .room .dot:after {
	content: '';
	width: 21px;
	height: 2px;
	position: absolute;
	left: 13px;
	top: 23px;
	background-color: #FFF;
}

.rooms-container .category .list-of-rooms .room .dot:before {
	content: '';
	width: 2px;
	height: 21px;
	position: absolute;
	top: 13px;
	left: 23px;
	background-color: #FFF;
}*/

.rooms-container .category .list-of-rooms .room.selected .dot,
.rooms-container .category .list-of-rooms .room:hover .dot {
	opacity: 1;
}

.rooms-container .category .list-of-rooms .room.loading .dot {
	animation: rotation 3s linear infinite;
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


.rooms-container .category {
	position: relative;
}

.rooms-container .category:after {
	font-family: 'FontAwesome';
	content: '';
	font-size: 36px;
	font-weight: 200;
	position: absolute;
	top: 18px;
	right: 20px;
	color: #FFFFFF;
	pointer-events: none;
}

.rooms-container .category.open:after {
	content: '';
	color: #fff;
	
	font-size: 20px;
}
.rooms-container .category .toggle {
	
  	cursor: pointer;
}

.rooms-container .category h3 {
	font-family: 'Montserrat', sans-serif;
  	font-size: 18px;
  	font-weight: 600;
  	letter-spacing: 4.5px;
  	color: #FFFFFF;
  	background-color: #292E2D;
  	text-transform: uppercase;
  	padding: 20px;
  	
  	-webkit-transition: background .3s ease, color .3s ease;
  	   -moz-transition: background .3s ease, color .3s ease;
  	    -ms-transition: background .3s ease, color .3s ease;
  	     -o-transition: background .3s ease, color .3s ease;
  	        transition: background .3s ease, color .3s ease;
}


.rooms-container .category.open h3 {
	color: #fff;
	background-color: #B46932;
}


@media only screen and (max-width: 767px) {
	.rooms-container .list-of-rooms .room {
		width: 100%;
		height: auto;
		padding-bottom: 100%;
	}
}


.rooms-container .category .list-of-rooms .popup {
	display: none;
	background: #fff;
    padding: 70px 80px;
    position: relative;
    margin-bottom: 20px;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper {
	position: relative;
	opacity: 0;
	-webkit-transition: opacity .3s ease .2s;
	   -moz-transition: opacity .3s ease .2s;
	    -ms-transition: opacity .3s ease .2s;
	     -o-transition: opacity .3s ease .2s;
	        transition: opacity .3s ease .2s;
	display: flex;
}


.rooms-container .category .list-of-rooms .popup .post-wrapper > div {
	width: 50%;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .image .preview {
	width: 90%;
    padding-bottom: 90%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .image .text {
	padding-left: 20px;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .image .slides {
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	    
	    
	list-style: none;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .image .slides li {
	width: 60px;
	height: 60px;
	
	margin-right: 10px;
	margin-bottom: 10px;
	
	background-size: cover;
    background-position: center;
    
    cursor: pointer;
    
    outline: 0px solid #bfa75d;
    
    -webkit-transition: outline .2s;
       -moz-transition: outline .2s;
        -ms-transition: outline .2s;
         -o-transition: outline .2s;
            transition: outline .2s;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .image .slides li.selected,
.rooms-container .category .list-of-rooms .popup .post-wrapper .image .slides li:hover {
	outline: 4px solid #bfa75d;
}




.rooms-container .category .list-of-rooms .popup .post-wrapper h4 {
	color: #292E2D;
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 7px;
	line-height: 34px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper p {
	color: #3D3E3F;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 32px;
	margin-bottom: 20px;
	max-width: 352px;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper .mkd-btn {
	margin-top: 20px;
}

.list-of-rooms .mkd-btn.custom-border.mkd-btn-hover-outline:not(.mkd-btn-custom-hover-color):not(.mkd-btn-transparent).outline.dark {
	border: 2px solid!important;
}

.list-of-rooms .mkd-btn.custom-border.mkd-btn-hover-outline:not(.mkd-btn-custom-hover-color):not(.mkd-btn-transparent).outline.dark:hover {
	background-color: #b46932!important;
	color: #ffffff!important;
}

.rooms-container .category .list-of-rooms .popup .post-wrapper.show {
	opacity: 1;
}

.rooms-container .category .list-of-rooms .popup .close {
	display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.rooms-container .category .list-of-rooms .popup .close:after {
	font-family: 'FontAwesome';
	content: '';
	color: #8A9C98;
	font-size: 20px;
	font-weight: 200;
}


@media only screen and (max-width: 768px) {

	.rooms-container .category .list-of-rooms .popup .post-wrapper {
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper > div {
		width: 100%;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper .image {
		order: 2;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper .text {
		order: 1;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper {
		text-align: center;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper h4,
	.rooms-container .category .list-of-rooms .popup .post-wrapper p {
		text-align: left;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper .image .preview {
		margin: 0 auto;
	}

	.rooms-container .category .list-of-rooms .room {
	    width: 48%;
	    height: 0px;
	    padding-bottom: 48%;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper .mkd-btn {
		margin-bottom: 20px;
	}

	.rooms-container .category .list-of-rooms .popup .post-wrapper p {
		max-width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.rooms-container .category .list-of-rooms .room .dot {
		left: 99px;
    	top: 99px;
	}
}



@media only screen and (max-width: 600px) {
	.rooms-container .category .list-of-rooms .room .dot {
		left: 68px;
    	top: 68px;
	}

	.rooms-container .category .list-of-rooms .popup {
	    padding: 20px 30px;
	}
}

@media only screen and (max-width: 480px) {

	.rooms-container .category .list-of-rooms .popup .post-wrapper h4 {
	    font-size: 18px;
	}
	

	.rooms-container .category .list-of-rooms .room {
	    width: 100%;
	    padding-bottom: 100%;
	}

	.rooms-container .category .list-of-rooms .room .dot {
		left: 120px;
   		top: 120px;
	}
}