.notifications{
	position: fixed;
	right: 25px;
	background: #fff;
	padding: 14px;
	z-index: 9999;
	top: 110px;
	border-radius: 50%;
	color: #fff;
	background: #df0334;
	text-transform: uppercase;
	width: 60px;
	height: 60px;
}
.notifications a{
	text-decoration: none;
	color: #fff;
}
.notifications a:hover{
	color: #fff;
}
.notifications:hover .notifications-label{
	/*display: block;*/
	width: 130px;
	-webkit-transition: 0.4s;
	   -moz-transition: 0.4s;
		-ms-transition: 0.4s;
		 -o-transition: 0.4s;
			transition: 0.4s;
}
.notifications-count{
	font-size: 25px;
	display: block;
	color: #fff;
	position: relative;
	z-index: 1;
	top: -2px;
	text-align: center;
	background: #df0334;
}
.notifications-label{
	position: absolute;
	right: 33px;
	display: block;
	top: 14px;
	background: #df0334;
	padding: 10px;
	width: 0px;
	border-radius: 20px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	/* display: none; */
	white-space: nowrap;
}

.pulse {
  cursor: pointer;
  box-shadow: 0 0 0 rgba(223, 3, 52, 0.4);
  box-shadow: 0px 0px 0px 5px  rgba(223, 3, 52, 0.5);
  animation: pulse 1s infinite;
}
/*.pulse:hover,
.pixels-wrapper.active .pulse{
  animation: none;
  box-shadow: none;
}*/

@-webkit-keyframes pulse {
  0% {
	-webkit-box-shadow: 0 0 0 0 rgba(223, 3, 52, 0.5);
  }
  70% {
	  -webkit-box-shadow: 0 0 0 10px rgba(223, 3, 52, 0);
  }
  100% {
	  -webkit-box-shadow: 0 0 0 0 rgba(223, 3, 52, 0);
  }
}
@keyframes pulse {
  0% {
	-moz-box-shadow: 0 0 0 0 rgba(223, 3, 52, 0.5);
	box-shadow: 0 0 0 0 rgba(223, 3, 52, 0.5);
  }
  70% {
	  -moz-box-shadow: 0 0 0 10px rgba(223, 3, 52, 0);
	  box-shadow: 0 0 0 10px rgba(223, 3, 52, 0);
  }
  100% {
	  -moz-box-shadow: 0 0 0 0 rgba(223, 3, 52, 0);
	  box-shadow: 0 0 0 0 rgba(223, 3, 52, 0);
  }
}

.has-error .help-block{
	    font-size: 12px;
    color: #ff2222;
    font-weight: bold;
    position: absolute;
    bottom: -15px;
}

.form-feedback .form-group{
	position: relative;
}

.breadcrumbs.black li:last-child span {
    color: rgba(51,51,51,.5);
}
.pagination li a{
	display: block;
	height: 100%;
}

.pagination .next{
	margin-left: 30px;
}
.pagination .prev{
	margin-right: 30px;
}

.breadcrumbs a {
    font-size: 13px;
    font-family: 'Montserrat-Medium',sans-serif;
    color: #1496e2;
}

.breadcrumbs li:last-child span {
    color: rgba(255,255,255,.5);
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}

/* Styles for dialog window */
#small-dialog {
	background: white;
	padding: 20px 30px;
	text-align: left;
	max-width: 400px;
	margin: 40px auto;
	position: relative;
}


/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;



	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);

	opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	-o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
	transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;

	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	-o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;

	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}

#feedback-popup,
#feedback-popup-message {
	padding: 0;
}
#feedback-popup .oracle-form,
#feedback-popup-message .oracle-form{
	margin: 0;
}
.mfp-close-btn-in .mfp-close {
    color: #fff;
}
.create-want{
	position: relative;
    top: -230px;
    z-index: 9;
}
.isMobile{
	display: none;
}
.mobila-link{
	position: fixed;
    bottom: 0px;
    width: 100%;
    text-align: center;
    z-index: 9;
}
.mobila-link a{
	font-family: 'Montserrat-Regular',sans-serif;
display: inline-block;
    width: 50%;
    /* height: 30px; */
    text-align: center;
    background: #FFF;
    color: #000;
    padding: 20px;
    border: 1px solid #e0e6f9;
}

