/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

:root {
  --yellowcolor: #ffb800; /*Yellow ring*/
  --grey: #535353;
  --black: #222222;
  --white: #ffffff;
  --oswald: "Oswald", sans-serif;
  --roboto: "Roboto", sans-serif;
}

button,
select{
  font-family: var(--oswald) !important;
  font-optical-sizing: auto;
  min-height: 44px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
}
input{
    font-family: var(--roboto) !important;
    font-optical-sizing: auto;
    min-height: 44px !important;
    -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
}


#searchFilterForm h4{
  font-family: var(--oswald) !important;
  font-weight: 500 !important;
  font-size: 20px !important;
}
.search_orderby{
  background: var(--grey);
  float:right;
  width: 17%;
  border:none;
  outline: none;
}
.search_orderby:focus,
.search_orderby:active{
  outline:none;
  border:none;
}

.dd{
    width: 100%;
    min-height: 44px;
    position: relative;
}

.dd select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--black);
  color: white;
  padding: 10px;
  border: 2px solid var(--yellowcolor);
  border-radius: 0;
  width: 100%;
  min-width: 200px;
  font-weight: 500;
   font-family: var(--oswald) !important ;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-down-circle' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}


.dropdown-btn {
  width: 100%;
  min-height: 44px;
  padding: 14px 20px;
  background: var(--black);
  color: white;
  cursor: pointer;
  border: 2px solid var(--yellowcolor);
  font-size: 15px;
  font-weight: 500;
}

.dropdown-btn:hover {
  background: #2a2a2a;
}

.search-btn {
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  min-height: 44px !important;
  line-height: normal !important;
  padding: 0 !important;
  border-color: var(--yellowcolor) !important;
  background-color: var(--black) !important;
  font-family: var(--oswald) !important;
}

.filter_checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  height: 20px;
}

.filter_checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--yellowcolor);
  border-radius: 50%;
  box-sizing: border-box;
  transition: background 0.3s ease;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter_checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.filter_checkbox .label-text {
  font-size: 14px;
  font-weight: 400;
  margin-left: 30px;
}

.filter_checkbox input:checked ~ .label-text {
  font-weight: bold;
  color: var(--yellowcolor);
}

.search_thumbnails {
  position: relative;
  width: 100%;
  height: auto;
  min-width: 215px;
  min-height: 215px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.search_thumbnails::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
}

.search_thumbnails .search_text {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 100;
}
.search_thumbnails a {
  text-decoration: none !important;
  color: #fff;
}

.search_thumbnails a:hover,
.search_thumbnails a:focus,
.search_thumbnails a:active {
  color: var(--yellowcolor);
}

.search_thumbnails > .search_text > .location {
  font-weight: 400;
  font-size: 13px;
}
.search_thumbnails > .search_text > h3 {
  font-size: 20px;
  font-weight: 500;
}
.search_thumbnails > .search_text > h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.pagination > .page-numbers {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--grey);
    border: 2px solid var(--black);
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-right: 8px;
    font-family: var(--oswald);
    font-weight: 500;
}

.pagination > .page-numbers.current{
  background: var(--yellowcolor);
}

.pagination > .next,
.pagination > .prev{
  width: auto !important;
  padding:0 15px;
}