/* H & O Saltin Aktiebolag */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Rubik:wght@300;400&display=swap');

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css'); 

:root {
    --primary-color: #6a2f2b;
    --secondary-color: #3d3538;
}

/* ==========================================================================
    Generellt
========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

#aspnetForm {
   height: auto;
}

html {
	font-size: 62.5%;
}

body {
	background-position: center center;
	overflow-x: hidden !important;
	font-family: 'Rubik', sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

body.isMobile .body-background {
	background-position: center center;
	background-size: cover;
}

.LayoutPage .section-wrapper {
	background-color: #fbfaf2;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 15rem 5rem;
}
.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pt-4 .section-block,
.pt-4:not(.section-wrapper) {
    padding-top: 4rem;
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
	    padding: 10rem 2rem;
	}
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
	    padding: 7.5rem 1.5rem;
	}
}

.section-block-wrapper::after {
	content: '';
	display: table;
	clear: both;
}

.width-1200 .section-block .section-block-wrapper {
	max-width: 120rem;
}

.width-1500 .section-block .section-block-wrapper {
	max-width: 150rem;
}

.display-none {
	display: none;
}

.EditMode .display-none {
	display: block;
}

.text-bold {
	font-weight: 500;
}

/* ==========================================================================
    Buttons
========================================================================== */
.btn {
	max-width: 50rem;
    width: auto;
    box-sizing: border-box;
    padding: 1.6rem 4rem;
    border-radius: 3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 3px;
    line-height: 1em;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
}

.btn-filled-white {
	background: white;
	border: 2px solid white;
	color: #3d3538;
}

.btn-outlined-white {
	background: transparent !important;
	border: 2px solid white;
	color: white;
}

.btn-filled-black {
	background: #3d3538;
	border: 2px solid #3d3538;
	color: white;
}

.btn-outlined-black {
	background: transparent !important;
	border: 2px solid #3d3538;
	color: white;
}

.btn-filled-white:hover {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-filled-black:hover {
	background: transparent;
	border: 2px solid #3d3538;
	color: #3d3538;
}

.btn-outlined-white:hover {
	background: white !important;
	border: 2px solid white;
	color: #3d3538;
}

.btn-outlined-black:hover {
	background: #3d3538 !important;
	border: 2px solid #3d3538;
	color: white;
}

.btn-wrapper {
	margin-top: 5rem;
}

.btn-wrapper.center {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
	line-height: 1.8;
	font-size: 1.6rem;
	color: #3d3538;
	font-family: inherit;
	font-weight: 300;
	text-decoration: none;
}

a, li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
}

li {
	line-height: 1.8;
}

a:hover {
	text-decoration: underline;
}

p a { text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.4em;
	color: #3d3538;
	text-transform: normal;
}


.lead {
	font-size: 1.25em;
}

/* lilla "abc"-blocket */
.smalltext-type {
	max-width: none;
}
/* stora "ABC"-blocket */
.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}
.text-center{
	text-align: center;
}

@media only screen and (max-width: 480px) {
	.normaltext-type {
	    text-align: left;
	}
}

/* ==========================================================================
Färger
========================================================================== */
.bg-brown .section-block {
	background-color: #3d3538;
}

.primary-color {
    color: #6a2f2b;
}

.secondary-color {
    color: #6a2f2b;
}

.brown .section-block {
	background-color: #3d3538;
}

.text-white {
	color: #fbfaf2 !important;
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background-color: #6a2f2b;
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%,-50%);
    transition: .3s ease;
	color: #fbfaf2;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%,-50%) scale(0);
}

/* Innehåll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    max-width: 45rem;
    max-height: calc(100vh - 12rem); 
    padding: 4rem;
    margin: 0 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
	background-color: #fbfaf2;
}

.popup-window i {
	color: #6a2f2b;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.text-lable {
	text-transform: uppercase;
	font-weight: 700;
	color: #6a2f2b;
	font-size: 1.4rem;
	border-bottom: 1px solid #6a2f2b;
	padding-bottom: 1rem;
}

.summer-offer {
	margin-top: 3rem;
	margin-bottom: 0;
	padding-left: 2rem;
}

.summer-offer li::marker {
	color: #6a2f2b;
}

@media only screen and (max-width: 450px) {
    .popup-window {
        padding: 2rem 3rem 2rem 2rem;
    }

    .icon-close-popup {
        top: 1rem;
    }
}

/* ==========================================================================
Split Wrapper
========================================================================== */