.home-bottom{
	display: none;
}
@media only screen and (max-width: 769px){
	/*.services-row .col-lg-4.col-12{
		margin-bottom: 30px;
	}*/
	.isMobile{
		display: block;
	}
	.notMobile{
		display: none;
	}
	.header-button{
		margin-top: 0px;
	}
	.home-top {
	    padding-top: 60px;
	    padding-bottom: 60px;
	}
	#discount,
	#call,
	.oracle-form,
	.seo-form,
	.want-form__promotion
	{
		display: none;
	}
	.mfp-content .oracle-form{
		display: block;
	}
	.section-top {
	    padding-top: 150px;
	    padding-bottom: 70px;
	}
	.promotion.section-top{
	    padding-top: 0px;
	}
	.social{
		padding-top: 0;
	    padding-bottom: 60px;
	}
	.social .create-info {
	    padding-top: 60px;
	}
	.portfolio-top .create-info{
		padding-top: 120px;
	}
	.apple-mockup>img{
		width: 330px;
	}
	.apple-mockup__item {
	    width: 308px;
	    height: 172px!important;
	    top: 12px;
	}
	section{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.cservice-item-list{
		margin: 0;
		display: block;
		width: 100%;
	}
	.create-want{
		position: static;
	}
	.oracle .apple-mockup{
		width: 330px;
	}
	.oracle .apple-mockup>img {
	    width: 425px;
	}
	.oracle .apple-mockup__item {
	   top: 11px;
	    height: 175px!important;
	    width: 305px;
	}
	.title {
	    padding-bottom: 20px;
	    text-align: center;
	}
	.seo-price__item.palex-border__white{
		    text-align: center;
	}
	.seo-price__row,
	.seo-steps__row{
		/*display: block;*/
		width: 100%;
		margin: 0;
	}
	.seo-price{
		padding-bottom: 90px;
	}
	.seo-steps__icon{
		left: 0;
	}
	.seo-steps__it{
		padding: 0;
		    margin-bottom: 40px;
	}
	.col-lg-4.col-12,
	.col-xl-3.col-12{
		padding: 0;
	}
	.reviews{
		padding-bottom: 100px;
    	margin: 0;
	}
	.just{
		display: none;
	}
	.ct-cause__paragraph p, .ct-step p{
		font-size: 15px;
	}
	.ct-example ul li {
	    margin-bottom: 15px;
	}
	.ct-cause{
		    padding-bottom: 75px;
	}
	.ct-example .h5{
		padding-bottom: 15px;
    	padding-left: 0;
	}
	.s-advantages__text p{
		font-size: 15px;
	}
	.location-items{
		flex-wrap: wrap;
	}
	.location-item{
		margin: 0 10px;
		margin-bottom: 30px;
	}
	.expect ul.star-list li {
	    color: #fff;
	    margin-bottom: 20px;
	}
	.expect .h4 {
	    margin-bottom: 30px;
	    font-size: 20px;
	}
	.portfolio-body .portfolio-top .create-info {
	    padding-top: 150px;
	}
	.contacts-right a{
		font-size: 18px;
	}
}

.field-feedbackform-accept,
.field-ff1,
.field-ff2,
.field-ff4,
.field-ff3,
.field-ff5,
.field-ff6,
.field-ff7,
.field-ff8,
.field-ff9,
.field-ff
{
	width: 100% !important;
}
.field-feedbackform-accept .control-label,
.field-ff1 .control-label,
.field-ff2 .control-label,
.field-ff4 .control-label,
.field-ff3 .control-label,
.field-ff5 .control-label,
.field-ff6 .control-label,
.field-ff7 .control-label,
.field-ff8 .control-label,
.field-ff9 .control-label,
.field-ff .control-label
{
	bottom: 0 !important;
}

.want-form{
	min-height: 560px;
}
body .button.hoverblue:hover{
    opacity: 1;
    background: #1496e2;
    transition: all 0.4s ease-in-out;
}
body .button.hoverblue:hover span{
    color: #FFF !important;
}

@media only screen and (max-width: 1440px){
	.steeps {
	     display: block;
	}
	body{
	    zoom: 90%;
	}
}

@media only screen and (max-width: 720px){
	.steeps {
	     display: none;
	}
	body{
	    zoom: 100%;
	}
}

#action{
	-webkit-box-shadow: 0px -5px 5px 0px rgba(218, 218, 218, 0.75);
-moz-box-shadow: 0px -5px 5px 0px rgba(218, 218, 218, 0.75);
box-shadow: 0px -5px 5px 0px rgba(218, 218, 218, 0.75);
}

.disbl{
	opacity: 0.4;
	position: relative;
	pointer-events: none;
}
.seo-fable__text{
	    height: 90px;
	overflow: hidden;
}
.full-page .seo-fable__text{
	    height: auto;
    overflow: visible;
}
.full-page .seo-fable__link{
	display: none;
}
.portfolio-image::before{
	opacity: 0;
}
/*.disbl:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFF;
}*/

.cservice-item__icon .hexagon.hexagon-big svg{
	    top: -8px;
    left: 0px;
}
