:root {
  --primary: #00b4ff !important;
  --gradient: linear-gradient(to right, var(--content), #1f2b38) !important;
  --bg: #1f2b38 !important;
  --secondary: #131a22 !important;
  --content: #131a22 !important;
  --good: #15c65c !important;
  --warning: #edab01 !important;
  --bad: red !important;
}

#layout-content {
  min-height: 100vh;
}

* {
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-padding: 90px;
  scroll-behavior: smooth;
}

.des {
  font-size: 14px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-bad,
.btn-warning,
.btn-good,
.btn-prim {
  display: inline;
  border-radius: 10px;
  text-align: center;
}

.btn-bad {
  background: var(--bad);
}

.btn-warning {
  background: var(--waring);
}

.btn-good {
  background: var(--good);
}

.btn-prim {
  background: var(--primary);
}

.btn-content {
  background: var(--content);
}

.prim {
  color: var(--primary);
}

.bad {
  color: var(--bad);
}

.warning {
  color: var(--waring);
}

.good {
  color: var(--good);
}

a {
  color: var(--content);
  text-decoration: none;
  outline: none;
}

.btn-border-0 {
  border-radius: 0px !important;
}

.btn-border {
  border-radius: 20px;
}

.btn {
  transition: all 200ms ease-in-out;
  position: relative;
}

#categorysBox .box {
  transition: all 200ms ease-in-out;
  background: #fff;
  border: 0 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.055);
}

#categorysBox .box:hover {
  background: #1f2b38;
  cursor: pointer;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.219);
  border: 1px solid var(--primary);
}


#bannerBox img {
  height: 400px;
  object-fit: cover;
}

#search input:not(.bordered) {
  border: 0;
  background-color: none;
  color: var(--content);
}

#search input:focus,
#search input:hover,
#search input:active,
#search input:active:focus-visible {
  outline: none;
  background-color: none;
  color: var(--content);
}

#search button.submit {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 0;
  outline: none;
  transition: all 200ms ease-in-out;
}

#search button.submit:hover {
  transform: scale(1.05);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

#search .nav-pills .nav-link {
  color: var(--content) !important;
  opacity: .5;
}

#search .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: none !important;
  color: var(--primary) !important;
  opacity: 1;
}

div.owl-nav {
  display: inline-block;
  font-size: 35px;
  transition: 0.3s;
  background: none !important;
  outline: none !important;
}

.imagestyle {
  width: 100%;
  height: 250px;
}

.main.image {
  width: 100%;
  height: 400px;
}

.main.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-gallery div.owl-nav {
  display: block;
  opacity: 0;
}

.owl-gallery:hover div.owl-nav {
  opacity: 1;
}

.owl-gallery .item img {
  height: 100px;
  object-fit: cover;
}

.owl-ads .owl-prev,
.owl-ads .owl-next {
  opacity: 0;
}

.owl-ads:hover .owl-prev,
.owl-ads:hover .owl-next {
  opacity: 1;
}

@media (min-width: 1138px) {

  .owl-prev, .owl-next {
    position: absolute !important;
    top: 0;
    height: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    outline: none !important;
    transition: all 200ms ease-in-out !important;
  }

  .owl-events .owl-prev {
    left: -35px;
  }

  .owl-events .owl-next {
    right: -35px;
  }

  .owl-prev {
    left: 5px;
  }

  .owl-next {
    right: 5px;
  }

  .owl-events .owl-next i,
  .owl-events .owl-prev i {
    color: var(--content);
    opacity: 1;
  }

  .owl-prev i, .owl-next i {
    transition: all 200ms ease-in-out;
    color: #fff;
    background: none !important;
    opacity: .5;
    transform: scale(0.8);
  }

  .owl-prev:hover i, .owl-next:hover i {
    background-color: none;
    background: none !important;
    opacity: 1;
    transform: scale(1);
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    transition: all 200ms ease-in-out;
    margin: 0 !important;
    background: none !important;
  }

}


@media (max-width: 1137px) {
  .owl-prev, .owl-next {
    display: none !important;
  }
}

.btn.effect {
  transition: all 200ms ease-in-out;
  box-shadow: 0 0 0 0.25rem transparent;
}

.btn.effect:hover {
  background: #0092d1;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.moreBox .more {
  position: absolute;
  top: 60px;
  right: -40px;
  box-shadow: 0 0 10px rgb(0 0 0 / 21%);
  transition: all 200ms ease-in-out;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  z-index: 5;
  width: 300px;
}

.moreBox:hover .more {
  opacity: 1;
  max-height: 200px;
  overflow-y: scroll;
}

.moreBox:hover .more::-webkit-scrollbar {
  width: 5px;
}

.moreBox:hover .more::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

.memberBox .members {
  position: absolute;
  top: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.205);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  z-index: 5;
  width: 300px;
}

.memberBox:hover .members {
  opacity: 1;
  max-height: 1000px;
  overflow: auto;
}

.myinput {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  width: 50px;
  text-align: center;
}

.number span {
  cursor: pointer;
}

.minus, .plus {
  width: 20px;
  height: 20px;
}

.number input {
  height: 34px;
  width: 100px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  vertical-align: middle;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.owl-places .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  border-radius: 20px;
}

.owl-places .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 200ms ease-in-out;
  border-radius: 20px;
}

.owl-places .image:hover img {
  transform: scale(1.05);
}

#mainEvents img {
  border-radius: 15px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.greenBox {
  font-size: 10px;
  padding: 5px 10px;
  font-weight: bold;
}

.property span,
.greenBox {
  border-radius: 15px;
  background-color: #91ff7f;
  color: rgba(0, 0, 0, 0.700);
}

