  .map {
    margin-top: 10px;
    height: 600px;
  }

  html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;

  }

  a { color: #009b90 }
  a:hover { color: #009b90; text-decoration: none }

	.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	    margin-bottom: .5rem;
	    font-family: inherit;
	    font-weight: 500;
	    line-height: 1.2;
	    color: inherit;
	}  
	

  .header {
    background: url('./images/miasto.png');
    height: 600px;
    background-repeat: no-repeat;
  }

   .navigation {
		display:inline-block;
	}
	
	.page-link { 
	  	color: #009b90;
	}  	
	
	.page-item.active .page-link {
	 	background-color: #009b90;
	
	}

  .form-group label{
    font-size: 14px;
  }
  
  .main-form {
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .form-submit {
    text-align: right;
  }

  .form-additional {
    text-align: right;
  }

  .custom-border {
    border-left: 1px solid rgb(0, 155, 144);
    border-right: 1px solid rgb(0, 155, 144);
    border-bottom: 1px solid rgb(0, 155, 144);
  }

  .form-field {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
  }
  
  .form-checkbox__input:focus {
    outline: none;
  }
  
  .form-checkbox {
    position: relative;
  }
  
  .form-checkbox__input {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    cursor: pointer;
    margin-right: 5px;
  }

  .align-left {
    text-align: left;
  }

  .form-checkbox__input:checked + .form-checkbox__checked {
    opacity: 1;
  }
  
  .form-checkbox__checked {
    background: #009b90;
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: 0.3s all;
    position: absolute;
    top: 5px;
    left: 20px;
  }
  
  .category {
    /*margin-top: 30px;*/
    padding-top:30px;
  }
  
  .category__checkboxes {
    display: flex;
  }
  
  .form-field--category {
    justify-content: flex-start;
    margin-top: 0;
  }
  
  .form-checkbox__checked--category {
    left: 5px;
  }
  
  .form-checkbox__input--category {
    margin-right: 20px;
  }
  
  .category__checkboxes * {
    list-style: none;
  }
  

  .custom-input-text {
    background: #009b90;
    color: #fff;
  }

  /* .place {
    box-shadow: -1px 1px 5px 0px black;
    width: 250px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
  }

  .place__name {
    font-size: 22px;
    margin: 0;
  }

  .place-details {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .type-price__adress {
    font-weight: 300;
    font-size: 18px;
    margin: 0;
  }

  .place__img {
    width: 100%;
    height: auto;
    max-height: 150px;
    border: 1px solid black;
  } */

  .place-details--bottom {
    margin-top: 10px;
  }

  .filteredTable {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
  }

  .placeInformation {
/*     display: flex; */
/*     flex-direction: row; */
/*     align-items: center; */
    margin-bottom: 20px;
    background: white;
    border-radius: 2px;
    box-shadow: 1px 1px 5px 0px black;
  }

  .placeInformation__img {
    width: auto;
    height: 80px;
    margin: 20px 50px 20px 20px;
  }

  .placeDetails {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
  }

  .placeDetails__name {
    width: 100%;
    margin-bottom: 15px;
    font-size: 26px;
    color: #009b90;
    margin-top: 15px;
  }

  .placeDetails__adress,
  .placeDetails__type,
  .placeDetails__contact {
    min-width: 25%;
  }

  .placeDetails__contact a {
    color: #009b90;
    text-decoration: none;
  }

  .hideBtn {
    width: 30px;
    height: 20px;
    background: url(https://image.flaticon.com/icons/svg/271/271218.svg);
    background-repeat: no-repeat;
    margin-bottom: 5px;
    position: absolute;
    top: 5px;
    align-self: flex-end;
    cursor: pointer;
    z-index: 999;
  }

/* MARKER */
.place {
  font-family: 'Montserrat', sans-serif;
  /* margin: 200px; */
  width: 400px;
  max-width: 400px;
  height: auto;
  /* box-shadow: -1px 1px 5px 0px black; */
  padding: 10px;
  /* overflow: hidden; */
}

.marker__container {
  display: flex;
  flex-direction: row;
}

.marker__photo {
  height: 90px;
  min-width: 140px;
  width: 140px;
  margin-right: 10px;
  background-size: cover;
  margin-bottom: 15px;
}

.base-information {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.main-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-info__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #009b90;
  font-weight: bold;
}

.main-info__adress {
  font-size: 14px;
  text-align: right;
}

.secondary-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  max-height: 25px;
}

.details-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.details-info__avaiable {
  font-size: 14px;
  line-height: 14px;
  color: #009b90;
}

.details-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
}

.details-contact__website {
  text-decoration: none;
  color: #000;
}

.category__checkboxes ul{
	text-align: left;
}
.form-row .additional{
	display: contents;
}


.map-cointainer {
	
	margin-top:30px;
	
}


.estate_simplylist_row {
	
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 0;
	margin-right: 0;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	
}

.estate_simplylist:nth-of-type(2n) div {
	
	background: #f9f9f9 !important;
	
}

.estate_list_searchbox {
	
	padding:20px;
	background: #f9f9f9 !important;
	border:1px solid #009b90;
	
}

.estate_list_toolbox {
	
	padding:20px;
	background: #f9f9f9 !important;
	
}

.estate_photo_list {
	font-size: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding: 20px 30px;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	line-height: 1.6em;
	height: auto;
	min-height: 300px;
	display: inline-block;
}

.estate_photo_list p {
	font-size:12px;
	margin:0;
}



.estate_list {
	font-size:14px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding: 20px 30px;
	width: 100%;
	margin-top:30px;
	margin-bottom:30px;
	line-height:1.6em;
	
}

.estate_list_value_empty {
	color: #e0e0e0;
	font-size: 14px;
}

.estate_name {
   width: 100%;
   margin-bottom: 15px;
   
   font-size: 18px;
   color: #009b90;
   font-weight: 500;
   text-transform: uppercase;
}


@media (max-width: 767px) {
	.estate_name {
		margin-top: 25px;
	}
	.page-item {
    	font-size: 10px;
	}
	
	.page-item.disabled {
		display:none; 
	}
}	

@media (max-width: 1199px) {
	.estate_name--photos {
		font-size: 14px;
	}
}

.estate_name--simplyrow {
	line-height: 58px;
	margin-bottom: 0;
	margin-top: 0;
}

.estate_name--photos {
	line-height: 18px;
	margin-top: 20px;
}

.estate_contact .fas {
	width: 24px;
	display: inline-block;
		
}

.estate_company .fas {

	width: 24px;
	display: inline-block;

}

.estate_address .fas {

	width: 24px;
	display: inline-block;
		
}


.estate_tools {
	
	font-size:12px;
}

.estate_gps {
	font-size:12px;
	color: #e0e0e0;
}

.estate_gps .material-icons{
	font-size:16px;
	color: #333;
}

.estate_count {
	
	color: #212121;
	font-size: 1.6em;
	font-weight: 400;
	margin: 30px 0 10px;
	text-transform: uppercase;
	text-align: center;

}

.estate_count span {
	
	color: #ffb700;	

}

.estate_info_window {
	width: 400px;
	

}

.estate_info_window .fas {
	color: #009b90;
}

.estate_map_image {
	max-width: 140px; 
	float: left;
	margin-right: 10px;
}

.estate_info_window_estate_title {

	font-weight: 600;

}

.estate_info_window_estate_title span {
	color: #009b90;
	font-weight: 600;
	font-size:16px;
}
  
.estate_view_field {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 20px;
}  

.estate_view_field_companylabel { 
	font-size: 12px; 
	font-weight: 600; 
	display: inline-block;
	color: #333;
}

.estate_view_field_label { 
	font-size: 12px; 
	font-weight: 600; 
	display: block;
}

.estate_view_field_label .fas { 
	display: inline-block;	
	width: 16px;
}	

.estate_view_field_value {
	font-size: 14px; 
}

.estate_view_field_value_empty {
	color: #e0e0e0;
	font-size: 14px;
}

.estate_view_attraction { 
	
}

.estate_view_title {
	/*color: #009b90;
	font-weight: 600;
	font-size:24px;
	margin-top: 20px;*/
    color: #212121;
    font-size: 1.6em;
    font-weight: 400;
    margin: 15px 0 10px;
    text-transform: uppercase;
    text-align: center;
}



.nearby_category_title {

	font-size:16px;
	font-weight: 600;
	
}	

.nearby_category_data {
	
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	
}


.btn:focus, .btn:active, button:focus, button:active {
  outline: none !important;
  box-shadow: none !important;
}

#image-gallery .modal-footer{
  display: block;
}

