.ui-slider-handle {
    content: "";
    display: block;
    position: absolute;
    height: 11px;
    width: 11px;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    /*margin: -13px 0 0 -7px;*/
    background: none;
    background: #fff;
    border-radius: 50%;
}

.range.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content {
    height: 1px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    position: relative;
    z-index: 1;
    top: 0;
    margin-right: 5px;
    margin-left: 5px;
}

.catalog-item .callback__close {display: none}
.btn__back{display: none}
    .catalog-item .btn__back {display: block}

.js-sidebarform [data-form-callback] {margin-top: 100px;}    
.callback__form-phone {
    position: relative;
}
.callback__form-phone:before {
    content: "";
    display: inline;
    width: 20px;
    height: 20px;
    background: url(../img/phone_blue.svg) 25% center no-repeat;
    -webkit-background-size: 15px auto;
    background-size: 15px auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -70px;
}



.layer {
	/* background: rgba(0, 0, 0, .2); */
	width: 100%;
	height: 100%;
	position: fixed;
	top: 50%;
	left: 0;
    	transform: translate(0%, -34%);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s linear, visibility 1s linear, z-index 1s linear;
  }
  
  .layer.is-open {
	z-index: 999;
	opacity: 1;
	visibility: visible;
  }
  
  .layer.is-open .modal{
	opacity: 1;
	visibility: visible;
  }
  
  .modal__button-wrap {
	position: absolute;
	right: 10px;
	top: 10px;
	display: inline-flex;
  }
  
  .close-button {
	position: relative;
	width: 30px;
	height: 30px;
	background: #0f2f5e;
	border-radius: 50%;
	padding: 0;
	border: transparent;
	cursor: pointer;
  }
  
  .close-button span {
	width: 20px;
	height: 2px;
	background: #fff;
	display: inline-block;
	position: absolute;
	left: calc(50% - 10px);
	top: 50%;
	border-radius: 20px;
  }
  
  .close-button span:nth-child(1) {
	transform: rotate(45deg) translate(-1px, -1px);
  }
  
  .close-button span:nth-child(2) {
	transform: rotate(-45deg) translate(1px, -1px);
  }
  
  

.modal {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	opacity: 0;
	visibility: hidden;
	transition:  visibility .7s linear, opacity .7s linear;
  }
  
  
  .modal__inner {
	/* margin-top: 125px;
	margin-bottom: 125px; */

	position: relative;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
    color: #0f2f5e;
	box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 13px;
	display: block;
	padding: 20px;
	height: auto;
  }
  
  .modal__content {
	padding-bottom: 5px;
	line-height: 1.4;
	font-family: Arial, sans-serif;
	text-align: left;
  }
  .modal__content .btn {
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	display: inline-block;
	padding: 5px 10px;
	border-radius: 30px;
	border: 1px solid #000;
	font-weight: bold;
  }
  
  .modal__button-area {
	max-width: 843px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
	padding-top: 10px;
  }
  
  .modal__content
  .button {
	background: orange;
	border-radius: 12px;
	box-shadow: 2px 4px 6px 3px rgba(0, 0, 0, .24);
	border: 1px solid #0f2f5e;
	font-size: 16px;
	line-height: 1.6;
	display: block;
	padding: 12px 20px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	margin: 0;
  }
  
  