/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .prn-loader,
.prn-loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.prn-loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #2A81B8;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rc-row-bow{
  display:flex;
  flex-wrap:wrap;
  width:100%;
  flex:1 0 100%;
}



#btnPrnLoadMore {
  /* margin-top:40px; */
  display: flex;
  align-items: center;
  justify-content: center;
}



/*ROT*/

.prn-filter-form .row,
.prn-filter-form.row{
  margin-left:-8px;
  margin-right:-8px;
}
.prn-filter-form [class*="col-"]{
  padding-left:8px;
  padding-right:8px;
}

.hide-labels label{
  visibility: hidden;
  position:absolute;
}
.hide-labels .rc-checkboxes label{
  visibility: visible;
  position:relative;
}
.rc-checkboxes label.rc-checkbox{
  margin-right:1rem;
}

.rc-checkboxes label.rc-checkbox>span:before {
  content: '\f111';
  font-family: 'Line Awesome Free';
  font-weight: 400;
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  /* height: 22px; */
  /* width: 22px; */
  /* border: 2px solid var(--text2); */
  /* border-radius: 4px; */
  /* background-color: var(--grey-lighest,white); */
  display: inline-block;
  /* top: 50%; */
  /* transform: translateY(50%); */
  vertical-align: top;
  margin-right: 6px;
  margin-left: 0px;
  margin-top: 1px;
  transition: color .3s;
}
.rc-checkboxes label.rc-checkbox>input[type="checkbox"]:checked~span:before {
  content: '\f058';
  color:var(--primary);
}
.rc-checkboxes label input[type="checkbox"]{
  display:none;
}
.rc-filters-inner{
  border-radius: 25px 25px 0 0;
}


.hide-labels .rc-filter-toggler{
  visibility:visible;
}
.prn-filter-form [class*='col-']>.btn,
.prn-filter-form [class*='col-']>.select{
  width:100%;
}
.prn-filter-form [class*='col-']>label,
.prn-filter-form [class*='col-']>input,
.prn-filter-form [class*='col-']>select{
  /* margin-left:8px; */
  max-width:calc(100% - 16px);
}
form .rc-form-col{
  min-height: var(--form-field-height);
  margin-bottom: 1rem;
}
form .wrapper-rc-filters-modal input[type="reset"]{
  outline: none;
  border: 2px solid var(--grey-lightest);
  background: var(--grey-lightest);
  color: var(--text2);
}
form.heading-label{
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.rc-results-count{
    font-size: 1.15rem;
    font-weight: 800;
}

.object-item.row{
  flex: 1 0 calc(100% + 30px);
}

.object-item figure.rot-thumbnail{
  width: 100%;
  height:0;
  padding-bottom:61%;
  position:relative;
}
.object-item .rot-thumbnail a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.object-item .rot-thumbnail img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(min-width:768px){
  .object-item figure.rot-thumbnail{
    width: 100%;
    height:100%;
    padding-bottom:0;
  }
  .object-item .rot-thumbnail a{
    position: relative;
  }
}

form.prn-filter-form:after {
  content: '';
  position: relative;
  height: 3px;
  background: var(--grey-light);
  bottom: 0;
  display: block;
  width: calc(100% - 16px);
  left: 8px;
}

/* form.prn-filter-form {
  --form-gutter:24px;
  display:flex;

  max-width: calc(100% + var(--form-gutter));
  width: calc(100% + var(--form-gutter));
  margin-left:calc(0px - var(--form-gutter) / 2);
  margin-right:calc(0px - var(--form-gutter) / 2);
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
form.prn-filter-form>div{
  flex: 0 0 calc(33.333% - var(--form-gutter));
  margin-bottom:20px;
  padding-left:calc(var(--form-gutter) / 2);
  padding-right:calc(var(--form-gutter) / 2);
} */