/*
	Theme Name: Doctor
	Theme URI: http://themewisdom.com/demo/wpm/doctor
	Description: Doctor - Premium Medical & Health WP Theme
	Author: PremiumLayers
	Author URI: http://premiumlayers.net/
	Version: 1.3.2
	Tags: threaded-comments, theme-options, sticky-post, full-width-template, flexible-header, featured-images, custom-menu, custom-header, custom-colors, custom-background
	Text Domain: doctor
	License: GNU General Public License
	License URI: license.txt
*/

/* ----------
	[Table of Content]
		## Global
			- WP Common Settings
			- Padding/Margin
			- Section Padding
			- OW pull-left/pull-right
			- Fonts Settings
			
		## Site Header
		
		## SlidePanel
		
		## Navigation Menu
			- Nav Header
			- Nav Items	
			
		## Responsive
			- min-width: 1200
			- min-width: 992
			- Min Width : 992 & Max Width 1200
			- max-width: 991
			- max-width: 767
---------- */

/* ## Global */
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #777;
	line-height: 28px;
	/* overflow-x: hidden; */
}
img {
    max-width: 100%;
	height: auto;
}
a {
    outline: 0 !important;
}

h1,h2,h3,h4,h5,h6,p,a,li,span {
	word-wrap: break-word;
}

/* - WP Common Settings */
h4 {
	font-size: 18px;
	line-height: 26px;
}
h5 {
	font-size: 16px;
	line-height: 23px;
}
h6 {
	font-size: 14px;
	line-height: 20px;
}
address,ol,ul,li,dd,dt {
	line-height: 26px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
   opacity: 1;
}

article[class*="type-"].no-post-thumbnail .entry-content ul li a,
.entry-content dd a ,
.entry-content table a  {
	color: #000;
	text-decoration: none;
	font-weight: 400;
}
.container {
    max-width: 100%;
}
.fixedlayout.container {
	margin: 0 auto;
}

/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding{
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

/* - Section Padding */
.section-padding {
	padding-top: 75px;
	padding-bottom: 75px;
}
.padding-10 {
	padding-top: 5px;
	padding-bottom: 5px;
}
.padding-20 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-30 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.padding-40 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-50 {
	padding-top: 25px;
	padding-bottom: 25px;
}
.padding-60 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-70 {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-80 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-90 {
	padding-top: 45px;
	padding-bottom: 45px;
}
.padding-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.vertical_middle {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.nav_absolute {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
}
.align_left {
	text-align: left;
}
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}

/* - OW pull-left/pull-right */
.ow-pull-left  {
	float: left;
}
.ow-pull-right  {
	float: right;
}

/* - Fonts Settings */
/* - Lato Heavy */
@font-face {
    font-family: 'Lato-Heavy';
    src: url('fonts/Lato-Heavy-webfont.eot');
    src: url('fonts/Lato-Heavy-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Lato-Heavy-webfont.woff2') format('woff2'),
         url('fonts/Lato-Heavy-webfont.woff') format('woff'),
         url('fonts/Lato-Heavy-webfont.ttf') format('truetype'),
         url('fonts/Lato-Heavy-webfont.svg#Lato-Heavy') format('svg');
    font-weight: normal;
    font-style: normal;
}

.main-container {
	width: 1920px;
	max-width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

/* ## Site Header */

/* - Search */
.search-box {
	background-color: #303030;
	padding: 10px;
	position: absolute;
	right: 15px;
	top: 100%;
	width: 260px;
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.4s ease-in-out 0s;
	z-index: 101;
}
.search-box.active {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	visibility: visible;
}
.search-box form {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	display: block;
}
.search-box form input {
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	color: #ccc;
	font-size: 14px;
	font-style: italic;
	height: auto;
}
.search-box form input:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	border-color: #fff;
}
.search-box span {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
}
.search-box span i {
	font-size: 15px;
	color: #f97b25;
	float: right;
	margin: 5px;
	height: auto;
	width: auto;
	line-height: normal;
	vertical-align: middle;
}

/* ## SlidePanel */
#slidepanel { 
	display: block; 
}
#closeit,
#toggle,
#slideit {
	display: none;
}

/* ## Navigation Menu */
.ownavigation {
	background-color: #f1f1f1;
	border: none;
	border-radius: 0;
	min-height: 1px;
	margin-bottom: 0;
}

