@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900|Roboto:300,400,500,700,900|Ubuntu+Condensed&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap-grid.css");


*,
*:before,
*:after  {
	margin: 0;
	padding: 0;
	outline: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Poppins", "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

a:hover {
	cursor: pointer;
}

body {
	background: #f8f8f8;
	min-width: 300px;
	color: #636363 !important;
	margin: 0;
	padding: 0;
}

.container {
	position: relative;
}

.clear {
	clear: both;
}

.error-msg {
	background: #ef5350;
	height: 40px;
	width: 100%;
	text-align: center;
	font: 600 15px "Poppins", "Roboto", sans-serif;
	color: #fff;
	padding: 8px;
	position: absolute;
	z-index: 9;
}

.cover {
	position: absolute;
	width: 100%;
	height: 600px;
	top: 0;
	left: 0;
	-webkit-clip-path: polygon(40% 0, 100% 0%, 100% 100%, 65% 100%);
	clip-path: polygon(40% 0, 100% 0%, 100% 100%, 65% 100%);
	-webkit-filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 0px 0 #fff) drop-shadow(0 -1px 0 #fff);
	filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 0px 0 #fff) drop-shadow(0 -1px 0 #fff);
	overflow: hidden;
}

.cover-manha {
    background-image: linear-gradient(rgb(108, 201, 231) 0%, rgb(108, 201, 231) 100%);
}

.cover-tarde {
    background-image: linear-gradient(rgb(96, 177, 204) 0%, rgb(91, 196, 231) 100%);
}

.cover-anoitecer {
    background-image: linear-gradient(rgb(208, 151, 115) 0%, rgb(224, 181, 127) 50%, rgb(242, 213, 141) 100%);
}

.cover-noite {
    background-image: linear-gradient(rgb(0, 52, 72) 0%, rgb(10, 62, 83) 100%);
}

.cover > .hotel {
	position: absolute;
	background: url('/cdn/assets/img/bg-hotel.gif') 40% 30% / auto no-repeat scroll;
	width: 900px;
	height: 600px;
	top: 0px;
	right: 0;
}

.sol {
	position: absolute;
	top: 0px;
	right: 0;
	background: url('/cdn/assets/img/sun.png') 0 0 / auto no-repeat scroll;
	width: 497px;
	height: 250px;
}

@media (max-width: 768px) {
    .sol {
        width: 100%;
        height: auto;
        max-width: 497px;
        max-height: 250px;
    }
}

.stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
z-index:0;
	background: transparent;
	overflow: hidden;

}

.estrela {
	position: absolute;
	width: 2px;
	height: 2px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
	animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
	0%, 100% {
		opacity: 0.2;
	}
	50% {
		opacity: 1;
	}
}

.header-content {
	height: 110px;
	width: 100%;
}

.logo {
	position: relative;
	background: url('https://i.imgur.com/rzhF7zU.png') 0 0 / auto no-repeat scroll;
	width: 190px;
	height: 80px;
animation: flipInY 3s;
}

.online-count {
	position: relative;
	margin: 20px 0 0 40px;
	font-weight: 600;
}