.split-section .normaltext-type {
	max-width: none;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.split-wrapper.reverse {
	flex-direction: row-reverse;
} 

.split-content {
    width: 50%;
    padding: 5rem;
    text-align: left;
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;

    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: unset !important;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: unset;
        left: unset;

        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
	.split-content {
		width: 100%;
		padding: 0 0 5rem;
	}
	
	.split-image {
		width: 100%;
	}
}


/* ==========================================================================
Header / Navigation
========================================================================== */

header {
	position: -webkit-sticky;
	position: sticky;
    background-color: #fbfaf2;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
	box-shadow: none;
	height: 8rem;
}

header .container {
	max-width: 160rem;
	padding: 0 5rem;
}

header .container::after {
	content: '';
	display: table;
	clear: both;
}


header .header-logo {
    width: 15rem;
    padding: 1rem;
    line-height: 8rem;
    display: block;
    float: left;
    transition: all 500ms linear;
    background-color: #fbfaf2;
    border-radius: 50%;
}

.top-header {
    position: relative;
    top: 0;
    z-index: 100;
    text-align: right;
	padding: 0 5rem;
	top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
	background-color: #3d3538;
        -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.top-logo {
	text-align: center;
	-webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.top-header a {
	line-height: 4rem;
	box-sizing: border-box;
	width: 100%;
    color: #FFF;
    font-size: 14px;
	white-space: nowrap;
    overflow: hidden !important;
	text-overflow: ellipsis;
	max-width:100%;
	text-decoration: none;
	align-items: right;
	margin: 0 1rem;
}

.top-header a:hover {
	text-decoration: underline;
}

.top-header .fas {
	margin-right: 7px;
}


/* Navigation */

nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    transition: all 500ms linear;
}

nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: inherit;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 8rem;
	color: #3d3538;
	text-transform: uppercase;
	padding: 0 1rem;
    transition: all 500ms linear;
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
	background-color: transparent;
}

nav.mainmenu li:hover a,
nav.mainmenu li.active a {
	color: #000;
	text-decoration: none;
}

nav.mainmenu li.active a::after, 
nav.mainmenu li:hover a::after {
	content: '\2022';
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 2rem;
    width: 5px;
    height: 5px;
    display: inline-block;
    line-height: 0;
} 


header .mobile-menu span{
	height: 2px;
    width: 100%;
    background: #3d3538;
    border-radius: 0px;
    margin-bottom: 7px;
	display: none;
}

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

	header {
		height: 6rem;
		width: 100vw !important;
	}


	header .header-logo {
	    width: 7rem;
	    padding: 0;
	    line-height: 6rem;
	    left: 50%;
	    transform: translateX(-50%);
	    display: block;
	}
	
	header .header-logo a {
		line-height: 6rem;
	}
	
	.top-header {
		display: none;
	}


/* Hamburgarmeny – Den är default svart, men för att ändra färg eller ikon använd koden nedan.*/
	.openmenu {
	    width: 60px;
	    height: 60px;
	    left: 0;
	    top: 0;
	    padding: 20px 17px;
	}

	nav.mainmenu {
	 	text-align: left;
	 	box-shadow: none;
	 	width: 100vw;
	}

	nav.mainmenu .Padding {
		border-top:none !important;
	}

	nav.mainmenu li a {
		font-size: 2rem;
		border-bottom: none;
		margin: 2rem 0px;
		color:#3d3538 !important;
		padding-left: 40px;
		line-height: 5rem;
	}

	nav.mainmenu li:hover a,
	nav.mainmenu li.active a {
		color: #3d3538 !important;
	}

	nav.mainmenu li:hover, nav.mainmenu li.active {
    	background-color: transparent;
	}

	.openmenu {
	    background-image: none;
	}
	
	.closemenu {
		background-image: none;
	}
	
	.closemenu::before,
	.closemenu::after {
		width: 24px;
		height: 2px;
		top: 12px;
		content: '';
		position: absolute;
		display: block;
		background-color: #3d3538;	
	}
	
	.closemenu::before {
		transform: rotate(45deg);
	}
	
	.closemenu::after {
		transform: rotate(-45deg);
	}

	header .mobile-menu span{
		display: block;
	}

}