/* - Nav Header */
.navbar-brand {
	height: auto;
	padding: 0;
}
.navbar > .container .navbar-brand, 
.navbar > .container-fluid .navbar-brand {
	margin-left: 0;
}

/* - Nav Items */
.ownavigation .navbar-nav li  a {
	color: #222;
	font-family: 'Open-sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.56px;
	background-color: transparent;
	word-wrap: break-word;
	white-space: normal;
}
.ownavigation .navbar-nav > .active > a, 
.ownavigation .navbar-nav > .active > a:focus, 
.ownavigation .navbar-nav > .active > a:hover,
.ownavigation .navbar-nav > li:hover > a,
.ownavigation .navbar-nav > li a:hover,
.ownavigation .navbar-nav > li a:focus {
	background-color: transparent;
}

/**************STYLE******************/
.textwidget.widget-text {
    width: 100%;
}
.poshuk-content-block-left,
.hotprice-block-left {
    padding-right: 50px !important;
}
#menu-primary-menu i {
	/* display: none !important; */
}
.fa-users,
.fa-briefcase,
.fa-asterisk {
	display: none !important;
}

#itTourWidget .fd-nav-mobile, #itTourWidgetPopup .fd-nav-mobile {
	z-index: 14 !important;
}


.home-block-tours a {
    color: #ffffff !important;
}

.home-block-country .section-header-box {
    padding-top: 45px;
}
.home-block-mp .medical-services {
    margin-bottom: 13px;
}
.tour-poshuk-block a {
	color: #ffffff;
}

#nav_menu-3 ul li > a,
#nav_menu-2 ul li > a {
    margin-bottom: 15px;
}

.tour-poshuk-block a:focus, .tour-poshuk-block a:hover {
    color: #ffffff;
}

.home-block-mp .col-md-7.col-sm-12.col-xs-12 a {
	text-align: center;
}
.esg-grid a:hover {
    color: #ff7f50;
 }

/* a:hover { */
    /* color: #ff7f50; */
/* } */

/* .show-all { */
	/* display: flex; */
	/* justify-content: center; */
/* } */

.show-all > a {
    border: 1px solid #ff7f50;
    background-color: #ffffff;
    color: #ff7f50;
    display: inline-block;
    max-width: 290px;
    white-space: normal;
    word-wrap: break-word;
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    /* padding: 12px 60px; */
	padding: 12px 25px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.show-all a:hover {
    background-color: #ff7f50;
    color: #fff;
}

.home-block-partners .show-all > a:before {
    right: 100%;
    margin-right: 12px;
}
.home-block-partners .show-all > a:after {
    left: 100%;
    margin-left: 12px;
}

.home-block-partners .show-all {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 15px;
}

.show-all > a:before, .show-all > a:after {
    content: "";
    position: absolute;
    bottom: 25px;
    width: 1170px;
    height: 1px;
    background-color: #ff7f50;
}


.page-id-17 .team-section {
    padding-top: 0px;
    padding-bottom: 45px;
}
.breadcrumb {
    display: none !important;
}
.single .entry-categories {
    display: none !important;
}
/* .services-section .service-content p, */
/* p { */
	/* font-family: 'Roboto Mono', sans-serif !important; */
/* } */

.page-id-131 .page_spacing {
    margin-top: 80px;
    margin-bottom: 40px;
}
.hotprice-block-left,
.hotprice-block-left.touri-in-block-left {
	margin-bottom: 34px;
}

.page-id-23 .page_spacing {
    margin-top: 63px;
    margin-bottom: 80px;
}

.page-id-11 .about-section {
    padding-top: 64px;
}

.page-id-11 .clients {
    padding-bottom: 27px;
}

.page-id-21 main#main {
    margin-bottom: 45px;
}

.single main#main {
    margin-bottom: 50px;
}

/*****************************/

#nav_menu-3 h3.widget-title,
#nav_menu-2 h3.widget-title,
.widget-popular-country h3.widget-title {
    border-color: transparent;
    color: #fff;
    background-color: #ff7f50;
    border: 1px solid #e5e5e5;
    letter-spacing: 0.35px;
    font-size: 21px;
    border-radius: 0;
    text-align: center;
    /* margin: 0; */
    padding: 18px 55px;
}
.widget ul.menu li > a {
    font-size: 18px !important;
}

.page-id-671 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-669 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-667 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-665 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-663 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-673 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-582 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-580 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image,
.page-id-568 img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    display: none;
}