.online-count:before {
	content: "";
	position: relative;
	background: url(https://i.imgur.com/H0RMaEF.png);
	height: 26px;
	width: 21px;
	top: -2px;
	margin: auto 10px auto 0;
}

.errors-area {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.error-box {
	position: relative;
	background: #ff6359;
	border-radius: 5px;
	padding: 15px;
	margin: 0 0 15px 0;
}

.login-area {
	position: relative;
	width: 100%;
}

input {
	position: relative;
	background: #fff;
	width: 100%;
	border: 2px solid rgb(229, 229, 229);
	border-radius: 5px;
	padding: 13px;
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
}

input.error-input {
	border-color: #ff6156;
}

input:focus,
input:active {
	border: 2px solid #94c1d3;
}

.btn {
	border-radius: 5px;
	font: 600 12px "Poppins", "Roboto", sans-serif;
	text-decoration: none;
	color: #fff;
	-webkit-transition: background .2s;
	transition: background .2s;
	padding: 10px 20px;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	border: none;
	outline: none;
	cursor: pointer;
	text-align: center;
}

.btn.big {
	padding: 15px 40px;
	font: 600 13px "Poppins", "Roboto", sans-serif;
	text-transform: uppercase;
}

.btn.green {
	background: #52be80;
}

.btn.green:hover {
	background: #57ca89;
}

.btn.orange {
	background: #ffca28;
}

.btn.orange:hover {
	background: #ffe082;
}

.btn.red {
	background: #ef5350;
}

.btn.red:hover {
	background: #e57373;
}

.btn.disabled {
	background: #cfd8dc;
	cursor: default;
}

.btn.disabled:hover {
	background: #cfd8dc;
}

.btn.login-button {
	position: relative;
	float: right;
}

.btn.register-button {
	position: relative;
	width: 100%;
	float: left;
}

.btn.back-register {
	float: left;
	position: relative;
	padding: 10px 20px;
	font: 600 13px "Poppins", "Roboto", sans-serif;
	text-transform: uppercase;
}

.btn.next-register {
	float: right;
	position: relative;
	padding: 10px 20px;
	font: 600 13px "Poppins", "Roboto", sans-serif;
	text-transform: uppercase;
}

.btn.check-in-header {
	position: absolute;
	right: 0;
	top: 60px;
}

.btn.news-slider-btn {
	position: absolute;
	right: 60px;
	top: 14px;
}

.btn.news-card-btn {
	position: absolute;
	right: 20px;
	bottom: 14px;
}

.article-featured {
	position: relative;
	background: #fcfcfc;
	width: 100%;
	max-width: calc(100% / 2 - 20px);
	top: 0px;
	border-radius: 4px;
	border: 2px solid #d8d8d8;
	margin: 10px;
	transition: top 0.25s, box-shadow 0.25s linear;
	overflow: hidden;
}

.article-featured:hover {
	top: -5px;
}

.article-featured:active {
	top: 0px;
	box-shadow: 0px 5px 10px #131212;
}

.article-featured label {
	padding: 15px;
}

.article-featured-thumbnail {
    position: relative;
    background: url(https://i.imgur.com/GL4kVuT.gif) center / cover no-repeat scroll #52cdea;
    width: 100%;
    height: 40px;
    image-rendering: pixelated;
}

.flat-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 2px solid rgb(229, 229, 229);
    border-radius: 5px;
    padding: 13.6px 15px;
    font-size: 13px;
    color: #464646;
    cursor: pointer;
    margin-right: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.flat-select:hover {
    border-color: #bbb;
}

.flat-select:focus {
    border-color: #999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.flex {
    display: flex;
    align-items: center;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-default {
    border-color: #ddd;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#icon-aanbevolen {
    width: 40px;
    height: 40px;
    position: absolute;
    background: url(//images.habblive.com/c_imagenes/album1584/hblx71.gif) bottom right no-repeat;
    z-index: 1;
    margin-left: -9px;
    margin-top: -5px;
    animation: flipInY 3s;
}

.panel-body {
    padding: 15px;
	font-size: 14px;
}

.footer.container-fluid.footer.first ul {
    margin-left: 20px;
    padding-left: 0;
}

.footer-content {
	text-align: center;
	width: 100%;
	margin: 50px 0 20px 0;
}

.bg-blue-50 {
	--tw-bg-opacity: 1;
	background-color: rgb(239 246 255 / var(--tw-bg-opacity));
  }

  .rounded-md {
	border-radius: 0.375rem;
  }

  .shadow-md {
	--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .w-12 {
	width: 3rem;
  }

  .botao {
	background-color: #f7f7f7; 
	border: 2px solid #ffffff;
	border-radius: 4px;
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 4px;
	transition: top 0.25s, box-shadow 0.25s linear;
  }

  .botao:hover {
	top: -5px;
}

  .btn-fb {
	background-color: #e1ecf5;
	border: 2px solid #eaf0f5;
  }
  
  .btn-insta {
	background-color: #e9ebf1;
	border: 2px solid #f7f6f8;
  }

  .icone {
	width: 30px;
	height: 30px;
  }

  .icone-dc {
	width: 24px;
	height: 24px;
  }

.cover-register:before {
	content: "";
	position: absolute;
	background: url('../img/hotel_right.png') 0 0 / auto no-repeat scroll;
	width: 475px;
	height: 463px;
	right: 0;
	bottom: 0;
	transition: opacity 0.25s linear;
}

.cover-register {
    position: relative;
    
    width: 100%;
    height: 250px;
    margin: 0 0 -200px 0;
    transition: height 0.25s linear;
}

#loading-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
  }
  
  @media (max-width: 768px) {
	#loading-container {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0, 0, 0, 0.5);
	  z-index: 1000;
	}
	#loading {
	  margin: 0 auto;
	}
  }
  
  @media (max-width: 480px) {
	#loading-container {
	  top: 0%;
	  left: 0%;
	}
  }
  
		  @keyframes fadeIn {
			  0% {
				  opacity: 0;
			  }
  
			  100% {
				  opacity: 1;
			  }
		  }
  
		  @keyframes fadeOut {
			  0% {
				  opacity: 1;
			  }
  
			  100% {
				  opacity: 0;
			  }
		  }

.register-area {
	position: relative;
	background: #ffffff;
	max-width: 500px;
	border-radius: 5px;
	padding: 20px!important;
	margin: 0 auto;
	box-shadow: 0 0 10px #0000002e;
	overflow: hidden;
}

.register-area button.register-button {
	width: 290px;
    height: 55px;
    margin: auto 0 auto 20px;
}

.register-errors {
	position: relative;
	top: -20px;
	margin: 0 -20px!important;
	overflow: hidden;
}

.register-error-box {
	color:#fff !important;
	position: relative;
	background: #ff6156;
	padding: 15px;
}

/* Estilo base para os labels */
.gender-option {
	display: inline-block;
	margin-top:7px;
	width: 100%;
	height:50px;
	border: 2px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s;
}

/* Estilo quando o input está selecionado */
input[type="radio"]:checked + .gender-option {
	background-color: #e6e6e6; /* Cor de fundo quando selecionado */
	border-color: #c7c7c7; /* Cor da borda quando selecionado */
}

/* Ocultar o input radio */
input[type="radio"] {
	display: none;
}

/* Centralizar as imagens */
.gender-option img {
	display: block;
	margin: 0 auto;
}

.g-recaptcha {
	position: relative;
	background: #f9f9f9;
	width: 315px;
	height: 72px;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	overflow: hidden;
}

.g-recaptcha > div {
	position: relative;
	width: 300px!important;
	height: 72px!important;
	margin: auto;
	display: flex;
	overflow: hidden;
}

.g-recaptcha > div > div {
	margin: -2px 0 0 -1px;
}

.mr-auto {
	margin: auto;
}

.mr-auto-top-bottom {
	margin-top: auto;
	margin-bottom: auto;
}

.mr-auto-left-right {
	margin-left: auto;
	margin-right: auto;
}

.mr-auto-top {
	margin-top: auto;
}

.mr-auto-left {
	margin-left: auto;
}

.mr-auto-right {
	margin-right: auto;
}

.mr-auto-bottom {
	margin-bottom: auto;
}

.mr-1 {
	margin: 5px;
}

.mr-2 {
	margin: 10px;
}

.mr-3 {
	margin: 15px;
}

.mr-4 {
	margin: 20px;
}

.mr-5 {
	margin: 25px;
}

.mr-top-1 {
	margin-top: 5px;
}

.mr-top-2 {
	margin-top: 10px;
}

.mr-top-3 {
	margin-top: 15px;
}

.mr-top-4 {
	margin-top: 20px;
}

.mr-top-5 {
	margin-top: 25px;
}

.mr-left-1 {
	margin-left: 5px;
}

.mr-left-2 {
	margin-left: 10px;
}

.mr-left-3 {
	margin-left: 15px;
}

.mr-left-4 {
	margin-left: 20px;
}

.mr-left-5 {
	margin-left: 25px;
}

.mr-right-1 {
	margin-right: 5px;
}

.mr-right-2 {
	margin-right: 10px;
}

.mr-right-3 {
	margin-right: 15px;
}

.mr-right-4 {
	margin-right: 20px;
}

.mr-right-5 {
	margin-right: 25px;
}

.mr-bottom-1 {
	margin-bottom: 5px;
}

.mr-bottom-2 {
	margin-bottom: 10px;
}

.mr-bottom-3 {
	margin-bottom: 15px;
}

.mr-bottom-4 {
	margin-bottom: 20px;
}

.mr-bottom-5 {
	margin-bottom: 25px;
}

.pd-none {
	padding: unset;
}

.pd-1 {
	padding: 5px;
}

.pd-2 {
	padding: 10px;
}

.pd-3 {
	padding: 15px;
}

.pd-4 {
	padding: 20px;
}

.pd-5 {
	padding: 25px;
}

.pd-top-1 {
	padding-top: 5px;
}

.pd-top-2 {
	padding-top: 10px;
}

.pd-top-3 {
	padding-top: 15px;
}

.pd-top-4 {
	padding-top: 20px;
}

.pd-top-5 {
	padding-top: 25px;
}

.pd-left-1 {
	padding-left: 5px;
}

.pd-left-2 {
	padding-left: 10px;
}

.pd-left-3 {
	padding-left: 15px;
}

.pd-left-4 {
	padding-left: 20px;
}

.pd-left-5 {
	padding-left: 25px;
}

.pd-right-1 {
	padding-right: 5px;
}

.pd-right-2 {
	padding-right: 10px;
}

.pd-right-3 {
	padding-right: 15px;
}

.pd-right-4 {
	padding-right: 20px;
}

.pd-right-5 {
	padding-right: 25px;
}

.pd-bottom-1 {
	padding-bottom: 5px;
}

.pd-bottom-2 {
	padding-bottom: 10px;
}

.pd-bottom-3 {
	padding-bottom: 15px;
}

.pd-bottom-4 {
	padding-bottom: 20px;
}

.pd-bottom-5 {
	padding-bottom: 25px;
}

.flex {
	display: flex;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.width-fit {
	width: fit-content;
}

.bold {
	font-weight: bold;
}

.no-link,
.no-link:hover {
	text-decoration: none;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.overflow-hidden {
	overflow: hidden;
}

.pointer-none {
	pointer-events: none;
}

.underline {
	text-decoration: underline;
}

.width-content {
	width: 100%;
}

.fs-10 {
	font-size: 10px;
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.fw-600 {
	font-weight: 600;
}

/* Cores */

.color-1 {
	color: #a3a3a3;
}

.color-2 {
	color: #000;
}

.color-3 {
	color: #888;
}

.color-4 {
    color: #656565;
}

.color-5 {
	color: #989898;
}

.color-6 {
	color: #ffffff;
}

.input-error {
    border: 2px solid #ff6156;
}

hr[type="1"] {
	background: #cecece;
	width: 100%;
	height: 1px;
	border: unset;
}

.article-content-author {
    position: relative;
    background: #111111;
    margin: 20px -10px -10px -10px;
    
}

.article-content-author-about {
    width: 100%;
    max-width: 230px;
}

.article-content-author-about-imager {
    position: relative;
    overflow: hidden;
    height: 75px;
    margin: -25px 0 0 0;
}

.article-content-author-statistcs {}

.article-content-react {
    height: 39px;
}

.article-content-react > .like {
    position: relative;
    background: url('../img/sprite.png') no-repeat -1px -1px;
    width: 39px;
    height: 39px;
    border: none;
    cursor: pointer;
}

.article-content-react > .like.active {
    background: url('../img/sprite.png') no-repeat -1px -41px;
}

.article-content-react > .deslike.active {
    background: url('../img/sprite.png') no-repeat -41px -41px;
}

.article-content-react > .deslike {
    position: relative;
    background: url('../img/sprite.png') no-repeat -41px -1px;
    width: 39px;
    height: 39px;
    border: none;
    cursor: pointer;
}

.article-content-reactions {
    background: #252525ad;
    padding: 3px 0 6px 3px;
}

.article-content-reactions > .article-content-reaction {
    position: relative;
    width: 47px;
    height: 47px;
    border-radius: 3px;
    margin: 1px 1px 0 0;
    float: left;
    overflow: hidden;
	z-index:9;
}

.article-content-reactions > .article-content-reaction[state="like"]:before {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 9px solid #009601;
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: -10px -10px;
    z-index: 1;
	border: none;
}

.article-content-reactions > .article-content-reaction[state="like"] {
    background: #a1d35c;
    border: 1px solid #109805;
	border: none;
}

.article-content-reactions > .article-content-reaction[state="like"]:after {
    content: "";
    position: absolute;
    background: url('../img/sprite.png') no-repeat -12px -785px;
    width: 13px;
    height: 14px;
    right: 2px;
    bottom: 2px;
    z-index: 2;
	border: none;
}

.article-content-reactions > .article-content-reaction[state="deslike"]:before {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 9px solid #d82626;
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: -10px -10px;
    z-index: 1;
	border: none;
}

.article-content-reactions > .article-content-reaction[state="deslike"] {
    background: #d97575;
    border: 1px solid #d82626;
	border: none;
}

.article-content-reactions > .article-content-reaction[state="deslike"]:after {
    content: "";
    position: absolute;
    background: url('../img/sprite.png') no-repeat -26px -785px;
    width: 13px;
    height: 14px;
    right: 2px;
    bottom: 2px;
    z-index: 2;
	border: none;
}

.article-content-reaction-imager {
    margin: -15px 0 0 -11px;
}

.footer {
    position: relative;
    margin: 25px 0 0 0;
    padding: 5px;
    display: flex;
}

.top-separator {
    position: relative;
    background: #000000;
    min-width: 1px;
    max-width: 1px;
    width: 100%;
    margin: 8px 0px;
}

icon[name="personal-mini"] {
    position: relative;
    background: url('../img/sprite.png') no-repeat -1px -788px;
    width: 10px;
    height: 11px;
}
button[type="ok"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
button[type="submit"] {
	background:#808caa;
	color: #fff;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: inherit;
	border-radius: 3px;
}
.close {
	position: absolute;
	right: 26px;
	top: 2px;
	width: 12px;
	height: 2px;
	opacity: 0.9;
  }
  .close:hover {
	opacity: 1;
  }
  .close:before, .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 19px;
	width: 5px;
	background-color: #fff;
  }
  .close:before {
	transform: rotate(45deg);
  }
  .close:after {
	transform: rotate(-45deg);
  }
  .input {
	position:relative;
	font-size: 12px;
	padding: 0.25em 0.5em;
	background-color: #e6e6e6;
	border: 1px solid #c9c9c9;
	color:#8f8f8f;
	border-radius: 3px;
	width: 95%;
	padding-left: 15px;
	margin-bottom: 5px;
  }
  
  .input[type="textarea"] {
	position:relative;
	font-size: 12px;
	background-color: #e6e6e6;
	border: 1px solid #c9c9c9;
	border-radius: 3px;
	width: 95%;
	padding-left: 15px;
	margin-bottom: 5px;
  }
  
  textarea:focus, input:selected, input:focus, select:focus {
	  box-shadow: 0 0 0 0;
	  border: 0 none;
	  outline: 0px solid #ccc;
  } 
  
  .input:not(textarea) {
	line-height: 7;
	height: 2.25rem;
  }
  .modal-container {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    display: flex;
    overflow: auto;
    visibility: hidden;
    z-index: 999999;
    transition: opacity .5s, visibility .5s ease-in-out;
}

.modal-container.active {
    opacity: 1!important;
    visibility: visible!important;
    transition: opacity .5s, visibility .5s ease-in-out;
}

#modal-content {
    position: relative;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    margin: auto;
}

#news-modal {
    position: relative;
    border-radius: 3px;
}

#news-modal-header-news-info {
    position: relative;
    background: rgb(236, 236, 236);
    border: 1px solid rgb(220, 220, 220);
    border-radius: 3px;
}

#news-modal-header-news-info-habbo-author {
    position: relative;
    width: 64px;
    height: 70px;
    margin: -25px 0 0 -5px;
    overflow: hidden;
}

.loader-button {
    position: relative;
    background: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-bottom-color: #ffffff47;
    margin: auto;
    animation: spin 0.5s linear infinite;
    opacity: 0.8;
}

.error-input-warn {
    color: #f44336;
    margin: -4px 0 0 0;
    font-size: 9px;
}
.success-input-warn {
    color: #4CAF50;
    margin: -4px 0 0 0;
    font-size: 12px;
    text-align: center;
}

.form-warn {
    position: relative;
    border-radius: 5px;
    color: #fff;
    padding: 15px;
    overflow: hidden;
}

.form-warn.success {
     background: #4CAF50;
}

.form-warn.success:before {
    content: "";
    position: absolute;
    background: url('/cdn/assets/img/custom/p.gif') 0 0 / auto no-repeat #4CAF50;
    width: 245px;
    height: 215px;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

ul {
	list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #e2e2e2;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #a7a7a7;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
footer .avatar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    border-radius: 5px;
    width: 60px;
    margin-bottom: 10px;
    margin-right: 10px;
    text-align: center;
}

footer .avatar.light-gray {
    background-color: #c7c7c7;
}

footer .avatar.dark-gray {
    background-color: #a0a0a0
}

footer .avatar img {
    -webkit-filter: grayscale(100%);
}

footer .avatar img:hover {
    -webkit-filter: drop-shadow(2px 1px 0 #fff) drop-shadow(-2px 1px 0 #fff) drop-shadow(0 -2px 0 #fff)
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #c7c7c7;
  padding: 20px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #444444;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
	font-size: 12px;
	margin: 0px;
    padding: 0px;
  margin-left: 2px;
}
.footer-menu li:hover a{
  color: #222222;
}
.footer-menu li a {
  font-size: 14px;
  color: #494949;
}


@media (max-width: 1299px) {
	.article-featured {
		max-width: calc(100% / 3 - 20px);
	}
}

@media (max-width: 1199px) {

	.register-area > .flex-column:last-child > div {
		flex-direction: column;
	}

	.register-area > .flex-column:last-child > div > .g-recaptcha {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.register-area > .flex-column:last-child > div > button.register-button {
		width: 100%;
		margin: 0;
	}
}

@media (max-width: 1100px) {
	.cover-register:before {
		opacity: 0.5;
		transition: opacity 0.25s linear;
	}
}

.custom-label {
	position: absolute;
	right: 280px;
	margin-top: -0px;
	width: auto;
}

@media (max-width: 768px) {
	.custom-label {
		position: absolute;
		right: 160px !important;
		margin-top: 0;
		text-align: right;
	}
}
@media (max-width: 991px) {
	.custom-label {
		position: absolute;
		right: 210px;
		margin-top: 0;
		text-align: right;
	}
}
@media (max-width: 1100px) {
	.custom-label {
		position: absolute;
		right: 230px;
		margin-top: 0;
		text-align: right;
	}
}

@media (max-width: 991px) {
	.header-content {
	    margin: 15px 0;
	}
	
	.header-content .col-md-12 {
		width: 300px;
		flex-direction: column;
	}

	.header-content .col-md-12 > .logo {
	    margin: 0 auto;
	}

	.header-content .col-md-12 > .online-count {
	    margin: 15px auto 0 auto;
	}

	.article-featured {
		max-width: calc(100% / 2 - 20px);
	}

	.register-area {
		max-width: 75%!important;
	}
}

@media (max-width: 767px) {
	.cover {
		background: transparent;
		clip-path: unset;
	}

	.header-content {
		width: 100%;
	}

	.header-content > .row {
		margin: 0 auto;
	}

	.header-content > .row > .col-md-12 {
		width: 100%;
	}

	.header-content > .row > .col-md-12 {
		margin: auto 0
	}

	.cover > .hotel {
		display: none;
	}

	.article-featured {
		max-width: 100%;
	}

	.register-area {
		max-width: 100%!important;
	}
}

@media (max-width: 575px) {
	.cover-register {
		height: 225px;
		transition: height 0.25s linear;
	}
	.register-area {
		border-radius: 0px;
		box-shadow: unset;
	}
}