/* ==========================================================================
Top-section
========================================================================== */

.top-section {
	height: auto;
	min-height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-title-wrap {
	position: static;
	transform: none;
	background-color: transparent;
    width: 100%;
    max-width: 120rem;
    text-align: center;
    padding: 15rem 2rem;
}

.page-title-wrap h1 {
	font-size: 7rem;
	color: #fff;
	padding:0;
	line-height: 1.3em;
	text-shadow: none;
}

.primary-usp {
	display: block;
	padding-bottom: .1em;
}

.sub-usp {
	display: block;
	font-size: .4em;
	font-family: 'Rubik', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}


@media only screen and (max-width: 768px) {
	
	.page-title-wrap h1 {
		font-size: 4rem;
	}
	
	.sub-usp {
		font-size: .6em;
	}
}

@media only screen and (max-width: 480px) {
	.page-title-wrap h1 {
		font-size: 3rem;
	}
	
	.sub-usp {
		font-size: .6em;
	}
}

/* Booking intro
========================================================================== */


.booking-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.booking-item {
	width: calc(50% - .5rem);
    margin-bottom: 1rem;
    position: relative;
    background-color: #fbfaf2;
    padding: 5rem;
}

@media only screen and (max-width: 900px) {
	.booking-item {
		width: 100%;
	}
}

@media only screen and (max-width: 550px) {
	.booking-item {
	    padding: 3rem;
	}
}

.booking-item:nth-child(2) {
	padding: 1rem;
}

/* Rooms
========================================================================== */

.room-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.room-item {
    width: calc(35% - .5rem);
    height: 35rem;
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
}

.room-item:nth-child(1),
.room-item:nth-child(4),
.room-item:nth-child(5),
.room-item:nth-child(8),
.room-item:nth-child(9) {
	width: calc(65% - .5rem);
}

.room-item img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100% !important;
}

.room-item-info {
	display: block;
	width: 100%;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    background-image: linear-gradient(0deg, rgba(0,0,0, .85), transparent);
}

.room-item-title {
    font-size: 2.8rem;
    line-height: 1;
    padding-bottom: 1rem;
    color: #ffffff;
}

.room-item p {
    color: #ffffff;
    padding: 0;
}

@media only screen and (max-width: 900px) {
	.room-item {
		width: 100% !important;
	}
}

#b_editDates h3 {
    margin: 1.2em 0 0;
    font-size: 2.4rem !important;
    background: none !important;
    font-weight: normal !important;
}

.b_availDatesInner h4 {
	color: #3d3538;
}



/* Restaurang
========================================================================== */

.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	border: 1px solid #3d3538;
	padding: 3rem;
  }

  .tab-col {
    width: calc((100% / 2) - 2rem);
  }


  .tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }

  .tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 1px dotted #3d3538;
  }

  .tab-item .price {
    padding-left: 1rem;
  }

  .tab-item .description {
    font-size: 1.4rem;
    color: #555;
  }

  @media only screen and (max-width:980px) {
    /* Tabbval */
    .tabs-wrapper {
      position: relative;
      max-width: 25rem;
      padding: 1rem 2rem;
      background: rgb(var(--primary-color));
      cursor: pointer;
    }

    .tabs-heading {
      display: block;
    }

    .tabs-heading p {
      display: flex;
      justify-content: space-between;
      padding-bottom: 0;
      color: #FFF;
    }

    .tabs-heading i {
      margin-left:2rem;
    }

    .tabs-list {
      display: none;
      z-index: 1;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      text-align: left;
      background: #FFF;
      box-shadow: 1px 1px 10px rgba(0,0,0,.1);
    }

    .tabs-wrapper.opened .tabs-list {
      display: block;
    }

    .tab {
      display: block;
      padding: 1.5rem 1rem;
      letter-spacing: normal;
      text-transform: initial;
    }
  }
  @media only screen and (max-width:750px) {
	/* Innehåll */
  .tab-col {
	width: 100%;
  }
}

/* Kontakt
========================================================================== */

#map {
	font-size: 0;
	z-index: 1;
}