.page-id-131 article img {
    width: 100%;
}
.touri-item-item {
	padding: 0 25px !important;
}

/************WIDGET country************/
.country-block-widget-text h5:hover {
  transition: 0.5s;
  color: #ff7f50;
}
.country-block-widget-text span {
  text-transform: uppercase;
  color: #ff7f50;
}

.country-widget-text {
  font-size: 22px;
  margin: 0 !important;
}
.country-widget-text:hover {
	color: #ff7f50 !important;
}

.country-block-widget-text a:hover {
	background-color: initial !important;
	transition: 0.5s;
  	color: #ff7f50;
}
/* .country-widget-text a:hover {
	background-color: initial !important;
	transition: 0.5s;
  	color: #f2682a;
} */
.country-block-widget-image {
    height: 90px;
    width: 90px;
    margin-right: 10px;
}
.country-block-widget-image img {
  object-fit: cover;
  height: 100%;
}
.country-block-widget-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(93% - 90px);
}

.country-block-widget {
    display: flex;
    justify-content: space-between;
	flex-direction: row-reverse;
    margin-bottom: 20px;
}
.country-block-widget-image img {
	margin-bottom: 0px !important;
    margin-top: 0px !important;
}
.country-block-widget-image{
	border-right: 5px solid #ff7f50;
}

button.navbar-toggle.collapsed:before {
    content: "МЕНЮ";
	position: absolute;
    left: -60px;
    top: 2px;
    font-size: initial;
}
#nav_menu-3 .menu-poslugy-container,
#nav_menu-2 .menu-toury-container {
	padding-left: 15px !important;
}

.header_s a.phone-call {
    margin-top: 66px;
}
.page-id-6 textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    min-height: 42px !important;
	height: 85px !important;
}
.page-id-6 .home-block-country .section-header-box {
    background-color: #f1f1f1 !important;
}

.page-id-6 .home-block-country .section-header > h3 {
    border-color: #e5e5e5 !important;
}
.page-id-6 .section-header > h3:before,
.page-id-6 .section-header > h3:after {
	background-color: #e5e5e5 !important;
}
.home-block-mp a.learn-more {
    width: calc(38%);
}

.page-id-17 .fd_price-main.ss-container {
    height: 337px !important;
}

