@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300&subset=cyrillic-ext');
body, h1,h2,h3,h4,h5,h6,p,div,a,span,table,li,input,form{
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
}
#share-buttons img {
max-width: 34px;
margin-left:5px;
}
.btn-custom-subscribe {
width: 100%;
}
#subscription-form-container-168 {
width: 100%;
padding: 20px;
background: #666;
}
#subscribe-form-168 .form-group {
display:block;
}
#nav_menu_list ul li a {
padding: 35px 9px 33px;
}
.vfx-product-inner-item {
background: #fff;
padding: 0px 0;
}
h1,h2,h3,h4,h5,h6{
font-weight: 400;
font-family: 'Roboto Condensed', sans-serif !important;
}
.embed-map iframe{
width: 100%;
height: 200px;
}
@media (min-width: 992px){
.feature-box-text h3 {
height: 40px;
}
.postcontent{
width: 800px;
}
.sidebar {
width: 300px;
}
.recent-listing-box-item {
min-height: 214px;
}
}
.detail-gallery .detail-gallery-list-item a {
height: auto;
}
.panel-default>.panel-heading {
color: #fff;
background-color: #FFC200;
border-color: #ddd;
border-bottom: none;
}
.panel {
border: 0px solid transparent;
}
.dlt-title-item img {
height: auto !important;
}
.dlt-title-item p {
margin-top: 25px;
color: #696969;
font-size: 16px;
font-weight: 300;
line-height: 28px;
letter-spacing: 0.5px;
font-family: 'Roboto Condensed', sans-serif;
}
.slt_block_bg {
background: #000000;
height: 200px;
}
.header_slt_block .user_logo_pic {
height: auto;
}
.slt_item_head {
bottom: 70px;
position: absolute;
width: 100%;
}
.dlt-title-item ol, .dlt-title-item ul {
margin-left:30px;
font-size: 16px;
line-height: 28px;
}
#vfx-product-inner-item {
background: #F4F4F2;
padding: 0px 0;
}
.dlt-title-item ul li {
font-size: 16px;
font-weight: 300;
}
.dlt-title-item div {
color: #696969;
display: inline-block;
text-transform: none;
}
.recent-item-listing-heading h1 {
font-family: 'Roboto Condensed', sans-serif;
}
.recent-listing-box-item .recent-feature-item-rating {
position: absolute;
}
.listing-boxes-text a h3 {
/* font-family: 'Open Sans', sans-serif; */
font-family: 'Roboto Condensed', sans-serif;
color: #4a4a4a;
font-size: 22px;
font-weight: 700;
margin-top: 0;
margin-bottom: 7px;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img {
line-height: 1;
margin-top: -8px;
}
.carousel-inner {
top: -7px;
}
.carousel-caption {
background: rgba(0,0,0,.6);
}
#feature-item_listing_block {
background: #F5F5F5;
padding: 80px 0px 60px 0;
}
.feature-item-container-box {
border: 1px solid #FDBA1A;
box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62,57,107,0.06);
}
.feature-title-item img {
height: auto;
}
.news-thumb .image {
max-width: 120px;
}
.news-thumb .imgpad {
line-height: 0;
float: left;
max-width: 129px;
position: relative;
}
.news-thumb>a {
padding: 10px 0;
color: #000;
display: block;
}
.news-thumb .title {
font-weight: bold;
font-size: 16px;
line-height: 17px;
color: #3c414e;
}
.news-thumb .news-date{
display: block;
font-size: 12px;
color: #666;
font-weight: 500;
margin-top: 10px;
}
.news-thumb {
clear: both;
font-family: arial;
display: block;
margin-bottom: 10px;
color: #3c414e;
}
.news-thumb .hasg {
margin-left: 129px;
}
@media (max-width: 768px){
.feature-box-text h3 {
height: 40px;
line-height: 16px !important;
font-size: 15px;
}
#feature-item_listing_block {
background: #F5F5F5;
padding: 20px 0px 60px 0;
}
.feature-item-listing-heading {
margin-bottom: 15px;
}
}
strong * {
font-weight: bold;
}
.a-title {
font-weight: 700;
border-bottom: 2px solid #FDB805;
padding-bottom: 10px;
margin-top: 0px;
}
//customs
document.onclick = function(event) {
var el = event.target;
//alert(el.nodeName);
if (el.nodeName == "A" && el.classList.contains("call-now")) {
var num = el.getAttribute('href');
var referer = window.location.href;
var cta_id = el.getAttribute('data-cta-id');
//alert(num + " " + referer);
var request = new XMLHttpRequest();
request.open('GET', '//med.network.mn/api.php/cta/call?&url=' + num + '&cta_id=' + cta_id, true);
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
// Success!
var resp = request.responseText;
} else {
// We reached our target server, but it returned an error
}
};
request.onerror = function() {
// There was a connection error of some sort
};
request.send();
}
};
if ($("section#p").length > 0){
location.href='/home/cc';
}
function add_cart(product_id, quantity){
var xhr = new XMLHttpRequest();
xhr.open('POST', '/cart/add');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onload = function() {
if (xhr.status === 200 && xhr.responseText !== 'ok') {
//alert('added to cart');
}
else if (xhr.status !== 200) {
alert('Error');
}
};
xhr.send(encodeURI('product=' + product_id + '&quantity=' + quantity));
}
var div = document.createElement("div");
div.innerHTML = '';
document.getElementsByTagName('BODY')[0].appendChild(div);