@charset "UTF-8";

/* _BUTTON_ */
/* _INPUT_ */
/* _BADGE_ */
/* _FEATURE_ */
/* _PROGRESS_ */
/* _SCORE_ */
/* _TEXT_LINK_ */
/* _TOOLTIP_ */
/* _ALERT_ */

/* _BUTTON_ START */

html body .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.64px;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html body .btn.disable {
  opacity: 0.7;
}
html body .btn.btn-sm {
  padding: 11px 40px;
}
html body .btn-light {
  background-color: #f8f9fa;
  color: #1f2126;
}
html body .btn-dark {
  background-color: #61656e;
  color: white;
}
html body .btn-link {
  box-shadow: 2px 1px 5px -1px rgba(97, 101, 110, 0.68);
  background-color: #f8f9fa;
  color: #056bfd;
}
html body .btn-primary {
  background-image: linear-gradient(to left, #ff5b00, #ffa26f);
  color: white;
}
html body .btn-primary:hover {
  background-image: linear-gradient(to left, #0a9ed2, #15b8b4);
}
html body .btn-secondary {
  background-image: linear-gradient(to left, #494aff, #056bfd);
  color: white;
}
html body .btn-secondary:hover {
  background-image: linear-gradient(to left, #3e3cd4, #0856d2);
}
html body .btn-outline-primary {
  background-color: transparent;
  border: 1px solid #056bfd;
  color: #056bfd;
}
html body .btn-outline-primary:hover {
  background-color: #f6f9fd;
  border: 1px solid #3e3cd4;
  color: #3e3cd4;
}
html body .btn-outline-success {
  background-color: transparent;
  border: 1px solid #17cec4;
  color: #17cec4;
}
html body .btn-outline-success:hover {
  background-color: #f6f9fd;
}
html body .btn-outline-alert {
  background-color: transparent;
  border: 1px solid #ff8308;
  color: #ff8308;
}
html body .btn-outline-alert:hover {
  background-color: #f6f9fd;
}
html body .btn-outline-warning {
  background-color: transparent;
  border: 1px solid #f85156;
  color: #f85156;
}
html body .btn-outline-warning:hover {
  background-color: #f6f9fd;
}
html body .btn-outline-light {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
html body .btn-ghost {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: #056bfd;
}
/* _BUTTON_ END */

/* _INPUT_ */
html body .input {
  padding: 18px 15px;
  background-color: white;
  border: 1px solid #dbe0e6;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #1f2126;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html body .input::placeholder {
  color: #9ca1ae;
}
html body .input:focus {
  padding-left: 15px;
  border-color: #056bfd;
}
html body .input:focus ~ label,
html body .input:valid ~ label {
  top: 4px;
  transition: all 0.2s;
}
html body .input-info {
  border-color: #056bfd;
}
html body .input-success {
  border-color: #17cec4;
}
html body .input-alert {
  border-color: #ff8308;
}
html body .input-warning {
  border-color: #f85156;
}
.form-check {
  padding-left: 10px;
  background: #fff;
  border-radius: 6px;
}
.form-check input {
  display: none;
}
.form-check input + label {
  max-width: 100%;
  position: relative;
  padding: 10px 10px 10px 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 24px;
  color: #61656e;
  font-size: 14px;
  letter-spacing: normal;
}
.form-check label:before {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: solid 1px #dbe0e6;
  background-color: #f6f9fd;
}
.form-check input:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background-color: #f6f9fd;
  border: #056bfd;
  background: #056bfd;
}
.form-check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  box-sizing: border-box;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-top: 0;
  border-left: 0;
}
.form-check input[type='radio'] + label:before {
  border-radius: 100%;
}
.form-check input[type='radio']:checked + label:before {
  border-radius: 100%;
}
.form-check input[type='radio']:checked + label:after {
  border: none;
  background: #fff;
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  border-radius: 100%;
  left: 6px;
  /* top: 6px; */
}
/* _INPUT_ END */

/* _BADGE_ */
html body .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: white;
}
html body .badge-default,
html body .badge-default:before,
html body .badge-default:after {
  background-color: #9ca1ae;
}
html body .badge-info {
  background-color: #056bfd;
}
html body .badge-success {
  background-color: #03ca6a;
}
html body .badge-alert {
  background-color: #ff8308;
}
html body .badge-warning {
  background-color: #f85156;
}
html body .badge-purple {
  background-color: #870eff;
}
html body .badge-purple i {
  font-size: 16px;
}
html body .badge-light {
  border-radius: 4px;
  border: solid 1px #ebf1fa;
  background-color: #f6f9fd;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
html body .badge-bed-type,
html body .room-type {
  padding: 0;
  font-size: 12px;
  color: #61656e;
}
html body .badge-bed-type i,
html body .room-type i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 12.5px;
  background-color: #e5e9f1;
  margin-right: 5px;
}
html body .room-type .etsfonticon-ultra-inclusive {
  font-size: 20px;
}
html body .room-type .etsfonticon.etsfonticon-cant-cancel {
  font-size: 13px;
}
html body .badge-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: normal;
  color: #212529;
  padding: 0;
  font-size: 14px;
}
html body .badge-location i {
  color: #056bfd;
  font-size: 20px;
  margin-left: -5px;
  width: 25px;
  text-align: center;
}
html body .badge-light.orange {
  color: #ff8308;
}
html body .badge-light.orange-light {
  color: #f2ab00;
}
html body .badge-light.green {
  color: #03ca6a;
}
html body .special-deals .badge-light {
  padding: 0;
  background: transparent;
  border: none;
}
html body .special-deals .badge-light i {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  margin-right: 6px;
}
html body .badge-light.green .etsfonticon-smile {
  color: #fff;
  font-size: 18px;
  background-color: #03ca6a;
}
html body .badge-light.green span {
  color: #03ca6a;
}
html body .badge-light i {
  display: inline-block;
  padding-right: 6px;
  font-size: 19px;
}
html body .badge-light.orange i {
  font-size: 23px;
}
html body .badge-light.orange-light .etsfonticon-values-2,
html body .badge-light.orange-light .etsfonticon-special-deal {
  color: #fff;
  font-size: 15px;
  background-color: #ffa108;
  line-height: 15px;
}
html body .special-deals .badge-light.orange-light span {
  color: #ffa108;
}
html body .special-deals .badge {
  margin-bottom: 10px;
}
html body .special-deals .badge-light.dotted {
  margin: 0;
  border-radius: 4px;
  background-color: #ffffff;
  border: dashed 1px #69b4ff;
  padding: 5px 10px 5px 7px;
  color: #61656e;
}
html body .special-deals .badge-light.dotted span:last-of-type {
  color: #d0021b;
  margin-left: 5px;
}
html body .special-deals .badge-light.dotted .etsfonticon-like {
  margin-right: 7px;
  color: #3f9bf8;
  font-size: 14px;
}
html body .badge.opportunity {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
html body .badge.opportunity i {
  width: 25px;
  height: 25px;
  font-size: 16px;
  margin-left: 10px;
  display: inline-flex;
  color: #fff;
  padding: 5px;
  border-radius: 100%;
}
html body .badge.opportunity.maxxcard {
  color: #61656e;
  font-size: 12px;
  font-weight: 500;
}
html body .badge.opportunity.maxxcard i {
  background: #61656e;
  font-size: 12px;
  align-items: center;
}
html body .badge.opportunity span {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  padding: 0;
}
.special-occasion span {
  color: #ff8308;
}
.special-occasion i {
  background-color: #ff8308;
}
.special-today span {
  color: #f85156;
}
.special-today i {
  background-color: #f85156;
}
.discount-extra {
  font-size: 12px;
  text-align: right;
  float: right;
  color: #61656e;
  width: 100%;
  margin-top: 1px;
}
html body .badge.radius-right {
  border-radius: 4px 0 0 4px;
}
html body .badge.radius-left {
  border-radius: 0 4px 4px 0;
}
html body .badge.radius-bottom {
  border-radius: 4px 4px 0 0;
}
html body .badge.radius-top {
  border-radius: 0 0 4px 4px;
}
html body .badge.arrow-top {
  position: relative;
}
html body .badge.arrow-top:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: -21%;
  left: 10px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .badge.arrow-right {
  position: relative;
}
html body .badge.arrow-right:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  right: -5px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .badge.arrow-bottom {
  position: relative;
}
html body .badge.arrow-bottom:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -15%;
  right: 10px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .badge.arrow-left {
  position: relative;
}
html body .badge.arrow-left:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: -5px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .badge-safe-tourism {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
html body .badge-safe-tourism img {
  width: 60px;
}
html body .room-info {
  color: #61656e;
  padding: 0;
  align-items: flex-start;
}
html body .room-info i {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #eaebec;
  background-color: #ffffff;
  padding: 5px;
  width: 25px;
  height: 25px;
  color: #1f2126;
  border-radius: 100%;
}
html body .room-info span {
  margin-top: 8px;
  display: inline-block;
  text-align: left;
  font-size: 12px;
}
/* _BADGE_ END */

/* _FEATURE_ */
html body .feature {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: normal;
  color: #61656e;
}
html body .feature > span > strong {
  font-weight: 500;
  margin-right: 4px;
}
html body .feature > img.left-icon,
html body .feature > i.left-icon {
  margin-right: 8px;
}
html body .feature > img.right-icon,
html body .feature > i.right-icon {
  margin-left: 8px;
}
html body .feature-default {
  color: #61656e;
}
html body .feature-success {
  color: #03ca6a;
}
html body .feature-info {
  color: #1bb3ff;
}
html body .feature-alert {
  color: #ff8308;
}
html body .feature-warning {
  color: #f85156;
}
html body .feature-purple {
  color: #870eff;
}
html body .feature.feature-badge {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ebf1fa;
  background-color: #f6f9fd;
}
html body .feature.feature-badge-large {
  align-items: flex-start;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ebf1fa;
  background-color: #f6f9fd;
  box-shadow: 2px 1px 5px -1px rgba(97, 101, 110, 0.68);
}
html body .feature.feature-badge-large > img,
html body .feature.feature-badge-large > i {
  width: 20%;
}
html body .feature.feature-badge-large > span {
  width: auto;
  display: flex;
  flex-direction: column;
}
html body .feature.feature-badge-large > span > strong {
  margin: 0;
}
html body .feature.feature-badge-large.default {
  color: #61656e;
}
html body .feature.feature-badge-large.success {
  color: #03ca6a;
}
html body .feature.feature-badge-large.info {
  color: #1bb3ff;
}
html body .feature.feature-badge-large.alert {
  color: #ff8308;
}
html body .feature.feature-badge-large.warning {
  color: #f85156;
}
/* _FEATURE_ END */

/* _PROGRESS_ */
html body .progress {
  position: relative;
  width: 100%;
}
html body .progress .progress-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
html body .progress .progress-header span {
  font-size: 14px;
  font-weight: normal;
  color: #61656e;
}
html body .progress .progress-header span:last-child {
  color: #1f2126;
  font-weight: 700;
}
html body .progress .progress-pipe {
  width: 100%;
  height: 6px;
  background-color: #ebf1fa;
  border-radius: 3px;
}
html body .progress .progress-pipe span {
  position: absolute;
  display: inline-block;
  max-width: 100%;
  height: 6px;
  border-radius: 3px;
}
html body .progress.progress-primary .progress-pipe > span {
  background-image: linear-gradient(91deg, #e3eb80 0%, #0fb4ab 98%);
}
html body .progress.progress-secondary .progress-pipe > span {
  background-color: red;
}
html body .progress.progress-success .progress-pipe > span {
  background-color: #03ca6a;
}
html body .progress.progress-info .progress-pipe > span {
  background-color: #1bb3ff;
}
html body .progress.progress-alert .progress-pipe > span {
  background-color: #ff8308;
}
html body .progress.progress-warning .progress-pipe > span {
  background-color: #f85156;
}

html body .badge.opportunity i.longStayDiscountFont {
  position: relative;
  font-size: 12px; 
  padding: 11px;
}

html body .badge.opportunity i.etsfonticon-long-stay:before {
    position: absolute;
    content: "\F17A";
    top: 6px;
    left: 4px;
}
/* _PROGRESS_ END */

/* _SCORE_ */
/* html body .score { */
/*   display: inline-flex; */
/*   flex-direction: column; */
/*   justify-content: center; */
/*   align-items: center; */
/*   min-width: 160px; */
/*   padding: 16px 8px; */
/*   border-radius: 6px; */
/*   box-shadow: 2px 3px 7px 0 rgba(31, 33, 38, 0.1); */
/* } */
/* html body .score-primary { */
/*   background-image: linear-gradient(128deg, #e3eb80 2%, #0fb4ab); */
/*   color: white; */
/* } */
/* html body .score-outline { */
/*   background-color: white; */
/*   border: 1px solid #eaebec; */
/*   color: #61656e; */
/* } */
/* html body .score-outline > span { */
/*   font-weight: normal; */
/* } */
/* html body .score-point { */
/*   align-items: flex-end; */
/*   min-width: 200px; */
/*   padding: 15px 12px; */
/*   background-color: #f6f9fd; */
/*   color: #0dc5bb; */
/* } */
/* html body .score-point > span { */
/*   font-size: 16px; */
/*   font-weight: 500; */
/*   letter-spacing: normal; */
/* } */
/* html body .score-point > span:last-child { */
/*   margin-top: 8px; */
/*   color: #61656e; */
/* } */
/* html body .score-band { */
/*   flex-direction: row; */
/*   justify-content: flex-end; */
/*   padding: 9px 15px; */
/*   border-radius: 6px 6px 0 0; */
/*   font-size: 24px; */
/*   font-weight: 500; */
/* } */
/* html body .score-band .score-label { */
/*   display: none; */
/* } */
/* html body .score-band.primary { */
/*   background-image: linear-gradient(128deg, #e3eb80 2%, #0fb4ab); */
/*   color: white; */
/* } */
/* html body .score-band.secondary { */
/*   background-color: #f6f9fd; */
/*   color: #0dc5bb; */
/* } */
/* html body .score-band.success { */
/*   background-color: #03ca6a; */
/*   color: white; */
/* } */
/* html body .score-band.info { */
/*   background-color: #1bb3ff; */
/*   color: white; */
/* } */
/* html body .score-band.alert { */
/*   background-color: #ff8308; */
/*   color: white; */
/* } */
/* html body .score-band.warning { */
/*   background-color: #f85156; */
/*   color: white; */
/* } */
/* _SCORE_ END */

/* _TEXT_LINK_ */
html body .link,
html body .link:not([href]):not([tabindex]){
  display: inline-flex;
  align-items: center;
  color: #056bfd;
  text-decoration: none;
}
html body .link i::before,
html body .link:not([href]):not([tabindex]) i::before{
  vertical-align: middle;
}
html body .link:hover {
  text-decoration: underline;
}
html body .link.disable {
  pointer-events: none;
  opacity: 0.4;
}
html body .link-primary {
  font-size: 16px;
}
html body .link-secondary {
  font-size: 14px;
}
html body .link-small {
  font-size: 12px;
}
html body .link-warning,
html body .link-warning:not([href]):not([tabindex]){
  color: #f85156;
  text-decoration: none;
  font-size: 16px;
}
/* _TEXT_LINK_ END */

/* _TOOLTIP_ */
html body .tooltip {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  max-width: 350px;
  padding: 12px 10px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 2px 3px 7px 0 rgba(31, 33, 38, 0.1);
  font-size: 12px;
  font-weight: normal;
}
html body .tooltip > p {
  margin: 0;
  padding: 0;
}
html body .tooltip-primary,
html body .tooltip-primary:before,
html body .tooltip-primary:after {
  background-color: #9ca1ae;
  color: white;
}
html body .tooltip-dark,
html body .tooltip-dark:before,
html body .tooltip-dark:after {
  background-color: #61656e;
  color: white;
}
html body .tooltip-success,
html body .tooltip-success:before,
html body .tooltip-success:after {
  background-color: #03ca6a;
  color: white;
}
html body .tooltip-info,
html body .tooltip-info:before,
html body .tooltip-info:after {
  background-color: #1bb3ff;
  color: white;
}
html body .tooltip-alert,
html body .tooltip-alert:before,
html body .tooltip-alert:after {
  background-color: #ff8308;
  color: white;
}
html body .tooltip-warning,
html body .tooltip-warning:before,
html body .tooltip-warning:after {
  background-color: #f85156;
  color: white;
}
html body .tooltip.arrow-top {
  position: relative;
}
html body .tooltip.arrow-top:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: -7px;
  left: 25px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .tooltip.arrow-right {
  position: relative;
}
html body .tooltip.arrow-right:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: -7px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .tooltip.arrow-bottom {
  position: relative;
}
html body .tooltip.arrow-bottom:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: -7px;
  right: 25px;
  border-radius: 2px;
  transform: rotate(45deg);
}
html body .tooltip.arrow-left:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: -7px;
  border-radius: 2px;
  transform: rotate(45deg);
}
.ets-tooltip-element {
  font-size: 16px;
  color: #ff8308;
  display: inline-flex;
}
.ets-tooltip-element:hover + .tooltip {
  opacity: 1;
  margin-top: -12px;
  margin-left: 12px;
  width: fit-content;
}
.more-tags {
  position: relative;
  display: inline-flex;
  width: 40px;
}
html body .more-tags .tooltip {
  position: absolute;
  right: -10px;
  bottom: 37px;
  min-width: 60px;
  opacity: 1;
  display: none;
}
.more-tags:hover .tooltip.tooltip-primary.arrow-bottom {
  display: block;
}
/* _TOOLTIP_ END */
/* _ALERT_ START */
html body .alert{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  margin: 0;
  border: 1px solid;
  border-radius: 6px;
}
html body .alert img.left-icon,
html body .alert i.left-icon{
  margin-right: 8px;
}
html body .alert img.right-icon,
html body .alert i.right-icon{
  margin-left: 8px;
}
html body .alert a{
  text-decoration: none;
}
html body .alert i::before{
  vertical-align: middle;
}
html body .alert p{
  margin: 0;
  font-weight: bold;
  color: #1f2126;
}

html body .alert-primary{
  background-color: #fcf8ff;
  border-color: #870eff;
}

/* Only Alert Media Breakpoints */
@media only screen and (min-width: 320px){
  html body .alert p{
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px){
  html body .alert p{
    font-size: 14px;
  }
}
/* _ALERT_ END */