#hotels img {
  border-radius: 15px 0 0 15px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

#moreSearch .form-control {
  border: none;
  border-radius: 15px;
  background: #f9f9f9;
}

#moreSearch .accordion button {
  border: 0;
  margin: 0;
}

#moreSearch .accordion .accordion-item {
  border: 0;
  margin: 0;
}

#moreSearch .accordion-collapse {
  box-shadow: 0 0 10px #00000029;
  margin-bottom: 10px;
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

#moreSearch .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.sticky {
  position: sticky;
  top: 0;
}

#restarant img {
  border-radius: 15px 15px 0 0 !important;
  height: 200px;
  object-fit: cover;
}

#restarant .property,
.adbox .property {
  position: absolute;
  bottom: 0px;
  left: 10px;
}

#restarant .name,
#events .name,
#freetime .name {
  height: max-content;
  min-height: 60px;
}

#freetime img {
  border-radius: 15px 15px 0 0 !important;
  height: 180px;
  object-fit: cover;
}

#events .image {
  border-radius: 15px 0 0 15px !important;
  height: 230px;
}

#events img {
  border-radius: 15px 0 0 15px !important;
  height: 100%;
  max-height: 230px;
  width: 100%;
  object-fit: cover;
}

#event img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width:990px) {
  #event img {
    height: 200px;
  }
}

.modal-content {
  border-radius: 15px !important;
  border: 0 !important;
  padding: 10px;
}

#elfelejtett .modal-content {
  height: 510px;
}

.calendar-search td {
  padding: 7px;
  border-radius: 50%;
  text-align: center;
}

.calendar-search td.active {
  background: var(--primary);
  color: white;
}

.calendar-search td.subActive {
  background: #00b3ff79;
  color: white;
}

a:not(.btn) {
  transition: all 200ms ease-in-out;
}

a:not(.btn):hover {
  color: var(--primary) !important;
}

#v-pills-tab .nav-link.active {
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
}

#v-pills-tab .nav-link {
  border-radius: 15px;
  color: var(--content);
}

.ad label {
  padding: 1rem 1.75rem;
}

.imageGallery .viewImg {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.imageGallery .imgcontainer_multi img {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  border: 1px solid #ccc;
  margin-bottom: 7px;
}

.imageGallery .imgcontainer_multi .multimage {
  position: relative;
}

.imageGallery .imgcontainer_multi .multimage button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  color: #f00;
  box-shadow: 0 0 10px #00000059;
  border-radius: 50%;
}

.form-switch .form-check-input {
  margin-left: 0;
}

.removeButton {
  position: absolute;
  top: 5px;
  right: 9px;
  font-size: 20px;
}

.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}

.offcanvas-start {
  width: 330px;
}

.gallery .cell,
.imageGallery .cell {
  height: 200px !important;
  border-radius: 15px;
}

.gallery .cell img,
.imageGallery .cell img {
  height: 100% !important;
  border-radius: 15px;
}

.roomPath {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 10;
}

.selectRoom {
  background-color: var(--good);
}

.pagination li {
  margin: 0 2px;
}

.pagination a:not(.arrow),
.pagination span:not(.arrow) {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.pagination a.arrow,
.pagination span.arrow {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.pagination li a,
.pagination li span {
  font-size: 14px;
}

.pagination li.active {
  background-color: var(--primary);
  border-radius: 50%;
}

.pagination li.active a {
  color: white;
}

.pagination li span.disabled {
  opacity: 0;
}

.owl-places img {
  cursor: pointer;
}

.thisToday {
  background-color: #eee;
  color: var(--primary);
}

.mvh-100 {
  min-height: 100vh;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  z-index: 10;
  position: absolute;
  background-color: #fff;
  opacity: 0;
  width: 75%;
  left: 0;
}

input:required+label::after {
  content: " *";
  color: red;
}

#date_start,
#date_end {
  background-color: #fff;
}

.roomGalleryImages {
  display: none;
}

p.description,
.description p {
  white-space: pre-line;
}

.upper {
  background-color: #fff !important;
  border: 0 !important;
  box-shadow: 0 0 10px rgb(0 0 0 / 6%);
}

.featured {
  position: absolute;
  top: 10px;
  right: 10px;

}

.type {
  position: absolute;
  top: 10px;
  left: 10px;
}

.big.form-check-input[type=radio] {
  width: 25px;
  height: 25px;
}

#blog a {
  color: var(--primary);
}

#blog a:hover {
  background-color: #0092d1;
  color: #fff !important;
}

.rev_box input+label .rev_input {
  display: none;
}

.searchBox {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  width: 100%;
  height: 40px;
  padding-left: 30px;
}

.searchIcon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.searchResult {
  position: absolute;
  z-index: 9999999;
  top: 40px;
  left: 0;
  background-color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  max-height: 200px;
  overflow-y: scroll;
  width: 100%;
  flex-direction: column;
  display: none;
}

.searchResultItem {
  padding: 5px;
}

.search:hover .searchResult {
  display: flex !important;
}

.discount-box {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: var(--primary);
  font-weight: bold;
  padding: 5px 15px;
  color: white;
  border-radius: 10px;
}

.rev_box input:checked+label .rev_input {
  display: block;
}

.hotel-iframe {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  border-radius: 15px;
}

.yt-btn {
  position: absolute;
  background-color: #00000040;
  left: 3px;
  top: 0;
  width: 96% !important;
}

.yt-btn i {
  position: relative;
  z-index: 2;
}

.yt-btn::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 1;
  background-color: #fff;
}

.freeBox {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
}

.freeText {
  position: absolute;
  right: 12px;
  top: 12px;
  background: var(--good);
  color: white;
  padding: 5px 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 12px;
}