body::before {
    background-image: url(../../uploads/2019/06/Fon-stranyczы-min.jpg);
    background-repeat: no-repeat;
    /* background-color: #939aa6; */
    background-position: top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.boxed-container {
    max-width: 1470px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

.load-complete .ball-clip-rotate > div {
    border-color: #FF7F50 #FF7F50 transparent;
    background-color: #FF7F50;
}

span.learn-btn {
    padding: 31px 25px !important;
    background-size: inherit !important;
}

a.fd-nav_item.ng-binding.ng-scope.active {
    margin-top: 1px !important;
}


/************STYLE END****************/


/*----------------------------------------------------
	## Responsive
------------------------------------------------------*/

/* - min-width: 1200 */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

/* - min-width: 992 */
@media (min-width: 992px) {
	.desktop-hide {
		display: none;
	}
	
	/* ## Navigation Menu */
	.nav_trans {
		background: transparent;
	}

	/* - Nav Switch */
	.ownavigation .ddl-switch {
		display: none !important;
	}
	
	/* - Nav Items */
	.ownavigation .navbar-nav > li {
		margin: 0 10px;
	}
	.ownavigation .navbar-nav > li:first-child {
		margin-left: 0;
	}
	.ownavigation .navbar-nav > li > a {
		margin-bottom: 45px;
		margin-top: 45px;
		padding: 5px 10px;
		position: relative;
	}
	.ownavigation .navbar-nav > .active > a, 
	.ownavigation .navbar-nav > .active > a:focus, 
	.ownavigation .navbar-nav > .active > a:hover,
	.ownavigation .navbar-nav > li:hover > a,
	.ownavigation .navbar-nav > li a:hover {
		background-color: transparent;
		color: #00bdd3;
	}
	.ownavigation .navbar-nav > li > a i { 
		font-family: "FontAwesome";
		font-style: normal;
	}
	
	/* - Nav Dropdown */
	.ownavigation .navbar-collapse > ul > li > .dropdown-menu {
		top: 100%;
		left: 0;
	}
	.ownavigation ul li > .dropdown-menu {
		background-color: #00d2eb;
		border: none;
		left: 100%;
		border-radius: 0;
		opacity: 0;
		top: 0;
		display: block;
		padding: 0;
		min-width: 218px;
		max-width: 218px;
		visibility: hidden;
		transition: all 0.17s ease-in-out;
		-moz-transition: all 0.17s ease-in-out;
		-webkit-transition: all 0.17s ease-in-out;
		-o-transition: all 0.17s ease-in-out;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-o-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		-o-transform-origin: 0 0;
		transform-origin: 0 0;
		-webkit-transform: rotateX(-90deg);
		-moz-transform: rotateX(-90deg);
		-ms-transform: rotateX(-90deg);
		-o-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
		-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
		-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
		-mos-transition: -mos-transform 0.4s, opacity 0.1s 0.3s;
		-o-transition: -o-transform 0.4s, opacity 0.1s 0.3s;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a {
		color: #fff;
		padding: 8px 18px;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a:hover {
		color: #333;
	}
	.ownavigation .navbar-nav li.dropdown:hover > .dropdown-menu {
		visibility: visible;
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
		-moz-transition: -moz-transform 0.4s, opacity 0.1s;
		-mos-transition: -mos-transform 0.4s, opacity 0.1s;
		-o-transition: -o-transform 0.4s, opacity 0.1s;
		transition: transform 0.4s, opacity 0.1s;
		-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
		-moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
	}
	.ownavigation ul > li > .dropdown-menu {
		left: 0; 
	}
	.ownavigation .navbar-collapse > ul > li:last-child > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) > .dropdown-menu {
		right: 0; 
	}
	.ownavigation ul > li > .dropdown-menu,
	.ownavigation ul > li .dropdown-menu ul,
	.ownavigation ul > li .dropdown-menu ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul ul	{
		right: auto;
	}
	.ownavigation ul > li .dropdown-menu ul,
	.ownavigation ul > li .dropdown-menu ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul ul {
		left: 100%;
	}
	.ownavigation ul > li .dropdown-menu ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul {
		right: 100%;
	}
	.ownavigation ul > li .dropdown-menu ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul {
		left: auto;
	}
}

/* - Min Width : 992 & Max Width 1200 */
@media only screen and (min-width: 992px) and (max-width: 1200px) {	
	.ownavigation .navbar-nav > li {
		margin-left: 5px;
		margin-right: 5px;
	}
}

@media (max-width: 1199px) {
	body .home-block-hotprice-container-left .wpb_raw_code.wpb_content_element.wpb_raw_html.vc_custom_1560090237286 {
		padding-right: 0 !important;
	}
}


@media (max-width: 1024px) {
	.hotprice-block-left,
	.hotprice-block-right,
	.poshuk-content-block-left,
	.poshuk-content-block-right {
		width: 100% !important;
	}
	.poshuk-content-block-left,
	.hotprice-block-left {
		padding-right: 0px !important;
	}
}

/* - max-width: 991 */
@media (max-width: 991px) {
	/* - SlidePanel */
	#slidepanel { 
		display: none;
		border-bottom: 1px solid #fff;
	}
	#slideit,
	#toggle {
		display: block;
		position: relative;
		z-index: 1;
	}
	#loginpanel {
		position: absolute;
		right: 110px;
		text-align: center;
		top: 14px;
	}	
	#slideit,
	#closeit {
		color: #00d2eb;
		font-size: 25px;
		position: relative;
		right: -50px;
		top: 3px;
	}
	#slideit:hover,
	#closeit:hover {
		color: #4c4c4c;
	}
	
	.mobile-hide {
		display: none;
	}

	/* ## Navigation Menu */
	/* - Nav Main */
	.ownavigation {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* - Nav Header */
	.ownavigation .navbar-header .navbar-brand {
		padding-left: 0;
		margin-left: 0;
	}	
	
	/* - Nav Items */
	.ownavigation .navbar-nav {
		border-top: 1px solid #4c4c4c;
		width: 100%;
		margin: 0;
		padding-top: 15px;
	}
	.ownavigation .navbar-nav > li {
		min-height: 0;
		float: none;
		clear: both;
	}
	.ownavigation .navbar-nav > li > a {
		padding: 8px 0;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}	
	.ownavigation .navbar-nav > li.active a {
		color: #00d2eb;
	}
	.ownavigation .navbar-nav > li.active > a:hover,
	.ownavigation .navbar-nav  li  a:hover {
		color: #00d2eb;
	}
	
	/* - Nav Toggle */
	.ownavigation .navbar-header {
		float: none;
	}
	.ownavigation .navbar-toggle {
		display: block;
		background-color: #00d2eb;
		border-radius: 0;
		margin: 40px 0 40px;
		padding: 6px 5px;
	}
	.ownavigation .navbar-toggle .icon-bar { 
		background-color: #fff; 
	}	
	.ownavigation .navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}
	.ownavigation .navbar-collapse.collapse { 
		display: none !important; 
	}
	
	.ownavigation .collapse.in{ 
		display:block !important; 
		overflow-Y: auto !important;
	}	
	
	/* - Nav Switch */
	.ownavigation .ddl-switch {
		background-color: #00d2eb;
		color: #fff;
		cursor: pointer;
		font-size: 18px;
		padding: 2px 6px;
		position: absolute;
		right: 0;
		top: 7px;
		z-index: 100;
	}
	.ownavigation .ddl-active > .ddl-switch:before {
		content: "\f106";
	}

	/* - Nav Dropdown */
	.ownavigation .dropdown-menu {
		background-color: transparent;
		border: 0 none;
		margin-top: 0;
		padding-left: 5px;
		padding-bottom: 0;
		padding-top: 0;
		position: relative;
		width: 100%;
		box-shadow: none;
		float: left;
	}	
	.ownavigation .has_menu_icon .dropdown-menu {
		padding-left: 10px;
	}
	.ownavigation .dropdown-menu li {
		display: inline-block;
		width: 100%;
	}
	.ownavigation .navbar-nav > li:last-of-type {
		margin-bottom: 15px;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a {
		color: #232323;
		padding-left: 0;
		padding-right: 0;
		padding-top: 6px;
		padding-bottom: 6px;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a:hover {
		color: #00d2eb;
	}
}

/* - max-width: 767 */
@media (max-width: 767px) {
	/* - Nav Toggle */
	.ownavigation .navbar-toggle {
		right: 0;
	}
	#slideit,
	#closeit {
		right: -65px;
	}
	.hotprice-block-left,
	.hotprice-block-right {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media (max-width: 768px) {
	.hotprice-block-left,
	.hotprice-block-right {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}


/*****************VITRINY**********************/
body #itTourWidget .fd-nights {
	z-index: 12 !important;
}

body .itt_hs_name {
    display: none !important;
}

div#itt-hike-photo-showcase {
    margin: 0 auto !important;
}

#ittHS .itt_hs_name {
	display: none !important;
}
#itTourWidget input {
	background-color: #ffffff !important;
}
.fd_price_sm {
	width: 100% !important;
}

