@charset "UTF-8";
/* Hide arrow buttons for number inputs in webkit browsers (Chrome, Safari) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrow buttons for Firefox */
input[type=number] {
  -moz-appearance: textfield; /* Prevents Firefox from showing the arrows */
}

body {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
}
body .page-content {
  max-width: 100%;
}
body #objektas-_s_search-form > div {
  display: flex;
  flex: 1 1 0;
  justify-content: space-between;
  flex-direction: column;
}
body .ntoForm ::placeholder {
  text-transform: uppercase;
}
body .ntoForm {
  color: grey;
}
body .ntoForm form {
  display: flex;
  flex: 1;
  flex-flow: row wrap;
  justify-content: space-between;
}
body .ntoForm .miestas,
body .ntoForm #rajonai {
  justify-content: flex-start;
}
body .ntoForm .navigation ul {
  padding: 0px;
  display: inline-flex;
}
body .ntoForm .col-sm-3:nth-child(4) {
  flex: 1 1 18%;
}
body .ntoForm .col-sm-3:nth-child(1) {
  flex: 1 1 10%;
}
body .ntoForm .col-sm-3:nth-child(2),
body .ntoForm .col-sm-3:nth-child(3) {
  flex: 1 1 20%;
}
body .ntoForm .col-sm-3 {
  padding-right: 0px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  align-content: center;
}
body .ntoForm .col-xs-12 {
  width: unset;
}
body .ntoForm .col-xs-2 {
  width: unset;
}
body .ntoForm {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0px 0px;
}
body .ntoForm label {
  font-weight: normal;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
body .ntoForm select {
  outline-style: none;
  text-align: center;
  text-indent: 5px hanging;
  text-align-last: center;
  flex: 1;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 24px;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/select.svg") no-repeat 100% 50%;
  border-color: grey;
}
body .ntoForm select[name=municipality_id],
body .ntoForm select[name=purpose] {
  color: grey;
  font-weight: normal;
  text-transform: uppercase;
}
body .ntoForm option {
  text-align: center;
}
body .ntoForm input {
  outline-style: none;
  border-radius: 4px;
  border: 1px solid rgb(128, 128, 128);
}
body .ntoForm select::-ms-expand {
  display: none;
  border: 1px solid rgb(128, 128, 128);
}
body .ntoForm h1 {
  font-size: 1em;
  font-weight: bold;
  margin: 0.5em 0;
}
body .ntoForm .col1,
body .ntoForm .col2,
body .ntoForm .col3 {
  float: left;
  margin: 0;
}
body .ntoForm .col1 .row,
body .ntoForm .col2 .row,
body .ntoForm .col3 .row {
  margin: 0.1em 0;
}
body .ntoForm .col1 {
  width: 25%;
}
body .ntoForm .col2,
body .ntoForm .col3 {
  width: 37.5%;
}
body .ntoForm .col2 input,
body .ntoForm .col3 input {
  width: 25%;
  text-align: center;
}
body .ntoForm .col2 label,
body .ntoForm .col3 label {
  display: block;
  float: left;
  width: 29%;
  text-align: right;
  margin-right: 1%;
  margin: auto;
}
body .ntoForm .w-inputs {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  padding: 5px 2px;
  align-items: stretch;
}
body .ntoForm .w-inputs .col-sm-4 {
  padding: 0 0 0 5px;
  flex: 1 1 0;
  text-align: right;
  position: unset;
  display: flex;
  justify-content: flex-end;
  white-space: nowrap;
}
body .ntoForm .w-inputs label {
  text-align: right;
  min-width: 65px;
}
body .ntoForm .w-inputs .short {
  flex: 1 1 0;
}
body .ntoForm .w-inputs .short input {
  min-width: 3em;
}
body .ntoForm .w-inputs input {
  width: 100%;
  text-overflow: ellipsis;
  text-align: center;
  padding: 0px;
  height: 24px;
}
body .ntoForm .w-inputs ::-webkit-input-placeholder {
  text-align: center;
}
body .ntoForm .w-inputs :-moz-placeholder {
  text-align: center;
}
body .ntoForm .buttons input {
  border: 1px solid #d7d7d7;
  background: #f1f1f1;
  color: #5a5a5a;
  border-radius: 4px;
  padding: 0 14px;
  height: 24px;
  max-width: 50%;
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  transition: all 0.2s ease;
}
body .ntoForm .buttons input:hover, body .ntoForm .buttons input:focus {
  border-color: #ed9106;
  color: #ed9106;
  background: #f7f2ec;
  outline: none;
}
body .ntoForm .buttons {
  justify-content: flex-end;
}
body .checkbox-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body .contact-me-form > input[type=submit].btn.btn-primary {
  border: 1px solid #d7d7d7;
  background: #f1f1f1;
  background-color: #f1f1f1;
  color: #5a5a5a;
  border-radius: 4px;
  padding: 0 14px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  transition: all 0.2s ease;
}
body .contact-me-form > input[type=submit].btn.btn-primary:hover, body .contact-me-form > input[type=submit].btn.btn-primary:focus {
  border-color: #ed9106;
  color: #ed9106;
  background: #f7f2ec;
  background-color: #f7f2ec;
  outline: none;
}
body .summary {
  margin-bottom: 1em;
}
body .pagination {
  overflow: hidden;
  float: right;
}
body .pagination ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
body .pagination ul li.selected button {
  font-weight: bold;
  color: #ffffff;
  background-color: grey;
  border-radius: 5px;
}
body .pagination ul li.hidden button {
  color: silver;
}
body .pagination ul li button {
  display: block;
  padding: 1px 5px;
}
body .pagination ul li button:hover {
  text-decoration: underline;
}
body .rajonas_checkbox {
  padding: 5px 10px;
  white-space: nowrap;
}
body .rajonas_checkbox input {
  margin: 0;
}
body .ntoObjektai thead {
  border: 1px solid #cdcdcd;
  background-color: #f9f9f9;
}
body .ntoObjektai thead td,
body .ntoObjektai thead th {
  font-weight: normal;
}
body .ntoObjektai .wrap {
  white-space: normal !important;
}
body .ntoObjektai .data {
  color: #808080;
  font-size: 0.8em;
}
body .ntoObjektai .items .objektas {
  clear: both;
  overflow: hidden;
  padding: 0.5em;
}
body .ntoObjektai .items .objektas.odd .adresas {
  background-color: #fff;
}
body .ntoObjektai .items .objektas.even {
  background-color: #f6f6f6;
}
body .ntoObjektai .items .objektas.even .adresas {
  background-color: #f6f6f6;
}
body .ntoObjektai .items .objektas.tipas1 .adresas, body .ntoObjektai .items .objektas.tipas3 .adresas {
  width: 29%;
}
body .ntoObjektai .items .objektas.tipas3 .paskirtis {
  width: 25%;
}
body .ntoObjektai .items .objektas .antraste {
  overflow: hidden;
  padding: 0.1em 0 1em;
  clear: both;
  font-weight: bold;
}
body .ntoObjektai .items .objektas .antraste div {
  float: left;
}
body .ntoObjektai .items .objektas .antraste .iliustracija {
  float: left;
  width: 15%;
  padding: 0;
}
body .ntoObjektai .items .objektas .iliustracija {
  width: 15%;
  float: left;
  padding: 0;
}
body .ntoObjektai .items .objektas .iliustracija p {
  margin: 0;
}
body .ntoObjektai .items .objektas .adresas {
  float: left;
}
body .ntoObjektai .items .objektas .kambariu_sk {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .bendras_plotas {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .sklypo_plotas {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .aukstai {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .metai {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .uzbaigtumas {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .paskirtis {
  float: left;
  text-align: center;
}
body .ntoObjektai .items .objektas .kaina {
  font-weight: bold;
  float: left;
  text-align: right;
  padding: 0;
}
body .ntoObjektai .items .objektas .kaina .anotherCurrency {
  color: #808080;
  font-weight: normal;
}
body .ntoObjektai .items .objektas .informacija {
  width: 85%;
  float: left;
  margin-top: 0.5em;
}
body .ntoObjektai .items .objektas .more {
  clear: both;
  text-align: right;
}
body .ntoObjektas #kaina {
  font-size: 2em;
}
body .ntoObjektas .descriptionShort .extras {
  border-top: 1px solid #000;
  margin-top: 1em;
  padding-top: 1em;
}
body .ntoObjektas .descriptionShort .text-justify {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row;
}
body .ntoObjektas .descriptionShort .text-justify span {
  background: rgba(105, 105, 105, 0.8);
  margin: 2px;
  padding: 2px 2px;
  color: white;
  border-radius: 5px;
}
body .ntoObjektas .descriptionShort li {
  display: flex;
  justify-content: space-between;
  padding: 10px 2px;
  align-items: center;
}
body .ntoObjektas .descriptionShort li:nth-child(odd) {
  background: rgb(249, 249, 249);
}
body .ntoObjektas .descriptionShort li .key {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body .ntoObjektas .descriptionShort li .value {
  text-align: right;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
body .ntoObjektas .summary {
  overflow: hidden;
  margin: 1em 0;
}
body .ntoObjektas .summary img {
  float: right;
}
body .ntoObjektas .summary ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body .ntoObjektas .summary ul li .key {
  color: #868686;
  margin-right: 0.5em;
}
body .ntoObjektas .summary ul li .value.id {
  font-weight: bold;
}
body .ntoObjektas .thumbnails {
  text-align: center;
  margin: 1em 0;
}
body .ntoObjektas .thumbnails img {
  margin: 0.2em 0.1em;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
  -khtml-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
}
body .ntoObjektas .photo {
  text-align: center;
}
body .ntoObjektas .photo img {
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -khtml-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
body .ntoObjektas .photo {
  flex: 1 1 80%;
}

.pagination {
  margin: 0;
}
.pagination a,
.pagination a:focus,
.pagination a:hover {
  color: grey;
}

.borderless td,
.borderless th {
  border: 0 none !important;
}

.carousel-control {
  color: #ed9106;
  opacity: 1;
}
.carousel-control.right, .carousel-control.left {
  background: transparent none;
}

.similar_objects {
  border-top: 1px solid black;
}
.similar_objects a {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.similar_objects {
  margin-top: 15px;
}
.similar_objects .item {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}
.similar_objects .item .photo {
  padding-bottom: 5px;
}
.similar_objects .item .info {
  text-align: center;
}

@media (max-width: 991px) {
  .similar_objects .item {
    flex-wrap: wrap;
  }
}
@media (max-width: 345px) {
  body #objektas-_s_search-form > div {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .ntoForm {
    border-bottom: solid 1px;
  }
  .ntoForm .min-side-padding {
    padding: 0;
    min-width: 50%;
  }
  .ntoForm .buttons input {
    border-color: #ed9106;
    color: #ed9106;
    background: #f7f2ec;
  }
  .contact-me-form > input[type=submit].btn.btn-primary {
    border-color: #ed9106;
    color: #ed9106;
    background: #f7f2ec;
    background-color: #f7f2ec;
  }
}
@media (max-width: 550px) {
  .ntoForm .min-side-padding {
    min-width: 50%;
  }
  .descriptionFull {
    padding-top: 1em;
  }
  .extras {
    padding-top: 1em;
  }
  .buttons {
    justify-content: flex-start !important;
  }
  .col-sm-4:first-child {
    padding-left: 0px !important;
    flex: 1.5 1 0 !important;
  }
  .rajonas_checkbox {
    flex: 0 1 100%;
  }
  .w-inputs:first-child {
    flex: 1 1 0;
  }
  .w-inputs {
    flex: 1;
  }
  .w-inputs label {
    text-align: left !important;
  }
  body #objektas-_s_search-form > div {
    flex-direction: row;
    flex: 1 1 auto;
    flex-wrap: wrap;
  }
  .Rtable-row {
    border-bottom: solid 1px;
    padding-bottom: 5px;
  }
  .Rtable-cell.foto {
    flex: 1 1 50%;
  }
  .ntoObjektai table,
  .ntoObjektai thead,
  .ntoObjektai tbody,
  .ntoObjektai th,
  .ntoObjektai td,
  .ntoObjektai tr {
    display: block;
  }
  .ntoObjektai thead tr {
    display: none;
  }
  .ntoObjektai tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(244, 120, 33, 0.9);
    padding: 0.5em 0;
  }
  .ntoObjektai td {
    width: 50%;
    flex-grow: 1;
    padding: 2px 5px !important;
  }
  .ntoObjektai td.text-center, .ntoObjektai td.text-right {
    text-align: left !important;
  }
  .ntoObjektai .kambariu_sk:after {
    content: " kamb.";
  }
  .ntoObjektai .aukstas:after {
    content: " aukštas";
  }
  .ntoObjektai .kaina:before {
    content: "Kaina: ";
  }
  .ntoObjektai .kaina {
    text-align: center;
  }
}
.key img {
  height: 30px;
  padding-right: 0.5em;
}

@media (min-width: 500px) {
  #rajonai_collapse {
    flex: 0 1 50%;
  }
}
@media (max-width: 767px) {
  .ntoForm .w-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .kaina {
    display: none;
  }
  .mobile-attr-icon {
    display: inline;
  }
  .mobile-attr-text {
    white-space: nowrap;
  }
  .bendrine {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .bendrine > * {
    flex: 0 0 auto;
    min-width: 0;
  }
  .bendrine > :first-child {
    flex: 0 0 65%;
  }
  .bendrine .text-center {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  #rajonai_collapse {
    width: 80%;
  }
  #rajonai_collapse .rajonas_checkbox {
    flex: 0 1 50%;
  }
}
@media (min-width: 992px) {
  #rajonai_collapse .rajonas_checkbox {
    flex: 0 1 20%;
  }
}
@media (min-width: 1200px) {
  #rajonai_collapse {
    max-width: 1000px;
  }
  #rajonai_collapse .rajonas_checkbox {
    flex: 0 1 20%;
  }
  .col-lg-9,
  .col-lg-3 {
    width: unset;
  }
  col-xs-12,
  col-md-6,
  col-lg-12,
  .col-md-6,
  .col-lg-9,
  .col-xs-12 {
    padding: 0px;
  }
  .ntoHeader {
    grid-column-start: 1;
    grid-column-end: 14;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .ntoGallery {
    grid-column-start: 1;
    grid-column-end: 11;
    grid-row-start: 2;
    grid-row-end: 3;
    padding: 0px;
  }
  .descriptionShort {
    grid-column-start: 11;
    grid-column-end: 14;
    grid-row-start: 2;
    grid-row-end: 4;
    padding: 0px;
  }
  .descriptionFull {
    grid-column-start: 1;
    grid-column-end: 11;
    grid-row-start: 3;
    grid-row-end: 5;
  }
  .similar_objects {
    width: 100%;
  }
  .ntoObjektas {
    display: grid;
    grid-template-columns: fit-content(100%) repeat(12, 1fr);
    gap: 20px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
  }
  .row {
    margin: 0px;
  }
}
.thumbnails {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.thumbnails a {
  display: none;
}

.rajonai_header {
  display: flex;
  justify-content: space-around;
}
.rajonai_header input {
  flex: 0.5 1 50%;
}

.invisible_rajonas {
  order: 1;
}
.invisible_rajonas input {
  display: none;
}
.invisible_rajonas {
  color: white;
}

li.page > button {
  cursor: pointer;
}

a {
  cursor: pointer;
}

/*# sourceMappingURL=nto.css.map */