#contact-us .section-block {
	padding-top: 0;
}

#contact-us .col-1 {
	padding-left: 5rem;
	padding-top: 5rem;
}

#contact-us .col-1 .normaltext-type {
	text-align: left;
}

#contact-us .col-0 {
	background-color: #FFF;
	border-radius: 2px;
	padding: 5rem;
	-webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15);
    margin-top: -15rem;
    z-index: 5;
    position: relative;
}

/* Contact options */

.contact-options {
	margin: 5rem 0;
	font-style: normal;
}

.contact-option {
	display: flex;
	margin: 3rem 0;
	align-items: center;
}

.contact-option::before {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	font-size: 1.5em;
	margin-right: 2rem;
	vertical-align: middle;
	color: #fbfaf2;
	width: 2em;
	text-align: center;
}

.contact-option:hover {
	color: #FFF;
	text-decoration: none;
	opacity: .6;
}

.contact-option:hover::before {
	text-decoration: none;
}

.contact-option.address::before {
	content: '\f3c5';
}

.contact-option.phone::before {
	content: '\f67d';
}

.contact-option.mail::before {
	content: '\f658';
}

/* Contact form  */
.asterix p:after {
    content: "*";
    font-size: 2rem;
    margin-left: 6px;
    color: red;
}

.Contact .ContactForm div.ContactFormMessage p, 
.Contact .ContactForm .ContactFormEmail p, 
.Contact .ContactForm .ContactFormField p, 
.Contact .ContactForm .ContactFormName p {
	color: #000;
}

.ContactForm {
	display: flex;
	flex-wrap: wrap;
}

#contact-us .ContactFormName,
#contact-us .ContactFormEmail,
#contact-us .ContactFormField,
#contact-us .ContactFormMessage {
	width: 100%;
	position: relative;
	top: auto;
	left: auto;
	display: inline-block;
}



#contact-us .ContactForm input,
#contact-us .ContactForm textarea {
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 1.2em;
	height: 15rem;
}

#contact-us input:focus,
#contact-us textarea:focus {
	border-color: #6a2f2b !important;
}

#contact-us input::placeholder,
#contact-us textarea::placeholder {
	font-size: .8em;
} 

#contact-us .ContactForm .ContactSubmit {
	width: 100% !important;
	max-width: none;
    padding: 1.6rem 4rem;
    border-radius: 2px;
    background-color: #6a2f2b;
    border: 2px solid #6a2f2b;
    color: #FFF;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 1.4rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
}
.submit-button-container{
	width: 100% !important;
}
#contact-us .ContactForm .ContactSubmit:hover {
	background-color: #53231f;
	border: 2px solid #53231f;
	color: #FFF;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p {
	margin-top: 1rem;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none){

	
	#contact-us .ContactForm input:not(.ContactSubmit),
	#contact-us .ContactForm textarea {
		padding: 0 !important;
	}

}

@media only screen and (max-width: 768px) {
	
	#contact-us .section-block {
		padding-top: 10rem;
	}
	
	#contact-us .col-block {
		width: 100%;
	}
	
	#contact-us .col-0 {
		margin-top: 0;
	}
	
	#contact-us .col-1 {
		padding: 5rem 0 0 !important;
	}

}

@media only screen and (max-width: 480px) {
	
	#contact-us .section-block {
		padding-top: 7.5rem;
	}
	
	#contact-us .col-0 {
		padding: 3rem 2rem !important;
	}

}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: #fbfaf2;
	padding: 0;
	color: #000;
}

.footer .container {
    padding: 5rem 0;
    max-width: 120rem;
}


.footer-col {
	width: 100%;
}

.footer-col:first-child {
	margin-bottom: 3rem;
}

.footer p,
.footer a {
	font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4em;
    color: #000;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    vertical-align: middle;
    padding: 0;
}

.footer a:hover {
	opacity: .5;
}

.footer-center p:not(:first-child)::after,
.footer-center a:not(:first-child)::after {
	content: '\2022';
	display: inline-block;
	margin: 0 1rem;
}

.footer a:last-child::after,
.footer p:last-child::after {
	content: '';
	margin: 0;
}

.footer .footer-logo {
	 font-weight: 400;
	 
}

