body {
    background-color: #fdfdfd !important;
}

img {
	background-color: #fff;
	box-shadow: 0px 0px 19px 0px rgba(194,185,185,0.75);
	-webkit-box-shadow: 0px 0px 19px 0px rgba(194,185,185,0.75);
	-moz-box-shadow: 0px 0px 19px 0px rgba(194,185,185,0.75);
}

.hotelSpace {
	padding: 20px 20px;
}

.hotelImage {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.75);
}

.hotelDetais {
	width: 100%;
	padding: 30px 20px;
}

.eventSpace {
	padding: 30px 0px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.roomSpace {
	padding: 15px 15px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.roomDescription {
	font-size: 8px;
}

.roomDtBox {
	background-color: #ccc;
	border: 2px solid #fff;
	border-radius: 8px;
	font-size: 11px;
	color: #000;
	padding: 8px 8px;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #e4e0d6 !important;
    border-bottom: #b39a58 !important;
}

.card {
	border: 1px solid #b39a58 !important;
    border-radius: .25rem !important;
}

.btn-accordion {
    font-weight: 600 !important;
    color: #262626;
    text-decoration: none;
}

.btn-accordion:hover {
    font-weight: 600;
    color: #cccccc;
    text-decoration: none;
}

.btn-accordion:focus,
.btn-accordion:active,
.btn-accordion.focus {
    outline: none !important;
    box-shadow: none !important;
}

.destakTitle {
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
}

.notification {
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 160px;
	margin-right: 15rem;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 15px 15px;
	text-align: right;
}

.toastExtras{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 420px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    font-size: 14px;
    overflow: hidden;
    display: none;
}

.toastHeader{
    background: #e4e0d6;
    color: black;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toastBody{
    padding: 12px;
}

.toastClose{
    cursor: pointer;
    font-size: 18px;
}

.btn-lvtGreen {
	color: #fff !important;
    background-color: #1eb5a6 !important;
    border-color: #1eb5a6 !important;
}

.btn-lvtGreen:hover {
	color: #fff !important;
    background-color: #0c9d8f !important;
    border-color: #0c9d8f !important;
}

.badge-lvtGreen {
    color: #fff;
    background-color: #1eb5a6;
}

.badge-lvtGreen:hover {
    color: #fff;
    background-color: #0c9d8f;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #1eb5a6 !important;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(30 181 166 / 60%) !important;
}

.text-lvtGreen {
    color: #1eb5a6 !important;
}

/* Esconde o radio */
.cartoes input[type="radio"] {
  display: none;
}

/* Estilo dos cards */
.card-option {
  text-align: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: 0.2s;
}

.card-option img {
  height: 40px;
  display: block;
  margin: 0 auto 5px;
}

/* Hover */
.card-option:hover {
  border-color: #ccc;
}

/* Quando selecionado */
.cartoes input[type="radio"]:checked + .card-option {
  border-color: #0c9d8f;
  background-color: #1eb5a65c;
}