html body #isolate  .it_gradient_right {
	float:none!important;
	width: inherit!important;
}
html body #isolate .ittour_order_block .ittour_order_block_customer_info .ittour_order_grey_form .ittour_order_grey_form_center .ittour_order_grey_form_center_right ul li textarea {
    width: 260px!important;
}
#isolated tr td {
    border: none;
}
#package_order_form_buy_all > div.itt_form_date_blcok > div.itt_row.itt_mtv_top_20 > div:nth-child(4) > dl > dt:nth-child(2) {
    width: 100%;
}
#isolate > div.itt_main_block.tour_order.boxy-content > div.ittour_order_block > div > div.ittour_order_block_title_box.itt_order_block_title_box_bg > div.itt_order_block_title_box_center_corner > div > h2 {
 line-height:15px!important
}
span.fl.number_stars {
    line-height: 15px!important;
}


div#itt-hike-photo-showcase.itt-hike-photo-showcase-gallery a.itt-hike-photo-showcase-btn-prev, 
div#itt-hike-photo-showcase.itt-hike-photo-showcase-gallery a.itt-hike-photo-showcase-btn-next {
    z-index: 9 !important;
}

 div#ittourshowcase_hike__table_header {
    padding-left:  1px!important;
}

div#ittourshowcase_hike__showcase_center_box {
    padding-left: 1px!important;
}

table#isolated td {
	background: transparent !important;
}
table#isolated tr:first-child td {
    box-shadow: none !important;
}

div.fd_price-item_country,
div.fd_price-item_val {
    font-size: 17px !important;
}
#ittHSinfo svg {
    vertical-align: unset;
}
.fd_price_sm {
    width: 100% !important;
}
div#itTourWidget .fd {
    min-width: 280px !important;
}
#ittHS .itt_hs_name,
.nicescroll-rails,
html body #showcase_hike_showcase_module .it_maxi_box .it_title {
    display: none !important;
}

