@-webkit-keyframes loader {
	0%, 10%, 100% {
		width: 80px;
		height: 80px;
	}

	65% {
		width: 150px;
		height: 150px;
	}
}

@keyframes loader {
	0%, 10%, 100% {
		width: 80px;
		height: 80px;
	}

	65% {
		width: 150px;
		height: 150px;
	}
}

@-webkit-keyframes loaderBlock {
	0%, 30% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	55% {
		background-color: #1873c2db;
	}

	100% {
		-webkit-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
}

@keyframes loaderBlock {
	0%, 30% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	55% {
		background-color: #1873c2db;
	}

	100% {
		-webkit-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
}

@-webkit-keyframes loaderBlockInverse {
	0%, 20% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	55% {
		background-color: #1873c2db;
	}

	100% {
		-webkit-transform: rotate(-90deg);
		        transform: rotate(-90deg);
	}
}

@keyframes loaderBlockInverse {
	0%, 20% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	55% {
		background-color: #1873c2db;
	}

	100% {
		-webkit-transform: rotate(-90deg);
		        transform: rotate(-90deg);
	}
}

.loader {
    display: none;
	position: absolute;
	bottom: 10%;
	left: 50%;
	width: 80px;
	height: 80px;
	-webkit-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
	        transform: translate(-50%, 0) rotate(45deg) translate3d(0, 0, 0);
}

.loader span {
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
    background-color: #1873C2;
	-webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
	        animation: loaderBlock 1.2s infinite ease-in-out both;
}

.loader span:nth-child(1) {
	top: 0;
	left: 0;
}

.loader span:nth-child(2) {
	top: 0;
	right: 0;
	-webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
	        animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(3) {
	bottom: 0;
	left: 0;
	-webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
	        animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.loader span:nth-child(4) {
	bottom: 0;
	right: 0;
}
.property-list {
    position: relative;
}
.loader.active {
    display: block;
    opacity: 0.8;
    -webkit-animation: loader 1.2s infinite ease-in-out;
    animation: loader 1.2s infinite ease-in-out;
}
.loader.active.top {
	bottom: auto;
	top: 10%;
}

.property-list.loading::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #ffffff;
    opacity: 0.8;
    top: 0;
    left: 0;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


.ajs-success {
	background-color: #1873C2 !important;
}




.toggle-button-cover
{
    position: relative;
    box-sizing: border-box;
}

.button-cover
{
	border-radius: 4px;
	display: flex;
}


.knobs {
	position: relative;
    left: 0;
    height: 25px;
    transform: translateY(-129%);
}
.layer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button
{
    position: relative;
    top: 50%;
    width: 50px;
    height: 26px;
    margin: 0 auto;
    overflow: hidden;
}

.button.r, .button.r .layer
{
    border-radius: 100px;
}

.button.b2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: #ffffff;
    transition: 0.3s ease all;
    z-index: 1;
}

#button-3 .knobs:before
{
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #03A9F4;
    border-radius: 50%;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active + .knobs:before
{
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active + .knobs:before
{
    margin-left: -26px;
}

#button-3 .checkbox:checked + .knobs:before
{
    content: '';
    left: 26px;
    background-color: #03A9F4;
}

#button-3 .checkbox:checked ~ .layer
{
    background-color: #ffffff;
}

.toggle-pr {
	margin: 0 10px;
	overflow: hidden;
}


.b-lots .links .gallery-link-item .link.active {
    background-color: #1873C2;
    color: #FFFFFF;
}

.b-lots .links .gallery-link-item .link.active svg path {
    fill: #FFFFFF;
}

.lot-toggle-elements {
    position: relative;
}

.btn-present--mini {
    position: absolute !important;
    height: 45px !important;
    font-size: 20px !important;
    line-height: 2.2 !important;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    max-width: 270px;
    color: #ffffff !important;
    background-color: #1873C2 !important;
    border: 1px solid transparent !important;
}

.b-lots .info .feature .item+.item.double-row {
    display: block !important;
}
.b-lots .info .feature .item+.item.double-row > * {
    display: inline;
}

@media ( max-width: 568px ) {
    .btn-present--mini {
        height: 30px !important;
        font-size: 14px !important;
        line-height: 1.2;
        max-width: 170px;
        bottom: 20px;
    }
}


.crazy-select__visible span{
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    text-overflow: ellipsis;
}


.box-btns {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 7.5px;
}

.box-btns--fixed {
    position: fixed;
    z-index: 1;
    bottom: 10px;
    width: 100%;
    left: 0;
}

.box-btns__item {
    flex: 0 0 calc( 100vw / 4 - 20px );
    max-width: calc( 100vw / 4 - 20px );
    height: calc( 100vw / 4 - 20px );
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    background-color: #0FAF32;
    margin: 0 10px;
}

.box-btns__item:first-of-type {
    margin-left: auto;
}
.box-btns__item.whatsapp a {
    display: block;
    background-image: url('../img/icon-whatsapp.svg');
    background-position: center center;
    background-size: 35px 35px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .box-btns {
        visibility: visible;
        opacity: 1;
    }
}