
@charset "utf-8";

html {
  color: #000;
  font-weight: normal;
  line-height: 1.3;
  text-decoration: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga";
  word-break: keep-all;
  vertical-align: bottom;
}

* {
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga";
  word-break: inherit;
  vertical-align: inherit;
  box-sizing: border-box;
}

a{color:inherit;}

hr{
  border:0;
}

table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--color-c1);
}

table td,
table th {
  vertical-align: middle;
  border: 1px solid var(--color-c1);
  padding:8px;
}

.transition,
.accordion,
.bw-selectmenu,
a,
button,
select,
textarea,
input,
label,
li,
label,
[onclick],
[href],
[for],
.ui-icon{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.transition-1s {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

img {
  text-indent: -9999px;
  max-width: 100%;
}

/* *:focus,
*:active {
  -webkit-box-shadow: none;
  box-shadow: none;
} */
a.loop-post:visited .title {
  color: var(--color-gr4);
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e92c";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color:var(--color-bg);
  color: var(--color-gr3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:not(.btn-checkbox) + label {
  position: relative;
  padding-left: 40px;
}

input[type="checkbox"]:checked + label:before {
  color: #fff;
  background-color: var(--color-c1);
}

.btn-checkbox{display:none!important;}
.btn-checkbox + label:before{display:none!important;}
.btn-checkbox[disabled] + label{opacity:.5;}
.btn-checkbox + label{color:var(--color-gr2);border:1px solid var(--color-b);padding-left:12px!important;padding-right:12px!important;}
.btn-checkbox:checked + label{background-color:var(--color-c2);color:var(--color-c1);border-color:var(--color-c1);}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  -webkit-box-shadow: inset 0 0px 0px 1px #d2d2d2;
  -moz-box-shadow: 0 0px 0px 1px inset #d2d2d2;
  box-shadow: 0 0px 0px 1px inset #d2d2d2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="radio"]:not(.btn-checkbox) + label {
  line-height: 25px;
  position: relative;
  padding-left: 36px;
}

input[type="radio"]:checked + label:before {
  color: #fff;
  -webkit-box-shadow: inset 0 0px 0px 6px #000;
  -moz-box-shadow: 0 0px 0px 6px inset #000;
  box-shadow: 0 0px 0px 6px inset #000;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.btn,
.btn-c > *,
.btn-lg,
.btn-lg-c > *,
.btn-md,
.btn-md-c > *,
.btn-sm,
.btn-sm-c > *,
.btn-xs,
.btn-xs-c > * {
  overflow: hidden;
  text-align: center;
  font-weight: 600;
  display:inline-block;
}

.btn,
.btn-c > *{
  line-height: 50px;
  height: 50px;
}

.input-wrap{
  position:relative;
  line-height:1;
  font-weight:500;
}

.input{
  width:100%;
  padding:24px 15px 10px 15px;
  background-color:var(--color-bg);
  border:1px solid var(--color-bg);
  border-radius:8px;
  font-size:13px;
  font-weight:400;
}

.input-md,
.input-md-c > * {
  width:100%;
  line-height: 50px;
  height: 50px;
  background:var(--color-bg);
  border-radius:10px;
}

.input-md:not([class*='p-']){
  padding:0 15px;
}

.input-wrap label, .input-wrap div{
  position:absolute;
  left:15px;
  top:10px;
  width:100%;
  font-size:10.5px;
  color:var(--color-gr3);
  pointer-events:none;
}

.input:focus, .input-md:focus{
  border-color:var(--color-gr3);
}

.input:focus + label, .input:focus + div{
  color:var(--color-c1);
}

.btn-lg,
.btn-lg-c > *,
.input-lg,
.input-lg-c > * {
  line-height: 60px;
  height: 60px;
}

.btn-md,
.btn-md-c > *{
  line-height: 40px;
  height: 40px;
}

.btn-sm,
.btn-sm-c > *,
.input-sm,
.input-sm-c > * {
  line-height: 32px;
  height: 32px;
}

.btn-xs,
.btn-xs-c > *,
.input-xs,
.input-xs-c > * {
  line-height: 25px;
  height: 25px;
}

.btn.b-1,
.btn-c.b-1-c > *,
.btn-c > .b-1,
.input.b-1,
.input-c.b-1-c > *,
.input-c > .b-1 {
  line-height: 48px;
}

.btn-lg.b-1,
.btn-lg-c.b-1-c > *,
.btn-lg-c > .b-1,
.input-lg.b-1,
.input-lg-c.b-1-c > *,
.input-lg-c > .b-1 {
  line-height: 58px;
}

.btn-md.b-1,
.btn-md-c.b-1-c > *,
.btn-md-c > .b-1,
.input-md.b-1,
.input-md-c.b-1-c > *,
.input-md-c > .b-1 {
  line-height: 38px;
}

.btn-sm.b-1,
.btn-sm-c.b-1-c > *,
.btn-sm-c > .b-1,
.input-sm.b-1,
.input-sm-c.b-1-c > *,
.input-sm-c > .b-1 {
  line-height: 30px;
}

.btn-xs.b-1,
.btn-xs-c.b-1-c > *,
.btn-xs-c > .b-1,
.input-xs.b-1,
.input-xs-c.b-1-c > *,
.input-xs-c > .b-1 {
  line-height: 23px;
}

.btn.b-2,
.btn-c.b-2-c > *,
.btn-c > .b-2,
.input.b-2,
.input-c.b-2-c > *,
.input-c > .b-2 {
  line-height: 46px;
}

.btn-lg.b-2,
.btn-lg-c.b-2-c > *,
.btn-lg-c > .b-2,
.input-lg.b-2,
.input-lg-c.b-2-c > *,
.input-lg-c > .b-2 {
  line-height: 56px;
}

.btn-md.b-2,
.btn-md-c.b-2-c > *,
.btn-md-c > .b-2,
.input-md.b-2,
.input-md-c.b-2-c > *,
.input-md-c > .b-2 {
  line-height: 36px;
}

.btn-sm.b-2,
.btn-sm-c.b-2-c > *,
.btn-sm-c > .b-2,
.input-sm.b-2,
.input-sm-c.b-2-c > *,
.input-sm-c > .b-2 {
  line-height: 28px;
}

.btn-xs.b-2,
.btn-xs-c.b-2-c > *,
.btn-xs-c > .b-2,
.input-xs.b-2,
.input-xs-c.b-2-c > *,
.input-xs-c > .b-2 {
  line-height: 21px;
}

textarea {
  overflow: hidden;
  overflow-y: auto;
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-gr5) 50%),
    linear-gradient(135deg, var(--color-gr5) 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(50%), calc(100% - 10px) calc(50%);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.swiper-slide {
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none
}

[view=auto] .swiper-slide{width:auto;}

.swiper-pagination-bullets {
  height: 20px;
  /* top: 0; */
  margin-top: 15px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  vertical-align: top;
  border-radius: 50%;
  border:1px solid currentColor;
}

.swiper-pagination-bullet-active {
  background: currentColor;
}

.swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform-origin: left top;
}

::-webkit-scrollbar-track {
  background-color: #fefefe;
}

::-webkit-scrollbar {
  width: 0px;
  background-color: #fefefe;
}

::-webkit-scrollbar-thumb {
  background-color: #ddd;
  width: 0px;
}

.scroll-y::-webkit-scrollbar-track {
  background-color: #fefefe;
}

.scroll-y::-webkit-scrollbar {
  width: 1px;
  background-color: #fefefe;
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: #fefefe;
  width: 1px;
}

.bw-content img{max-width:100%;margin-top:15px;}
.bw-content p, .note-editable p, .bw-content > div, .note-editable > div{
  margin-block-start: 10px;
  margin-block-end: 10px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.bw-content ul, .bw-content ol, .note-editable ul, .note-editable ol{padding-left:18px;}
.bw-content ul li, .bw-content ol li, .note-editable ul li, .note-editable ol li{margin-top:15px;}
.bw-content ol, .bw-content ol li, .note-editable ol, .note-editable ol li{list-style: decimal;padding-left:25px;}
.note-editable i, .bw-content i{font-style:oblique;}
.note-editable b, .bw-content b{font-weight:bold;}
.note-editable, .bw-content{word-break:break-all;}
.bw-content hr{background-color:var(--color-gr3);}

.bw-content h1{
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
}
.bw-content h2{
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
}
.bw-content h3{
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.bw-content h4{
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
}
.bw-content h5{
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}
.bw-content h6{
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
}
.bw-content img{
  margin-block-start: 10px;
  margin-block-end: 10px;
}

.alignnone {margin:auto;}

.bw-content table{height:auto!important;width:100%!important;}
.bw-content table th{font-weight:bold;}
.bw-content table td, .bw-content th{border:1px solid var(--color-c1);}
.bw-content table{border-top:3px solid var(--color-c1);border-bottom:3px solid var(--color-c1);}
.bw-content tr > *:first-child{border-left:0;}
.bw-content tr > *:last-child{border-right:0;}
.bw-content table th{padding:12px;}
.bw-content table td{padding:15px 12px;}

.swiper-container-horizontal {
  overflow: hidden;
}

.bw-address{width:480px!important;max-width:100%!important;background-color:#fff!important;border-radius:10px!important;overflow:hidden;}
.bw-address .address-wrapper{height: 466px;overflow-y: auto;}

.single-map{height:480px;}
.loop-map{height:360px;}

[data-action=aj_like].active, [data-action=aj_like].active [class*=icon]{
  color:var(--color-rd);
}

[data-action=aj_like][data-key=comment].active{
  color:var(--color-c1);
}

[data-action=aj_like].active[class*=icon]:before, [data-action=aj_like].active [class*=icon]:before{
  content: "\e98c";
}

.form-comment .btn-cancel{display:none!important;}
.list-comments .form-comment .btn-cancel{display:flex!important;}

.loop-alba:not(:nth-child(3n))::before{
  content:'';
  position:absolute;
  top:20px;
  right:0px;
  height:calc(100% - 40px);
  border-right:1px dotted var(--color-b);
}

.loop-alba:not(:nth-last-child(-n+3))::after{
  content:'';
  position:absolute;
  bottom:0;
  left:20px;
  width:calc(100% - 40px);
  border-bottom:1px dotted var(--color-b);
}

.loop-reply{
  padding-left:calc(10px + calc(10px * var(--depth)))!important;
}

.bw-new:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--color-c1);
    top: 0px;
    right: 0px;
    border-radius: 5px;
}

#swiper-subs{
  padding-bottom:6px;
  margin-bottom:60px;
}

#swiper-subs .swiper-slide{
  width:auto;
}

#swiper-subs .swiper-slide.bw-w120{
  width:120px;
}

#swiper-subs .swiper-slide a{
  text-align:Center;
  width:100%;
  padding:20px;
  border-radius:8px;
  border:1px solid var(--color-c3);
}
#swiper-subs .swiper-slide a.active{
  box-shadow: 4px 4px 2px var(--color-c2);
}

