.hidden {display: none;}
input[type=text], input[type=email], input[type=password], textarea {width: 100%; max-width: 100%;}

body { font-size: var(--bodyFontSize); font-family: var(--bodyFont); }

::selection { background-color: hsl(var(--siteColor1)); color: hsl(var(--white)); }
a:hover { color: hsl(var(--siteColor2)); }
.btn { vertical-align: top; padding: 7px 10px; line-height: 1; }

.white, .text-white,
.white:hover, .text-white:hover { color: hsl(0, 0%, 100%) !important; }
.black, .text-black,
.black:hover, .text-black:hover { color: hsl(0, 0%, 0%) !important; }

.btn-primary { background-color: hsl(var(--siteColor1)) !important; border-color: hsl(var(--siteColor1)) !important; }
.btn-primary:hover,
.btn-primary:active { background-color: hsla(var(--siteColor1), 80%) !important; border-color: hsla(var(--siteColor1), 0) !important; }
.btn-secondary { background-color: hsl(var(--siteColor2)) !important; border-color: hsl(var(--siteColor1)) !important; }
.btn-secondary:hover,
.btn-secondary:active { background-color: hsla(var(--siteColor2), 80%) !important; border-color: hsla(var(--siteColor2), 0) !important; }

.dashboard-box { overflow: hidden; padding: 0 0 10px; border-radius: 10px; border: 1px solid #999; }
.dashboard-box .title { display: flex; justify-content: center; align-items: center; padding: 10px; background-color: hsl(var(--siteColor1)); color: hsl(var(--white)); font-weight: 700; text-align: center; }
.dashboard-box .title .icon { width: auto; height: auto; margin-right: 5px; font-size: 150%; }
.dashboard-box .title {  }

.latest-news-box { font-size: 16px; line-height: 1.5; }
.latest-news-box .table td { font-size: inherit; }

/* Dashboard Radial Progress Bar */
.progress-circle { margin: -10px; display: block; overflow: hidden; transform: rotate(-90deg) rotateX(180deg); }
.progress-circle circle { stroke-dashoffset: 0; transition: stroke-dashoffset 1s ease; stroke: #9a9a9a; stroke-width: 20px; }
.progress-circle .bar { stroke: #ebebeb; }
.progress-circle-wrap { position: relative; display: inline-block; }
.progress-circle-wrap:after { position: absolute; top: 50%; left: 50%; font-size: 25px; transform: translate(-50%, -50%); content: attr(data-percent) "%"; }

.rental-search-wrap { height: 100%; min-height: 15rem; padding: 1.25rem; display: flex; justify-content: center; align-items: center; position: relative; border-radius: 0.625rem; background-image: url('/guestEngine/images/guest-search-rentals.jpg'); background-repeat: no-repeat !important; background-position: center center !important; background-size: cover !important; text-align: center; }
.rental-search-wrap .btn { padding: 0.625rem 1rem; border: var(--btnBorderWidth) solid hsl(var(--btnBorderColor)) !important; border-radius: 3px; font-weight: var(--wBold); text-transform: uppercase; transform: none !important; white-space: wrap; }

.alert-primary { background-color: hsla(var(--siteColor1), 75%) !important; border-color: hsl(var(--siteColor1)) !important; color: hsl(var(--white)) !important; }
.alert-secondary { background-color: hsla(var(--siteColor2), 75%) !important; border-color: hsl(var(--siteColor1)) !important; color: hsl(var(--white)) !important; }

.url-alert { margin-bottom: 20px; padding: 15px; background: #C40307; font-family: 'Helvetica Neue', helvetica, sans-serif; font-size: 16px; color: #fff; line-height: 1.35; font-weight: 500; text-align: center; }
.url-alert a { color: #fff; text-decoration: underline; }
.url-alert strong { display: block; margin-top: 10px; font-size: 175%; }
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-20px); }
	60% { transform: translateY(-10px); }
}
.url-alert .arrow { display: block; width: 30px; height: 18px; margin: 10px 0 0; position: relative; bottom: 0; left: 50%; transform: rotate(180deg); }
.url-alert .bounce { -moz-animation: bounce 2s infinite; -webkit-animation: bounce 2s infinite; animation: bounce 2s infinite; }

.treeview .app-menu__item-icnd[data-toggle='treeview'] {background: #fff; border-color: var(--primary); color: #333;}

.table-responsive { height: 100%; max-height: calc(100vh - 350px); overflow-y: auto; }
.table-responsive .table thead { background: #000; }
.table-responsive .table thead th { position: sticky; position: -webkit-sticky; top: -1px; z-index: 2; }

.table { margin-bottom: 0; }
.table th,
.table td { padding: 15px 20px; }
.table td { font-size: 16px; line-height: 1.5; }
.table td .btn { padding: 1rem 2rem; background: hsl(var(--siteColor1)); font-size: 16px; color: hsl(var(--white)); line-height: 1; }
.table td .btn:hover { background: hsl(var(--black)); color: hsl(var(--white)); }
.table td .link { padding: 0.5rem; font-size: 16px; color: hsl(var(--black)); font-weight: 500; text-decoration: none; }
.table td .link:hover { color: hsl(var(--siteColor1)); }
.table td .badge { min-width: 34px; padding: 10px; }

.form-group .btn { padding: 1rem 2rem; background: hsl(var(--siteColor1)); font-size: 16px; color: hsl(var(--white)); line-height: 1; }

.account-info-row { margin-right: -20px; margin-left: -20px; margin-bottom: 25px; border-top: 3px solid hsl(var(--siteColor1)); border-bottom: 3px solid hsl(var(--siteColor1)); }
.account-info-row .col { margin: 0; padding: 0; border-bottom: 3px solid hsla(var(--siteColor1), 5%); }
.account-info-row .dashboard-box { border: none; border-radius: 0; }
.account-info-row .dashboard-box .title { background: transparent; color: hsl(var(--black)); }
.account-info-row .table td { padding: 15px; border: none; }
.account-info-row .col { flex-grow: 1; flex-basis: 100%; }
@media (min-width: 568px) {
  .account-info-row .col { flex-basis: 50%; }
  .account-info-row .col:nth-child(even) { border-left: 3px solid hsla(var(--siteColor1), 5%); }
}
@media (min-width: 1200px) {
  .account-info-row .col { flex-basis: 25%; border-bottom: none; }
  .account-info-row .col-points + .col { border-left: 3px solid hsl(var(--siteColor1)); }
}

/* .app-content > .container { width: 100%; max-width: 800px; } */
.app-content > .container { max-width: 1360px; }
.app-content > .container > .row > .col { width: 100%; max-width: 1360px; margin: 0 auto; }
.app-content > .container > .row > .col p.d-flex { align-items: flex-start; }
.app-content > .container > .row > .col p .btn { margin-bottom: 5px; }

.card { width: 100%; }
.card-header:after {content: ''; display: table; clear: both;}

.form-group { margin-bottom: 20px; /* padding-bottom: 20px; border-bottom: 1px solid #f3f3f3; */ }
.form-group-half { display: inline-block; vertical-align: bottom; width: 46%; margin-right: -4px; }
.form-group-divider { display: inline-block; vertical-align: bottom; width: 8%; margin-right: -4px; padding: 0 2px; text-align: center; line-height: 2.75; }

.form-control-half { width: 50% !important; min-width: 200px; }
.form-control-third { width: 33.33333% !important; min-width: 200px; }
.form-control-quarter { width: 25% !important; min-width: 200px; }
.form-control-small { width: 70px !important; }
.form-control-medium { width: 200px !important; }

.click-to-copy { cursor: pointer; }

/* SORTABLE ELEMENTS */
#sort-list {padding: 0;}
#sort-list > li {list-style: none;}
#sort-list td {vertical-align: middle;}

/* FORMS */
.edit-form .datepicker {width: 200px; max-width: 100%;}
.edit-form textarea {min-height: 100px;}

/* TINY MCE */
.mce-tinymce {width: 100% !important;}

/* UPLOADED THUMBNAIL IMAGES */
.thumbnail-group {margin-bottom: 0; padding: 0;}
.thumbnail-group > li {list-style: none; min-width: 150px; margin-bottom: 15px;}
.thumbnail-group .thumbnail-wrap {padding: 5px; border: 1px solid rgba(255,255,255,0.75); border-radius: 3px;}
.thumbnail-group .thumbnail-img {display: block; width: 100%; height: auto;}
.thumbnail-group .btn {display: block; margin-top: 7px;}
#photosBox .thumbnail-group .thumbnail img { width: 100%; height: auto; }

/* MULTI UPLOAD GALLERY */
.multi-upload-form .template-upload.in, .multi-upload-form .template-download.in {opacity: 1;}
.form-multi-group .thumbnail-wrap hr {margin: 10px 30px; border-color: #fff;}

/* SWEET ALERT */
.swal-icon { margin: 15px auto !important; }
.swal-icon > img { width: calc(100% - 30px); }
.swal-footer { margin: 0 !important; padding: 15px 10px; }
.swal-button--confirm { background: var(--info); border-color: var(--info); }
.swal-button--confirm:hover { background: #277bc3 !important; border-color: #277bc3 !important; }

/* DATEPICKER INPUTS */
.datepicker-wrap {cursor: pointer; display: block; position: relative; background: #fff;}
.datepicker-wrap:after {content: "\f133"; display: block; position: absolute; top: 7px; right: 12px; z-index: 1; font-family: 'FontAwesome'; font-size: 18px; color: #ccc;}
.datepicker {cursor: pointer !important; padding-right: 30px; position: relative; z-index: 2; background: #fff !important;}

/* DATEPICKER CALENDAR */
#ui-datepicker-div { background-color: #fff !important; }
#ui-datepicker-div .ui-datepicker-current-day .ui-state-default,
#ui-datepicker-div .ui-state-default:hover { color: #fff !important; }

/* PAGINATION */
.paginationlink { margin: 15px 5px 5px 5px; padding: 8px 18px; background-color: #f9f9f9; border: 1px solid #CCCCCC; border-radius: 5px; font: 13px Lucida Grande, Helvetica, sans-serif; color: #313131; text-decoration: none; }
.paginationlink:hover { background-color: #AAAAAA; border-radius: 5px; color: #313131; }
.paginationselected { font: 13px Lucida Grande, Helvetica, sans-serif; border-radius: 5px; padding: 8px 18px; margin: 15px 5px 5px 5px; border: 1px solid #313131; background-color: #ccc; color: #313131; }
.paginationdisabled { font: 13px Lucida Grande, Helvetica, sans-serif; margin: 15px 5px 5px 5px; padding: 8px 18px; background-color: #f9f9f9; border: 1px solid #ccc; border-radius: 5px; color: #ccc; }
.error { color: #f00; }

.controls-info { margin-bottom: 10px; color: #555; }

/* CONTENT BUILDER PAGES */


/* LOGIN PAGE */
.logo-wrap { margin: 75px 0 25px; }
.login-wrap { width: 100%; max-width: 400px; margin: 0 auto; padding: 3px; border: 1px #ccc solid; background: #fff; box-shadow: 0 29px 147.5px 102.5px rgb(0 0 0 / 5%), 0 29px 95px 0 rgb(0 0 0 / 16%); }
.login-wrap .alert { margin-bottom: 3px; }
.login-wrap .btn { border-radius: var(--borderRadiusCheckbox); }
.login-tabs { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; }
.login-tabs .btn { width: calc(50% - 2px); border: none; padding: 15px 0; }
.login-tabs .btn:active,
.login-tabs .btn:focus,
.login-tabs .btn:hover { transform: none !important; box-shadow: var(--focusShadow) !important; }
.login-form-item { padding: 35px; }
.login-form-item h3 { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; margin: 0 0 20px; padding: 0 0 20px; border-bottom: 1px #ddd solid; font-family: inherit; font-size: 1.53125rem; color: inherit; line-height: 1.2; font-weight: 700; text-transform: uppercase; }
.login-form-item .login-text { margin-bottom: 10px; }
.login-form-item .control-group { margin-bottom: 10px; }


/* LAYOUT STYLES */
.table.table-align-items-center td { vertical-align: middle; }
.table img { border-radius: var(--borderRadiusCheckbox); }
.accessibleModulesOption { width: 220px; float: left; padding: 5px; }



/* RESPONSIVE */
@media (max-width: 568px) {
  .form-control-third { width: 50% !important; min-width: 200px; }
}
@media (max-width: 480px) {
  .edit-form .datepicker { width: 100%; }
  .form-group-half, .form-group-divider { display: block; width: 100%; margin-right: 0; }
}