.thumb{
  margin-top: 15px;
  margin-bottom: 15px;
}

.tab-content { 
	font-size: 14px; 

}


.tabs-left, .tabs-right {
  border-bottom: none;
  padding-top: 2px;

}
.tabs-left {
  border-right: 1px solid #ddd;
}
.tabs-right {
  border-left: 1px solid #ddd;
}
.tabs-left>li, .tabs-right>li {
  float: none;
  margin-bottom: 2px;
}
.tabs-left>li {
  margin-right: -1px;
}
.tabs-right>li {
  margin-left: -1px;
}
.tabs-left>li.active>a,
.tabs-left>li.active>a:hover,
.tabs-left>li.active>a:focus {
  border-bottom-color: #ddd;
  border-right-color: transparent;
}

.tabs-right>li.active>a,
.tabs-right>li.active>a:hover,
.tabs-right>li.active>a:focus {
  border-bottom: 1px solid #ddd;
  border-left-color: transparent;
}
.tabs-left>li>a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display:block;
}
.tabs-right>li>a {
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}
.vertical-text {
  margin-top:50px;
  border: none;
  position: relative;
}
.vertical-text>li {
  height: 20px;
  width: 120px;
  margin-bottom: 100px;
}
.vertical-text>li>a {
  border-bottom: 1px solid #ddd;
  border-right-color: transparent;
  text-align: center;
  border-radius: 4px 4px 0px 0px;
}
.vertical-text>li.active>a,
.vertical-text>li.active>a:hover,
.vertical-text>li.active>a:focus {
  border-bottom-color: transparent;
  border-right-color: #ddd;
  border-left-color: #ddd;
}
.vertical-text.tabs-left {
  left: -50px;
}
.vertical-text.tabs-right {
  right: -50px;
}
.vertical-text.tabs-right>li {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.vertical-text.tabs-left>li {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}


.estate_company,
.estate_address,
.estate_contact,
.estate_view_attraction {
	margin-bottom: 5px;
}

.big-photo {
	max-height: 110px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.estate_photo_list .big-photo {
		max-height: 85px;
	}
}

@media (max-width: 991px) {
	.big-photo {
		margin-bottom: 20px;
		max-height: none;
	}
	.align-items-right {
		margin-top: 15px;
	}
	.estate-image {
		text-align: center;
	}
}

@media (max-width: 380px) {
	.estate_bottom {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.estate_bottom div:first-of-type {
		margin-bottom: 10px;
	}
}

@media (max-width: 359px) {
	.tab-content {
    	font-size: 10px;
	}
}

@media (max-width: 450px) and (min-width: 358px) {
	.tab-content {
    	font-size: 12px;
	}
}

.tab-pane .table{
	overflow-x: scroll;
}

.ornament-container {
	text-align: center;
}

.svg-title-ornament {
    fill: #e0e0e0;
    height: 26px;
    width: 125px;
    margin: 30px auto 0 auto;
}

.svg-title-ornament-card {
	margin: 0;
}

.svg-title-ornament-results {
    margin: 0 auto 15px auto;
}

.innerHtml {
	margin: 0 0 20px 0;
}

.innerHtml h3{
    color: #212121;
    font-size: 1.6em;
    font-weight: 400;
    margin: 15px 0 10px;
    text-transform: uppercase;
    text-align: center;
}

.last-word-color {
    color: #ffb700;
}

.return-btn {
	display: inline-block; 
	border: 1px solid #e0e0e0; 
	width:150px; 
	padding:10px;
	border-radius: 5px;
  	text-align: center;
}

@media (max-width: 460px) {
	.return-btn {
		width:100%;
		margin-bottom: 30px; 
	}
}

.return-btn:hover .return-btn__arrow {
    transform: translateX(-4px);
}

.return-btn span {
    vertical-align: middle;
    font-size: .9em;
    text-transform: uppercase;
    line-height: 16px;
    padding-left: 10px;
}

.return-btn__arrow {
    fill: #36aaa0;
    height: 16px;
    width: 9px;
    transition: all .3s;
}

.footer-list {
	
	font-size:12px;
	
}
}