div#showcase_hike_showcase_module img {
	display: inline !important;
}
.jspPane {
    left: 0 !important;
}

#itTourWidget .fd-tickets .fd-select_wrap ul li {
    background-image: none;
}
div#showcase_hottour_v2_showcase_module svg {
    vertical-align: unset !important;
}
@media (max-width: 1010px) {
	table#isolated {
	    left: 0 !important;
	}
}
@media (max-width: 1200px) {
	div#showcase_hike_photo_showcase_module,
	div#showcase_hike_showcase_module {
		overflow-x: auto;
	}
}

@media only screen and (min-width: 320px) and (max-width: 980px){
	table#isolated {
		left: initial !important;
	}
	.scrollling {
		overflow-x: auto;
	} 
	div#showcase_hike_showcase_module {
		overflow-x: auto;
	}
	div#showcase_module {
		overflow-x: auto;
	}
	div#showcase_hike_photo_showcase_module {
		overflow-x: auto;
	}
	.jspPane {
		left: 0 !important;
	}
}
/* #showcase_hike_showcase_module #ittourshowcase_hike__table_header td { */
    /* word-wrap: inherit !important; */
    /* width: auto !important; */
/* } */
/* #showcase_hike_showcase_module #ittourshowcase_hike__showcase_center_box td { */
    /* width: initial !important; */
/* } */
/* html body #showcase_hike_showcase_module * .it_col_22 { */
    /* width: 33% !important; */
/* } */

div#detail {
    width: 100% !important;
    z-index: 11 !important;
    position: absolute !important;
}
body #itTourWidget .fd-nav-mobile{min-width: 260px !important;}

div#itt-hike-photo-showcase {
    margin: 0 auto !important;
}
html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
    overflow-y: scroll !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    overflow-y: hidden !important;
}
html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
    padding-right: 0 !important;
}

/* module v.3 custom color */
/* body #itTourWidget .fd-b, #itTourWidgetPopup .fd-b {background: #6CAFE0 !important;} */
/* body #itTourWidget .fd-nav_item.active, #itTourWidgetPopup .fd-nav_item.active {background: #6CAFE0 !important;} */
/* body #itTourWidget .fd-nav-mobile .fd-select, #itTourWidgetPopup .fd-nav-mobile .fd-select {background: #6CAFE0 !important;} */
/* body #itTourWidget .fd-nav-mobile, #itTourWidgetPopup .fd-nav-mobile {background: #6CAFE0 !important;} */
body #itTourWidget .fd-find, #itTourWidgetPopup .fd-find {background-color: #ff7f50!important;}
body #itTourWidget .fd-find:hover, #itTourWidgetPopup .fd-find:hover {background-color: #e07047!important;}
/* body #itTourWidget .fd-nav_item, body #itTourWidgetPopup .fd-nav_item {background-color: rgba(108, 175, 224, 0.8) !important;} */
/* body #itTourWidget .fd-nav_item:hover, body #itTourWidgetPopup .fd-nav_item:hover {background-color: rgba(108, 175, 224, 1) !important;} */
/* body #itTourWidget .fd-nav_item.active:hover, body #itTourWidgetPopup .fd-nav_item.active:hover {color:#fff; background-color: #6CAFE0 !important;} */
/* module v.3 custom color end */

/* HotPrice custom color */
/* body #ittHS .itt_bg_color {background: #6CAFE0;} */
/* body #ittHS .itt_border_color {border-left: 3px solid #6CAFE0;border-bottom: 3px solid #6CAFE0;} */
/* body .nicescrollht-cursors {background: #6CAFE0;} */
body #ittHS .itt_hs_price_wrap {
    background: #ff7f50 !important;
}
/* HotPrice custom color end*/

/* MC v.2 custom color */
/* #itTourPriceWidget .fd_price-header, #itTourPriceWidgetPopup .fd_price-header {background-color: #00C3ED!important;} */
#itTourPriceWidget .fd_price-item_info, #itTourPriceWidgetPopup .fd_price-item_info {background-color: #ff7f50!important;}
/* MC v.2 custom color end */


/***********VITRINY END*********/

.page-id-560 .itt_hs_main_wrap.itt_border_color {
    height: 844px !important;
}
.page-id-560 .itt_hs_content_wrap.itt_hs_custom_scroll {
    height: 838px !important;
}

