﻿:root{--color-primary: #eb2f64;--color-primary-light: #FF3366;--color-primary-dark: #BA265D;--color-grey-light-1: #faf9f9;--color-grey-light-2: #f4f2f2;--color-grey-light-3: #f0eeee;--color-grey-light-4: #ccc;--color-grey-dark-1: #333;--color-grey-dark-2: #777;--color-grey-dark-3: #999;--shadow-dark: 0 1rem 3rem rgba(0, 0, 0, 0.3);--shadow-medium: 0 .8rem 2rem rgba(0, 0, 0, 0.2);--shadow-light: 0 .5rem 1rem rgba(0, 0, 0, 0.1);--light-line: 1px solid var(--color-grey-light-2)}*{margin:0;padding:0}*,*::before,*::after{box-sizing:inherit}html{box-sizing:border-box;font-size:62.5%}body{font-family:"Open Sans",sans-serif;font-weight:400;line-height:1.6;color:var(--grey-dark-2);background:linear-gradient(to right bottom, var(--color-primary-light), var(--color-primary-dark));background-repeat:no-repeat}::-moz-selection{background-color:var(--color-primary);color:var(--color-grey-light-1)}::selection{background-color:var(--color-primary);color:var(--color-grey-light-1)}a{text-decoration:none}ul{list-style:none}button{border:none;background-color:unset}@keyframes pulsate{0%{transform:scale(1);box-shadow:none}50%{transform:scale(1.05);box-shadow:var(--shadow-light)}100%{transform:scale(1);box-shadow:none}}.app-container{width:90%;max-width:125rem;margin:8rem auto;background-color:white;box-shadow:var(--shadow-dark)}@media only screen and (max-width: 60em){.app-container{width:100%;margin:0}}.app-bar{position:relative;display:flex;align-items:center;height:6rem;justify-content:space-between;background-color:inherit;border-bottom:var(--light-line);padding:0 1rem;gap:1rem;font-size:1.4rem}@media only screen and (max-width: 37.5em){.app-bar{align-content:center;flex-wrap:wrap;height:10rem}}.app-bar .search{max-width:35rem;flex:1 1 20rem}@media only screen and (max-width: 37.5em){.app-bar .search{max-width:none;order:1;flex:1 1 100%}}.app-bar__logo{width:4.5rem}.app-bar__profile{display:flex;align-self:stretch;align-items:center}.app-bar__profile>*{display:flex;justify-content:center;align-items:center;height:100%;cursor:pointer;padding:0 1.5rem}.app-bar__profile>*:hover{background-color:var(--color-grey-light-2)}.app-bar__user-image{height:3.8rem;width:3.8rem;border-radius:50%;margin-right:1rem}.content{display:flex;min-height:80vh}@media only screen and (max-width: 60em){.content{flex-direction:column}}.sidebar{flex:0 0 20rem;display:flex;flex-direction:column;justify-content:space-between;align-self:stretch;background-color:var(--color-grey-dark-1);color:var(--color-grey-light-1);font-size:1.5rem}@media only screen and (max-width: 60em){.sidebar{flex:1}}@media only screen and (max-width: 37.5em){.sidebar{overflow-x:auto}}.sidebar__nav-items{display:flex;flex-direction:column;margin-top:3rem}@media only screen and (max-width: 60em){.sidebar__nav-items{margin-top:0;flex-direction:row}}.sidebar__nav-item{cursor:pointer;height:5rem;position:relative}@media only screen and (max-width: 60em){.sidebar__nav-item{flex:1 1}}@media only screen and (max-width: 37.5em){.sidebar__nav-item{flex:0 0 15rem}}.sidebar__nav-item::before{content:"";position:absolute;top:0;left:0;height:100%;background-color:var(--color-primary);width:3px;transform:scaleY(0);transition:width .4s cubic-bezier(1, 0, 0, 1) .2s,transform .2s,background-color .1s}.sidebar__nav-item:hover::before,.sidebar__nav-item--active::before{width:100%;transform:scaleY(1)}.sidebar__nav-item:active::before{background-color:var(--color-primary-light)}.sidebar__link:link,.sidebar__link:visited{position:relative;z-index:1;height:100%;padding:0 3rem;display:flex;align-items:center;gap:2rem;color:inherit;text-transform:uppercase}@media only screen and (max-width: 60em){.sidebar__link:link,.sidebar__link:visited{justify-content:center}}@media only screen and (max-width: 37.5em){.sidebar__link:link,.sidebar__link:visited{padding:0;gap:1rem}}.sidebar__icon{width:1.8rem;height:1.8rem;fill:currentColor}.sidebar .legal{font-size:1.1rem;text-align:center;margin-bottom:1rem;color:var(--color-grey-light-4)}@media only screen and (max-width: 60em){.sidebar .legal{display:none}}.main-content{flex:1 1;background-color:var(--color-grey-light-2)}.details{padding:3rem;display:flex;gap:3rem;font-size:1.4rem;align-items:flex-start}@media only screen and (max-width: 60em){.details{gap:2em;padding:2em}}@media only screen and (max-width: 37.5em){.details{gap:1.5rem;padding:1.5rem;flex-direction:column}}.cta-area{display:flex;flex-direction:column;align-items:center;gap:2rem;background-color:white;padding:2rem}.cta-area__message{font-size:1.7rem;font-weight:300;text-transform:uppercase}.button-inline{display:inline-block;border:none;color:var(--color-primary);border-bottom:1px solid currentColor;font-size:inherit;background-color:transparent;padding-bottom:2px;cursor:pointer}.button-inline span{margin-left:3px;transition:margin-left .2s}.button-inline:hover{color:var(--color-grey-dark-1)}.button-inline:hover span{margin-left:8px}.button-inline:focus{outline:none;animation:pulsate .6s}.button-fancypants{border:none;position:relative;border-radius:100px;font-size:1.5rem;color:var(--color-grey-light-1);text-transform:uppercase;cursor:pointer;overflow:hidden;background:linear-gradient(to right, var(--color-primary-light), var(--color-primary-dark))}.button-fancypants__visible,.button-fancypants__hidden{display:inline-block;height:100%;width:100%;transition:all .2s;padding:2rem 8rem}.button-fancypants__hidden{position:absolute;top:-100%;left:0;padding-left:0;padding-right:0}.button-fancypants:hover .button-fancypants__visible{transform:translateY(100%)}.button-fancypants:hover .button-fancypants__hidden{top:0}.button-fancypants:focus{outline:none;animation:pulsate .5s}.search{height:3.5rem;display:flex;align-items:center;justify-content:center}.search__input{height:100%;width:100%;background-color:var(--color-grey-light-2);border-radius:6rem;border:none;padding:.7rem 2rem;font-family:inherit;font-size:inherit;color:inherit;width:95%;transition:width .3s ease}.search__input:focus{outline:none;width:100%}.search__button{top:.7rem;right:1.5rem;border:none;background-color:transparent}.search__button:focus{outline:none}.search__icon{width:2rem;height:2rem;margin-left:-4rem;fill:var(--color-grey-dark-3)}.icon-box{position:relative}.icon-box__inner{position:relative;display:flex;justify-content:center;align-items:center}.icon-box__icon{width:2.2rem;height:2.2rem;fill:var(--color-grey-dark-2)}.icon-box__notifications{height:1.7rem;width:1.7rem;border-radius:50%;position:absolute;top:-0.5rem;right:-0.8rem;display:flex;align-items:center;justify-content:center;font-size:1.1rem;background-color:var(--color-primary);color:white}.gallery{display:flex}.gallery__photo{display:block;width:100%}.overview-bar{display:flex;align-items:center;padding-left:2.5rem;font-size:inherit;gap:2rem;background-color:white}@media only screen and (max-width: 60em){.overview-bar{gap:1rem;padding-left:1.5rem}}@media only screen and (max-width: 37.5em){.overview-bar{flex-wrap:wrap;justify-content:center;align-content:center;padding-top:1rem;padding-left:0}}.overview-bar__large-text{font-size:2.2rem;font-weight:300;text-transform:uppercase;letter-spacing:1px}@media only screen and (max-width: 60em){.overview-bar__large-text{font-size:1.8rem}}.overview-bar__stars{display:flex;justify-content:center;color:var(--color-primary);margin-right:auto;margin-top:-0.1rem}@media only screen and (max-width: 37.5em){.overview-bar__stars{display:none}}.overview-bar__star-icon,.overview-bar__location-icon{height:1.8rem;flex:0 0 1.8rem;fill:currentColor}.overview-bar__location{display:flex;align-items:center;gap:.5rem;color:var(--color-primary-dark);font-size:1.4rem}.overview-bar__rating-box{display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;padding:.5rem 2rem .8rem 2rem;background-color:var(--color-primary);color:var(--color-grey-light-1)}@media only screen and (max-width: 37.5em){.overview-bar__rating-box{flex:0 0 100%;flex-direction:row;gap:1rem}}.overview-bar__votes{font-size:1.1rem;text-transform:uppercase;margin-top:-3px}@media only screen and (max-width: 37.5em){.overview-bar__votes{font-size:1.3rem;margin-top:0}}.content-card{padding:1.9rem 2.5rem;box-shadow:var(--shadow-light);background-color:white;border-radius:3px}@media only screen and (max-width: 37.5em){.content-card{padding:1.3rem 2rem}}.description{font-size:inherit;flex:0 0 60%}.description__paragraph:not(:last-child){margin-bottom:2rem}.description__divider{margin:3rem 0;border:var(--light-line)}.description__features{display:flex;flex-wrap:wrap;row-gap:1rem}.description__features--item{flex:0 0 50%}.description__features--item::before{content:"";display:inline-block;height:1.3rem;width:1.3rem;margin-right:.5rem;margin-bottom:-0.1rem;background-color:var(--color-primary);-webkit-mask-image:url("../img/chevron-thin-right.svg");mask-image:url("../img/chevron-thin-right.svg");-webkit-mask-size:cover;mask-size:cover}.description__user-recommend{display:flex;justify-content:space-between;align-items:center;font-size:1.3rem;color:var(--color-grey-dark-2)}.description__user-recommend--text{flex:1 1 50%}.image-chain__photo{height:4rem;width:4rem;border-radius:50%;box-sizing:content-box;border:3px solid white}.image-chain__photo:not(:last-child){margin-right:-1.4rem}.user-reviews{display:flex;flex-direction:column;align-items:center;gap:2rem;flex:1 1 40%;min-width:10rem;font-size:inherit}@media only screen and (max-width: 37.5em){.user-reviews{gap:1rem}}.user-review{position:relative;overflow:hidden}.user-review__text{position:relative;z-index:1;margin-bottom:2rem}.user-review__user{display:flex;align-items:center;gap:1.2rem}.user-review__photo{height:4rem;width:4rem;border-radius:50%}.user-review__user-box{margin-right:auto;display:flex;flex-direction:column;gap:.2rem}.user-review__name{font-size:1.2rem;font-weight:600;text-transform:uppercase}.user-review__date{font-size:1.05rem;color:var(--color-grey-dark-2)}.user-review__rating{font-size:2.2rem;color:var(--color-primary-dark)}.user-review::before{content:"“";position:absolute;top:-2.6rem;left:-0.8rem;font-size:20rem;line-height:1;color:var(--color-grey-light-2);font-family:sans-serif;z-index:0}.popover-menu{position:absolute;top:100%;right:0;background:white;transition:transform .3s ease-out;transform-origin:top;transform:scaleY(0);z-index:1000;box-shadow:var(--shadow-light);border-radius:3px}.popover-menu__shown{transform:scaleX(1)}.chat-area{text-align:left}.chat-area__top{padding:1.5rem;background-color:var(--color-primary);color:var(--color-grey-light-1)}.chat-area__top--heading{font-size:1.7rem}.chat-area .chat-list{display:flex;flex-direction:column;align-items:flex-start;font-size:1.3rem;border-top:var(--light-line)}.chat-area .chat-list__item{width:35rem;padding:1rem 2.7rem}.chat-area .chat-list__item:hover{background-color:var(--color-grey-light-1)}.chat-area .chat-list__item--title{font-size:1.5rem;margin-bottom:1rem}.chat-area .chat-list__item--message{-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.hotel-view{font-size:1.5rem}/*# sourceMappingURL=style.min.css.map */