#swiper-subs.members .swiper-slide a{
  padding:0 20px;
  height:80px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#swiper-subs .sub-nav{
  height:calc(100% + 2px);
  padding:0!important;
  padding-left:5px!important;
  width:40px;
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
  background: -o-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
}

.bw-tabs > *:not(:first-child){
  display:none;
}

.bw-content ul{
  list-style: disc;
}

.bw-content li::marker{
  color:var(--color-c2);
}

iframe[src*='youtu']{
  width:100%;
}

@media screen and (max-width: 1200px) {
  .single-map{height:360px;}
  /* header.php */
}


@media screen and (max-width: 768px) {
  #bw-bottom{
    border-radius: 12px 12px 0 0;
    -webkit-box-shadow: 0 -1px 0 0 rgb(0 0 0 / 6%), 0 -3px 10px 0 rgb(0 0 0 / 8%);
    box-shadow: 0 -1px 0 0 rgb(0 0 0 / 6%), 0 -3px 10px 0 rgb(0 0 0 / 8%);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }

  #bw-bottom .bw-h56{padding:5px 0;font-size:10px;color:#4D3D3A;}
  #bw-bottom .bw-h56 img{margin-bottom:2px;}

  .bw-content table{display:block!important;white-space: nowrap;max-width:100%;overflow-x: auto!important;}
  .bw-content thead, .bw-content tbody, .bw-content tfoot{display:table!important;min-width:100%;}

  .swiper-pagination-bullets {
    height: 10px;
    /* top: 0; */
    margin-top: 10px;
    text-align: center;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  #swiper-subs{
    margin-bottom:34px;
  }

  #swiper-subs .swiper-slide{
    width:auto;
  }
  #swiper-subs a{
    padding:12px 20px;
  }

  table{display:block!important;white-space: nowrap;max-width:100%;overflow-x: auto!important;}
  table thead, table tbody, table tfoot{display:table!important;min-width:100%;}
}
