/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Navigation
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget select {
    width: 100%;
    padding: 6px 10px;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery-columns-3 .gallery-item:nth-child(3n+1) {
    clear: left;
}
.blog-post .post-teaser .gallery-item{
  background-color: transparent;
}
.post-teaser img {
    max-width: 100%;
    height: auto;
}
.edit-link {
    color: #fff;
    display: inline-block;
    padding: 1px 10px;
    margin-left: 10px;
}
.edit-link a {
    color: #fff;
}
.wp-caption-text.gallery-caption {
    display: block;
    padding: 20px 20px 20px 0px;
    text-align: left;
}
 blockquote {
    margin-bottom: 60px;
}
.blog-post blockquote {
    position: relative;
    font-style: italic;
}
.post-teaser th {
  font-size: 17px !important;
}
.post-teaser a {
  font-size: 15px !important;
}
table {
  border-right: 1px solid hsl(0, 0%, 87%);
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 1.75em;
  table-layout: fixed;
  width: 100%;
}
table > thead > tr > th, table > tbody > tr > th, table > tbody > tr > td {
  border-top: 1px solid hsl(0, 0%, 87%);
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th, table > tbody > tr > td, table > tbody > tr > th, table > tfoot > tr > td, table > tfoot > tr > th, table > thead > tr > td, table > thead > tr > th, th, td {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: currentcolor currentcolor hsl(0, 0%, 82%) hsl(0, 0%, 82%);
  border-image: none;
  border-style: none none solid solid;
  border-width: medium medium 1px 1px;
  padding: 10px;
}
.post-teaser td {
  font-weight: 600;
}
.post-teaser img {
  height: auto;
  max-width: 100%;
}
.widget img {
  height: auto;
  max-width: 100%;
}
/*.side-block h3 {
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 18px;
  margin-top: 10px;
  text-transform: none;
} */
.category-list > li {
  font-size: 16px;
  line-height: 20px;
}
.category-list > li {
    font-size: 18px;
    line-height: 20px;
    padding: 10px 0 10px 20px;
    position: relative;
    margin-top: 0;
}
.post-teaser ul li > span {
  font-size: 14px !important;
}
.category-list > li a {
  color: hsl(0, 0%, 27%);
  font-size: 16px !important;
  text-decoration: none;
}
.category-list > li {
  font-size: 16px !important;
}
 .post-teaser input[type="text"], .post-teaser input[type="password"] {
  border: 1px solid hsl(0, 0%, 60%);
  border-radius: 0px;
  padding: 13px 22px;
}
/*.nav-links > .page-numbers {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 15px;
}
.nav-links > .page-numbers.current,
.nav-links > .page-numbers:hover{
    border: 1px solid #4ba0e8;
    display: inline-block;
    padding: 6px 15px;
    background:#4ba0e8;
    color: #fff;
}*/
.blog-post > .inside {
  padding: 0;
}
.tags-links.tags-list > li {
  display: inline-block;
    margin-bottom: 7px;
    margin-right: 5px;
    padding: 0;
}
blockquote {
    border-left: none;
    position: relative;
    padding-left: 100px;
}
.blog-post .post-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.sticky_post_icon {
    font-size: 30px;
    position: absolute;
    right: 0;
    background: rgba(256,256,256, 0.9);
    color: #333;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    z-index: 1;
    padding: 4px;
    border: 3px solid;
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}
address {
    margin-bottom: 20px;
    line-height: 1.42857143;
    font-style: italic;
}
.category-list {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.list-image > img {
  max-width: 100%;
  height: auto;
  width: auto;
} 
/* 13-02-2017 unite test */
 .widget_nav_menu ul>li>ul.sub-menu>li>ul.sub-menu ul.sub-menu {
    padding-left: 13px;
} 
.widget_nav_menu ul > li > ul.sub-menu li > ul.sub-menu li {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
} 
.widget_nav_menu ul > li > ul.sub-menu li > ul.sub-menu.category-list > li>a{
  margin-left: 15px;
}
ol > li,ul li {
    margin-top: 8px;
}
.column-right ul {
    padding-bottom: 0;
} 
.post-image img {
    height: auto;
    max-width: 100%;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid #ccc;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.textwidget > form select option {
  width: 250px;
}
.comments .comment .comment {
    margin-left: 40px;
}
.comments .comment .comment {
    margin-left: 0px;
}
.entry-content img {
    max-width: 100%;
    height: auto;
}
.box-step .title span {
    color: #009cdc;
}
.comments-area .comment .comment {
    margin-left: 2em;
}
.comment-reply-title {
  font-size: 28px;
  font-weight: 600;
}
.blog #monster-widget-placeholder-1 {
    margin-top: 40px;
}
.post-teaser input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    border: 1px solid #333;
    background: #333;
    padding: 14px 22px 13px;
    display: inline-block;
    width: auto;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    margin: 0px 0;
}
ul, ol {
    margin: 0;
    padding: 0 0 0px 40px;
}
ol ol, ol ul, ul ol, ul ul,ul,ol {
    margin-bottom: 0;
}
.blog-post dd {
    margin-left: 0;
    margin: 5px 0px 20px 15px;
}
.side-block ul,.side-block ol {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
    display: inline-block;
}
blockquote{
  position: relative;
}
blockquote:before{
    font-size: 120px;
    line-height: 1em;
    font-style: normal;
    content: "“";
    position: absolute;
    left: 20px;
    top: -15px;
    color: #c7d5e1;
}
.blog-post .post-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.post-teaser [class*="gallery-columns"] {
    display: inline-block;
}
.post-teaser .gallery-item img {
    max-width: 100%;
    height: auto;
    width: auto;
}
.blog-post .post-teaser .gallery-item {
    background-color: transparent;
}
.post-teaser h2 {
    margin-top: 15px;
}
.blog-post .post-teaser .gallery-item {
    float: left;
    overflow: hidden;
    width: 33.33%;
    margin-bottom: 20px;
    text-align: left;
}
.blog-post .gallery-item:nth-child(3n+1) {
    clear: left;
}
form.search-form input.search-field {
    border: 1px solid #ccc;
    padding: 5px 7px;
    height: 34px;
}
.search-submit {
    background: #4ba0e8;
    border: 1px solid #ccc;
    color: #fff;
    height: 34px;
}
.search-no-results .page-main,
.error404 .page-main {
  margin-top:60px;
} 
@media (max-width: 767px) {
.comment-list .comment .text {
    overflow: visible;
    padding-top: 4px;
}
.side-block{
    margin-bottom: 40px;
}
.comment-list .comment .text .meta {
    border-bottom: 0px solid #efefef;
    padding-bottom: 20px;
}
.comment-list ol {
    padding: 0px;
    padding-left: 15px;
}
.comment-list li.comment {
    margin-left: 0px !important;
}
h3 {
    font-size: 24px;
}
.comment-list .comment .text .meta-author {
    display: block;
}
}
.comment-list li {
    list-style: none;
}
.side-block ul.children {
    padding-left: 20px;
}
.side-block{
  margin-bottom: 30px;
}
@media (max-width: 767px){
body .page-header-top-off .logo {
    max-width: 200px;
    padding-left: 50px;
    padding-right: 45px;
}
.comment-list .comment .userpic {
    text-align: left !important;
}
}



.wp-block-image.alignfull img, .wp-block-image.alignwide img {
  width: 100%;
}
.single.wp-embed-responsive .blog-post {
  overflow: unset;
}/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}@font-face {
  font-family: 'cleaning';
  src:  url(//www.indoorremediation.com/wp-content/themes/cleaning-services/fonts/fonts/cleaning.eot?2l0mg0);
  src:  url(//www.indoorremediation.com/wp-content/themes/cleaning-services/fonts/fonts/cleaning.eot?2l0mg0#iefix) format('embedded-opentype'),
    url(//www.indoorremediation.com/wp-content/themes/cleaning-services/fonts/fonts/cleaning.ttf?2l0mg0) format('truetype'),
    url(//www.indoorremediation.com/wp-content/themes/cleaning-services/fonts/fonts/cleaning.woff?2l0mg0) format('woff'),
    url(//www.indoorremediation.com/wp-content/themes/cleaning-services/fonts/fonts/cleaning.svg?2l0mg0#cleaning) format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'cleaning' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-linkedin:before {
  content: "\f0e1";
}
.icon-yelp:before {
  content: "\f1e9";
}
.icon-speech-bubble:before {
  content: "\e900";
}
.icon-linkedin-logo:before {
  content: "\e901";
}
.icon-google-plus-logo:before {
  content: "\e902";
}
.icon-twitter-logo:before {
  content: "\e903";
}
.icon-instagram-logo:before {
  content: "\e904";
}
.icon-facebook-logo:before {
  content: "\e905";
}
.icon-mouse:before {
  content: "\e906";
}
.icon-checked:before {
  content: "\e907";
}
.icon-bubble:before {
  content: "\e908";
}
.icon-next:before {
  content: "\e909";
}
.icon-right-arrow:before {
  content: "\e90a";
}
.icon-back:before {
  content: "\e90b";
}
.icon-star-black:before {
  content: "\e90c";
}
.icon-time:before {
  content: "\e90d";
}
.icon-technology:before {
  content: "\e90e";
}
.icon-bell:before {
  content: "\e90f";
}
.icon-market:before {
  content: "\e910";
}
.icon-cancel2:before {
  content: "\e911";
}
.icon-user:before {
  content: "\e912";
}
.icon-clock:before {
  content: "\e913";
}
.icon-cleaning-spray:before {
  content: "\e914";
}
.icon-cleaning-lady:before {
  content: "\e915";
}
.icon-map-marker:before {
  content: "\e916";
}
.icon-vacuum:before {
  content: "\e917";
}
.icon-conversation:before {
  content: "\e918";
}
.icon-broom:before {
  content: "\e919";
}
.icon-night:before {
  content: "\e91a";
}
.icon-target:before {
  content: "\e91b";
}
.icon-bucket:before {
  content: "\e91c";
}
.icon-map-with-marker:before {
  content: "\e91d";
}
.icon-boss:before {
  content: "\e91e";
}
.icon-umbrella:before {
  content: "\e91f";
}
.icon-smiling-face:before {
  content: "\e920";
}
.icon-icon-check:before {
  content: "\e921";
}
.icon-phone-call:before {
  content: "\e922";
}
.icon-phone-lined:before {
  content: "\e923";
}
.icon-map-lined:before {
  content: "\e924";
}
.icon-umbrella-lined:before {
  content: "\e925";
}
.icon-user-lined:before {
  content: "\e926";
}
.icon-like-lined:before {
  content: "\e927";
}
.icon-users-lined:before {
  content: "\e928";
}
.icon-reward-lined:before {
  content: "\e929";
}
.icon-target-lined:before {
  content: "\e92a";
}
.icon-brush-lined:before {
  content: "\e92b";
}
.icon-cancel:before {
  content: "\e92c";
}
.icon-line-menu:before {
  content: "\e92d";
}
.icon-printer:before {
  content: "\e92e";
}
.icon-menu:before {
  content: "\e92f";
}
.icon-search:before {
  content: "\e930";
}
.icon-location:before {
  content: "\e931";
}
.icon-clock1:before {
  content: "\e932";
}
.icon-letter:before {
  content: "\e933";
}
.icon-phone:before {
  content: "\e934";
}
.icon-arrow-left:before {
  content: "\e935";
}
.icon-arrow-right:before {
  content: "\e936";
}
.icon-arrow-top:before {
  content: "\e937";
}
.icon-arrow-bottom:before {
  content: "\e938";
}
.icon-star:before {
  content: "\e939";
}
.icon-bell1:before {
  content: "\e93a";
}
.icon-link:before {
  content: "\e93b";
}
.icon-youtube-play:before {
  content: "\e93c";
}
.icon-house-3:before {
  content: "\e93d";
}
.icon-calc:before {
  content: "\e93f";
}
.icon-write:before {
  content: "\e940";
}
.icon-play:before {
  content: "\e941";
}
.icon-user-rating:before {
  content: "\e942";
}
.icon-648324users:before {
  content: "\e943";
}
.icon-cleaning:before {
  content: "\e944";
}
.icon-house:before {
  content: "\e945";
}
.icon-carpet:before {
  content: "\e946";
}
.icon-house-1:before {
  content: "\e947";
}
.icon-award:before {
  content: "\e948";
}
.icon-window:before {
  content: "\e949";
}
.icon-truck:before {
  content: "\e94a";
}
.icon-window-1:before {
  content: "\e94b";
}
.icon-house-2:before {
  content: "\e94c";
}
.icon-facebook-logo1:before {
  content: "\e94d";
}
.icon-twitter-logo1:before {
  content: "\e94e";
}
.icon-instagram-logo1:before {
  content: "\e94f";
}
.icon-leaf:before {
  content: "\e950";
}
.icon-cart:before {
  content: "\e951";
}