.footer .footer-logo::after {
	content: '|';
	margin: 0 1rem;
}


.footer .container .fab {
    font-size: 25px;
    padding: 0;
    margin-top: 12px;
    text-decoration: none;
}

.footer .container .fab:hover {
    color: #fff;
}

a.social-link {
	display: inline-block;
    background-color: #007cc2;
    width: 5rem !important;
    height: 5rem !important;
    color: #fff;
    border-radius: 3rem;
    text-align: center;
    margin: 0 1rem;
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
	justify-content: center;
    align-items: center;
    padding: 0;
	margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 2.3rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 696px) {
	.footer .container {
		padding: 8rem 2rem;
	}
}

@media only screen and (max-width: 480px) {
	
	.footer p,
	.footer a {
		display: inline-block;
		text-align: center;
	}

	.d-block {
		display: block !important;	
	}
	
	.footer .footer-logo::after {
		display: none;
	}
	
	.footer-info p::after,
	.footer-info a::after,
	.footer p:last-child::after,
	.d-block::after {
		display: none;	
	}

	
	.footer-info p,
	.footer-info a {
		display: block;
		margin-bottom: 1.5rem;
		font-size: 2rem;
	}
}

/* Modal
========================================================================== */
body.modal-open {
	overflow:hidden!important;
}

.modal.gallery-modal {
	z-index: 101;
	position:fixed;
	bottom:-100%;
    left: 50%;
    transform: translateX(-50%);
	transition:.75s ease;
	width: calc(100% - 4rem);
	max-width:150rem;
	height: 100%;
	max-height:90vh !important;
	vertical-align: middle !important;
	overflow:auto;
	border-radius:0;
	padding:6rem;
	background: #FFF;
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.14);
}

.modal.gallery-modal.show {
    bottom: 0;
}

.blocker {
	z-index: 100;
}

.modal.gallery-modal a.close-modal {
	display:none;
}

.modal.gallery-modal a.custom-close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
}

.modal.gallery-modal a.custom-close-modal:hover {
	background-color: #f2f2f2;
	text-decoration: none;
}


.modal-row {
	display: flex;
	flex-wrap: wrap;
}

.modal-col {
	width: 50%;
	padding: 2rem; 
}

.modal-col:nth-child(1) {
	height: 50rem;
}

.modal-title {
    padding: 0;
    border-bottom: 1px solid;
    margin-bottom: .8em;
}

.modal h4 {
	font-size: 1.8rem;
}

.modal p {
	text-align: left;
	padding-bottom: 2rem;
}

.room-info-wrapper p {
    padding: 0;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: .8em;
}

.room-info-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.room-info {
	margin: 0 2rem 1rem 0;
}

.room-info-icon {
	padding-right: .5rem;
}


.room-image-wrapper {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    max-height: 50rem;
}

img.room-image {
    max-height: 50rem;
    width: auto;
    max-width: 100%;
}

@media only screen and (max-width:1024px) {
	.modal-content {
		flex-wrap:wrap;
	}

}

@media only screen and (max-width: 955px) {
	.modal-row {
	    flex-direction: column;
	}
	
	.modal-col {
	    width: 100%;
	    padding: 0;
	} 
	
	.modal-col:nth-child(1) {
		height: auto;
	}

}

@media only screen and (max-width: 768px) {
	.blocker {
		padding: 0;
	}
	
	.modal.gallery-modal {
	    width: 100%;
	    max-height: none !important;
	    height: 90vh;
	    overflow-y: scroll;
	    overflow-x: hidden;
	}
}


@media only screen and (max-width: 550px) {
	.modal-content h4 {
		padding-right: 2rem;
	}
	
	.modal.gallery-modal {
		padding: 5rem 2rem;
	}
}

.slick-prev, .slick-next {
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    border-radius: 5rem;
    background-color: rgba(255, 255, 255, 0.35);
}

.slick-prev:hover, 
.slick-next:hover {
	background-color: rgba(255, 255, 255, 0.75);
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-family: 'Font Awesome 5 Pro';
}

.slick-next::before {
    content: '\f105';
}

.slick-prev::before {
    content: '\f104';
}

.slick-prev {
    left: 25px;
    z-index: 1;
}

.slick-next {
    right: 25px;
    z-index: 1;
}