.touri-in-block-right .fd_price-main.ss-container {
    height: 1110px !important;
}

.hotprice-block-right .itt_hs_content_wrap.itt_hs_custom_scroll {
    height: 1150px !important;
}
.hotprice-block-right .itt_hs_main_wrap.itt_border_color {
    height: 1150px !important;
}
.uslugi-block-right .fd_price-main.ss-container {
    height: 1310px;
}
.page-id-21 .fd_price-main.ss-container {
    height: 1978px;
}
.single .fd_price-main.ss-container {
    height: 1098px;
}

.single img {
    width: 100%;
}

.home-block-mp .fa-calendar-plus-o:before {
    content: url("../../uploads/2019/06/krayina.png");
	position: relative;
    top: 7px;
}

.home-block-mp .fa-ambulance:before {
    content: url("../../uploads/2019/06/period.png");
	position: relative;
    top: 7px;
}

.home-block-mp .fa-thumbs-up:before {
    content: url("../../uploads/2019/06/bron.png");
	position: relative;
    top: 7px;
}

.header_default .ownavigation.navbar-fixed-top.nav_absolute {
    z-index: 1341;
}


.widget-area {
    border: none !important;
}

.page-id-23 footer#footer-main {
    display: none;
}


@media (max-width: 1024px){
	.contact-info .contact-information p {
		font-size: 15px;
	}
	
	.page-id-21 .content-area.content-left.col-md-8.col-sm-8,
	.page-id-21 .widget-area.col-md-4.col-sm-4.col-xs-12.sidebar-right.sidebar-1 {
		float: none;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.single .content-area.content-left.col-md-8.col-sm-8.blog-listing,
	.single .widget-area.col-md-4.col-sm-4.col-xs-12.sidebar-right.sidebar-1{
		float: none;
		width: 100%;
	}
	
	.single .widget-area.col-md-4.col-sm-4.col-xs-12.sidebar-right.sidebar-1,
	.page-id-21 .widget-area.col-md-4.col-sm-4.col-xs-12.sidebar-right.sidebar-1 {
		border: none;
	}
	.single .content-area.content-left.col-md-8.col-sm-8.blog-listing article img,
	.page-id-21 .content-area.content-left.col-md-8.col-sm-8 article img {
		width: 100%;
	}
	.page-id-11 .about-section .col-md-8.col-sm-7.col-xs-12 {
		width: 100%;
	}
	.page-id-11 .about-section .col-md-4.col-sm-5.col-xs-12.about-img {
		width: 100%;
		text-align: center;
		order: -1;
		
	}
	.page-id-11 .about-section .row {
		display: flex;
		flex-wrap: wrap;
	}
}



@media (max-width: 991px){
	.home-block-mp {
		margin-bottom: 60px;
	}
	.footer-main .contact-info, .footer-main .contact-form, .footer-main .col-sm-6 {
		width: 100% !important;
		max-width: 350px !important;
		float: none !important;
		margin: 0 auto;
		
	}
	.footer-main {
		padding-top: 60px;
	}
	.footer-main .contact-info {
		margin-bottom: 60px;
	}
	.page-id-6 .home-block-mp .col-md-7.col-sm-12.col-xs-12 {
		text-align: center;
	}
}

@media (max-width: 767px){
	.page-id-17 .poshuk-content-block,
	.page-id-17 .poshuk-mp-block {
		padding-left: 15px;
		padding-right: 15px;
	}
	.page-id-607 #main .container .no-padding {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media (max-width: 375px){
	.home-block-mp .col-md-5.col-sm-12.col-xs-12.services-img {
		padding: 0 !important;
	}
}


/*Медиазапросы масштабирования*/
@media (min-width: 960px) and (max-width: 980px) { /* 200% */
	html {
		overflow: auto;
	}
	div#popmake-1246 { 
		max-height: 400px;
		overflow: auto;
	}
	div#popmake-1246 {
		top: 60px !important;
	}
	html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
		overflow-y: scroll !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
		overflow-y: hidden !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
		padding-right: 0 !important;
	}
	div#popmake-1385 {
		width: 40%;
		left: 50%;
		transform: translateX(-50%);
	}
	.about-img {
		display: none !important;
	}
}

