/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color: #f9f9f9 ; /* #E4E4E4;*/
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:18px;
    height:100%;
    margin:0;
    padding:0;
    text-transform:uppercase;
    width:100%;
	text-decoration: none;
	text-shadow: none;
    font-stretch: ultra-condensed;
    font-family: sans-serif;
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}

/* niz */
/*************** framework7 *************/


* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.page>.navbar, .page>.toolbar, .view>.navbar, .view>.toolbar, .views>.navbar, .views>.toolbar {
    position: absolute;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.navbar {
    left: 0;
    top: 0;
}
.navbar:after {
    backface-visibility: hidden;
}
.navbar:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #c4c4c4;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
.navbar, .toolbar {
    height: 44px;
    width: 100%;
    box-sizing: border-box;
    font-size: 17px;
    position: relative;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.navbar .left, .navbar .right {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.navbar .left {
    margin-right: 10px;
}
.navbar .right {
    margin-left: 10px;
}
.navbar a.link, .subnavbar a.link, .toolbar a.link {
    line-height: 44px;
    height: 44px;
    text-decoration: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.navbar .center {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 44px;
    -webkit-flex-shrink: 10;
    -ms-flex: 0 10 auto;
    flex-shrink: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.navbar-inner, .toolbar-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.toolbar {
    left: 0;
    bottom: 0;
}
.toolbar a {
    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    flex-shrink: 1;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.toolbar:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    right: auto;
    height: 1px;
    width: 100%;
    background-color: #c4c4c4;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
}

.list-block {
    margin: 35px 0;
    font-size: 17px;
}
.list-block ul {
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.list-block li {
    box-sizing: border-box;
    position: relative;
}
.list-block .item-link {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    display: block;
    color: inherit;
}

a {
    text-decoration: none;
    color: #007aff;
}
a, input, select, textarea {
    outline: 0;
}
/*
body {
    font-family: -apple-system,SF UI Text,Helvetica Neue,Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    background: #fff;
    overflow: hidden;
}
*/
.list-block .item-link .item-inner {
    padding-right: 35px;
   /* background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xm…29.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E);*/
    background-size: 10px 20px;
    background-repeat: no-repeat;
    background-position: 95% center;
    background-position: -webkit-calc(100% - 15px) center;
    background-position: calc(100% - 15px) center;
}
.list-block .item-media+.item-inner {
    margin-left: 15px;
}
.list-block .item-inner {
    padding-right: 15px;
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 7px;
    min-height: 44px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    overflow: hidden;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    -webkit-align-self: stretch;
    align-self: stretch;
}
.tabbar-fixed .page-content, .tabbar-through .page-content, .toolbar-fixed .page-content, .toolbar-through .page-content {
    padding-bottom: 44px;
}

.navbar-fixed .page-content, .navbar-through .page-content {
    padding-top: 44px;
}
.page-content {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    z-index: 1
}
.list-block .item-title {
    text-align: right;
    white-space: pre-line;
    width: 100%;
}
		

user agent stylesheet
div {
    display: block;
}
.list-block .item-link {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    display: block;
    color: inherit;
}
a {
    text-decoration: none;
    color: #007aff;
}
.list-block .item-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    box-sizing: border-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 8px;
}
.list-block .item-content {
    box-sizing: border-box;
    padding-left: 15px;
    min-height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.item-after .badge {
    min-width: 20px;
}
	/*
.list-block .item-title {
    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}*/
 pages {
   /* position: relative;
   overflow: hidden;*/
    background: #000;
 width: 100%;
    height: 100%;
    }


/* ************************************* niz ******************************** */

.block-m-b {
    margin-bottom: 70px;
}
.right {
    float: right !important;
}

.navbar {
    background: #0079c1;
    color: #fff;
    font-family: 'robotolight', sans-serif;
    text-transform: uppercase;
	text-shadow: none;
}
.navbar:after {
    background: #0079c1;
}
.navbar .link{
	text-shadow: none;
}
.navbar a.link {
    color: #fff;
    font-size: 14px;
    font-family: 'robotolight', sans-serif;
}
.navbar a.link i {
    font-size: 22px;
}
.navbar .center {
    font: bold 15px arial;
}
.navbar-fixed .toolbar:not(.messagebar) {
    top: auto;
}

.toolbar {
    height: 68px;
	text-shadow: none;
}
.toolbar .link {
	text-shadow: none;
    padding: 0 15px;
    color: #FFFFFF;
    font-size: 20px;
}
.toolbar a.link {
    display: inline;
    height: 64px;
    text-align: center;
    padding: 0 4px;
}
.toolbar a.link > span {
    display: block;
    font: bold 14px/17px arial;
     margin: 0 !important; 
    text-align: center; 
     width: 100%; 
}
.toolbar.toolbar-bg {
  /*  background: rgba(4, 115, 192, 0.5) none repeat scroll 0 0;*/
}
.toolbar-bg {
	background: rgba(4, 115, 192, 0.5) none repeat scroll 0 0;
}


.block-m-b {
    margin-bottom: 70px;
}
.welcome-msg {
    margin-top: 47px;
    text-align: center;
    color: #ffffff;
}
.mt-15 {
    margin-top: 15px !important;
}
.list-block .item-media + .item-inner {
    margin-left: 0;
}
/*
.list-block .item-title {
    -webkit-flex-shrink: 1;
    -ms-flex: 0 1 auto;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
*/
.list-block .item-title {
    text-align: right;
    white-space: pre-line;
    width: 100%;
}
.welcome-msg h3 {
    direction: rtl;
    font: bold 12px/25px arial;
    margin-bottom: 9px;
	text-shadow: none ;
}
.welcome-msg h3 b {
    color: #ffed53;
}
.list-block .item-media + .item-inner {
    margin-left: 0;
}

.User-Panel{
	/*background:#1E1C1D;*/
	text-decoration: none;
	text-shadow: none ;
	color: white;
}

.UserPanel {
  background: #0079c1;
}
.UserPanel .list-block .list-group {
}
.UserPanel .list-block .list-group ul {
}
.UserPanel .list-block .list-group ul:before {
  background-color: #333333;
}
.UserPanel .list-block .list-group ul li {
  position: relative;
  color: #cccccc;
  font-size: 14px;
    font: bold 14px arial;
}
.UserPanel .list-block .list-group ul > li {
    direction: rtl;
}
.UserPanel .list-block .list-group ul li:after {
  background-color: #333333;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: auto;
  top: auto;
  -webkit-transform-origin: 50% 100% 0;
      -ms-transform-origin: 50% 100% 0;
          transform-origin: 50% 100% 0;
  width: 100%;
  z-index: 15;
}
.UserPanel .list-block .list-group ul > li::after {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.UserPanel .list-block .list-group ul::before {
    background-color: transparent;
}
.UserPanel .list-block .list-group ul > li > a {
	color: white;
    padding-left: 0;
    padding-right: 15px;
}
.UserPanel .list-block .list-group ul > li > a .item-media {
}
.UserPanel .list-block .list-group ul li .item-inner {
  background-image: none;
}
.UserPanel .list-block .list-group ul li .item-inner:after {
  background-color: transparent;
}
.UserPanel .list-block .list-group ul > li > a .item-inner {
    margin-left: 0;
    margin-right: 15px;
    padding-left: 35px;
    padding-right: 0;
}
.UserPanel .list-block .list-group ul li.divider {
    text-align: right;
}
.UserPanel .list-block .list-group ul li .item-inner .badge {
    left: 35px;
    right: auto;
}
.UserPanel .list-block .list-group ul {
  background: transparent;
}
.badge-primary {
    background: #4CAE4C;
    color: #FFFFFF;
}
.bg-red, .button.button-fill.bg-red, .list-block .swipeout-actions-left a.bg-red, .list-block .swipeout-actions-right a.bg-red, a.bg-red {
    background-color: #ff3b30;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.ui-page-theme-a a, html .ui-bar-a a, html .ui-body-a a, html body .ui-group-theme-a a {
    color: #333;
    font-weight: 700;
    text-align: right;
}


#secondDiv {
    display: table-header-group;
	width: 90%;
}

/*    */
 
#footer-0 , #footer-1 , #footer-2 , #footer-3 , #footer-4 , #footer-5 , #footer-6 , #footer-7 , #footer-8 , #footer-9 , #footer-10 , #footer-11 , #footer-12 , #footer-13 , #footer-14{
	height: 70px;
	/*background: rgba(4, 115, 192, 0.7) none repeat scroll 0 0;*/
	background-color: transparent;
	border-color: transparent;
	text-shadow: none;
		
} 
 #footer-bar-0 , #footer-bar-1 , #footer-bar-2 , #footer-bar-3 , #footer-bar-4 , #footer-bar-5 , #footer-bar-6 , #footer-bar-7 , #footer-bar-8 , #footer-bar-9 , #footer-bar-10 , #footer-bar-11 , #footer-bar-12 , #footer-bar-13 , #footer-bar-14{
	height: 40px;
    background: rgba(4, 115, 192, 0.7) none repeat scroll 0 0;
     bottom: 0px;
    position: absolute;
    width: 100%;
}
 #footer-button-0 , #footer-button-1 , #footer-button-2 , #footer-button-3 , #footer-button-4 , #footer-button-5 , #footer-button-6 , #footer-button-7 , #footer-button-8 , #footer-button-9 , #footer-button-10 , #footer-button-11 , #footer-button-12 , #footer-button-13 , #footer-button-14 {
	background-color: limegreen;
    text-shadow: none;
    color: white;
    font-size: 20px;
    z-index: 100;
    margin: -20px auto;
    border-radius: 50px;
    display: block;
    width: fit-content;
    text-align: center;
    padding: 10px 20px;
}
/*
.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}*/ 

/*
.ui-footer .ui-bar-inherit .ui-footer-fixed {
	height: 50px;
	background: rgba(4, 115, 192, 0.5) none repeat scroll 0 0;
}

.ui-page-theme-a .ui-footer .ui-btn{
	background-color: limegreen;
    text-shadow: none;
    color: white;
    font-size: 18px;
    height: 50px;
     z-index: 100;
    margin: 0 auto;
    border-radius: 50px;
	display: block;
   width: 135px;
}*/

.ui-page-theme-a .ui-bar-inherit{
	/*height: 70px;*/
	/*background: rgba(4, 115, 192, 0.7) none repeat scroll 0 0;*/
} 
.ui-panel-animate.ui-panel-open.ui-panel-position-right.ui-panel-display-push {
	background-color: #0079c1;
	text-decoration: none;
	color: black;
	height: 100%;
	overflow-y: scroll;
	 /* width: 180px;*/
}
.modal-backdrop{
	position: initial;
}

/*//////////////////////////// ui panel ////*/
.ui-panel {
    width: 70%;
    z-index: 1004;
}
/* Panel right closed */
.ui-panel-position-right {
    right: -70%;
}
/* Panel right closed animated */
.ui-panel-animate.ui-panel-position-right.ui-panel-display-overlay,
.ui-panel-animate.ui-panel-position-right.ui-panel-display-push {
    right: 0;
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
}
/* Panel right open */
.ui-panel-page-content-position-right {
    left: -70%;
    right: 70%;
}
/* Panel right open animated */
.ui-panel-animate.ui-panel-page-content-position-right {
    left: 0;
    right: 0;
    -webkit-transform: translate3d(-70%,0,0);
    -moz-transform: translate3d(-70%,0,0);
    transform: translate3d(-70%,0,0);
}
/* Dismiss model open */
.ui-panel-dismiss-open.ui-panel-dismiss-position-right {
    right: 70%;
}
/* ****************************** */

input.btn-primary, .btn-primary {
    height: 50px;
}

.btn-large{
	height: 45px;
}

.ui-input-text input, .ui-input-search input{
	    text-align: right;
}

video {
     width: 100%;
    height: 200px;
}


/* ****************************** */
.cat_style0{
	color: #000;
    /*background: #eee;*/
    display: flex;
    width: 100%;
    /*padding: 10px 0 0 0;*/
}
.cat_style1{
    margin: 0 5px;
    width: 90px;
     white-space: normal;
    line-height: 25px;
    text-overflow: ellipsis;
    font-size: smaller;
    font-weight: bold;
     background-color: white;
    border-radius: 4px;
    height: 75px;
    }
    
    .cat_style1 svg{
	width: 90%;
    height: 90%;
    color: white;
}

.cat_style2{
	background-color: #c5bec2 ;
    border-radius: 10%;
    width: 50px;
    height: 50px; 
    padding: 6px;
}
 

  /* Style the buttons */
.adsbtn {
    border: none;
    outline: none;
   background-color: #0079c1;
    color: white;  
    cursor: pointer;
   /* font-size: 18px;
   padding: 10px 16px;*/
   }
  
  /* Style the active class, and buttons on mouse-over */
  .sactive, .btn:hover {
    background-color: #c5bec2;
   
  }

  .s_subcat {
     background-color: #0079c1;
      color: white;
       border-radius: 9px;
  }
/* ********************** */
.adsCont{
    padding: 0 10px;
    margin-bottom: 80px;
}
.ads{
	border-bottom:solid #0079c1;
	border-width: 0.5px;
	/*border-radius: 20px;*/
	margin: 5px 0;
    height: 110px;
}
  .adsImg {
    flex-grow: 1;
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 7px;
}
.adsTitle a {
    font-size: 14px;
	text-decoration: none;
	text-shadow: none;
color: black ;
			    display: block;
				text-overflow: ellipsis;
  				word-wrap: break-word;
  				overflow: hidden;
  				max-height: 3.6em;
  				line-height: 1.8em;
			}
.adsImg a img {
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/

    padding: 1px;
    /* margin: 2px 8px; */
    /*box-shadow: black 1px 1px 0, black 1px -1px 0, black -1px 1px 0, black -1px -1px 0;*/
    float: right
}
.adsInfo {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 108px;
    padding: 10px; 
}

.adsInfo {
    cursor: pointer;
}
.adsExtraInfo {
    align-self: flex-end;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.addads{ 
        margin: auto;
        position: fixed;
        bottom: 20px;
        color: white;
}
.addads a{
 background-color: #0079c1;
        padding: 10px;
        border-radius: 5px;
        text-decoration: none;
        color: white !important;
        text-shadow: none;
        margin-left: 3px;
        margin-right: 3px;
}
/* ********************* */
a.city-head {
    background-color: #0079c1;
    /* border-radius: 3px 3px 3px 3px; */
    color: #FFFFFF !important;
    font-size: 14px;
    padding: 3px 7px;
    /* text-decoration: none; */
}
/* ************** */
.bannerSlides {
    display:none;
}