@media (min-width: 1050px) and (max-width: 1100px) { /* 175% */
	div#popmake-1246 { 
		max-height: 450px;
		overflow: auto;
	}
	div#popmake-1246 {
		top: 80px !important;
	}
	html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
		overflow-y: scroll !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
		overflow-y: hidden !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
		padding-right: 0 !important;
	}
	div#pum-1246 input, div#pum-1246 textarea {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	div#pum-1246 input[type="submit"] {
		padding: 5px !important;
	}
	div#pum-1246 select.wpcf7-form-control.wpcf7-select {
		height: 36px !important;
		padding: 8px 1.4em !important;
	}
	.footer-main .widget p {
		font-size: 15px;
	}
	.page-id-6 .services-section .service-content a.learn-more {
		padding: 12px 2px !important;
	}
}

@media (min-width: 1250px) and (max-width: 1300px) { /* 150% */
	div#popmake-1246 { 
		max-height: 450px;
		overflow: auto;
	}
	html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
		overflow-y: scroll !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
		overflow-y: hidden !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
		padding-right: 0 !important;
	}
	body .home-touri-block {
		width: 3630px !important;
	}
	div#pum-1246 input, div#pum-1246 textarea {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
	}
	div#pum-1246 input[type="submit"] {
		padding: 5px !important;
	}
	div#pum-1246 select.wpcf7-form-control.wpcf7-select {
		height: 36px !important;
		padding: 8px 1.4em !important;
	}	
}

@media (min-width: 1500px) and (max-width: 1550px) { /* 125% */
	/*div#popmake-1246 {
		max-height: 450px;
		overflow: auto;
	}*/
	html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
		overflow-y: scroll !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
		overflow-y: hidden !important;
	}
	html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
		padding-right: 0 !important;
	}
}

@media (min-width: 2350px) and (max-width: 2400px) { /* -80% */

}

@media (min-width: 2500px) and (max-width: 2600px) { /* -75% */
	
}

@media (min-width: 2800px) and (max-width: 2900px) { /* -67% */
	
}

@media (min-width: 3750px) and (max-width: 3850px) { /* -50% */
	
}

/******************************/

.logo-block a, .logo-block a img {max-height: 115px!important; margin-top:30px;}
.logo-block a {margin-top: 0px!important; margin-bottom: 0px!important;}

@media (max-width: 991px) {
	body > div.boxed-container > header > nav > div > div.navbar-header > a > img {max-height: 78px; margin-top: 7px;}
	button.navbar-toggle.collapsed::before {display:none!important;}
	.header_default.header_s .ownavigation .navbar-toggle {margin: 25px 0!important;}
	.footer-main .contact-form {padding-top: 50px!important;}
} 

.footer-main .contact-form {padding-top: 150px;}

html .page-id-732 .page-banner.container-fluid.no-left-padding.no-right-padding.custombg_overlay {background-image: url(https://alphatravel.od.ua/wp-content/uploads/2020/03/kruyz-min-3.jpg)!important;}

iframe#awebframe {
	height:300px;
}

@media (max-width: 1199px) {
	.home.page-id-6 .wpb_raw_code.wpb_content_element.wpb_raw_html.vc_custom_1582627748261 {padding-right: 0px!important;}
}

html .page-id-601 .page-banner.container-fluid.no-left-padding.no-right-padding.custombg_overlay {background-image: url(https://alphatravel.od.ua/wp-content/uploads/2020/03/aviakvitki_background.jpg)!important;}

html body #ittourshowcase_hike__showcase_show_countries > div > a {color:#000000!important;}

#ittourshowcase_hike__inner_results td.it_col_22.td.it_name_tour > a {color: #0e7d89!important;}

div#team-section {display:none!important;}

#post-11 > div > div:nth-child(1) {margin-bottom: 40px;}

a[href*="spikmi"] {display: none!important;}

@media (min-width: 1199px) {
	html body #ittHS > div.ittHS_wrap.itt_bg_color > div.itt_hs_main_wrap.itt_border_color {height: 695px!important;}
	html body #ittHS > div.ittHS_wrap.itt_bg_color > div.itt_hs_main_wrap.itt_border_color > div.itt_hs_content_wrap_abs > div.itt_hs_content_wrap.itt_hs_custom_scroll {height: 695px!important;}
	body .appoinment-form {height: 750px;}
	#wpcf7-f359-p6-o1 > form > div:nth-child(8) > span > textarea {height: 220px!important;}
}

#post-6 div.vc_row.wpb_row.vc_row-fluid.home-block-mp div.col-md-7.col-sm-12.col-xs-12 div.medical-services {
	margin-bottom:0px;
}
