/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/*************** RESPONSIVE BREAKPOINTS ***************/

@mixin for-phone-only {
  @media (max-width: 549px) {
      @content;
  }
}
@mixin for-phone-tablet-only {
  @media (min-width: 849px) {
      @content;
  }
}
@mixin for-tablet-only {
  @media (min-width: 550px) and (max-width: 849px) {
      @content;
  }
}
@mixin for-tablet-portrait-up {
  @media (min-width: 550px) {
      @content;
  }
}
@mixin for-tablet-landscape-up {
  @media (min-width: 849px) {
      @content;
  }
}
@mixin for-desktop-up {
  @media (min-width: 1200px) {
      @content;
  }
}
@mixin for-big-desktop-up {
  @media (min-width: 1800px) {
      @content;
  }
}
/*************** HEADER TOP AND MAIN ***************/
.header-inner .nav-left {
	@include for-tablet-landscape-up {
		justify-content: center !important;
	}
}
.nav-left {
    justify-content: center;
}
@media (min-width: 1200px) {
    .header .header-inner, .header-top .container {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }
}
.accordion-title {
    border-top: 1px solid #ddd;
    display: block;
    font-size: 120%;
    padding: 1.0em 2.3em;
    position: relative;
    transition: border .2s ease-out, background-color .3s;
}
.links>li>a:before, i[class*=" icon-"], i[class^=icon-] {
    line-height: 1.7;
}
ul li.bullet-arrow, ul li.bullet-checkmark, ul li.bullet-cross, ul li.bullet-star {
    border-bottom: 0px solid #ececec;
    list-style: none;
    margin: 0;
    padding: 7px 0 7px 25px;
    position: relative;
}

.absolute-footer ul {
    border-bottom: 1px solid #fff;
    opacity: 1.0;
    padding-bottom: 0px;
}
ul.links {
    font-size: 1em;
    margin: 10px 0;
}
img {
  border-radius: 0px;
}
.is-large {
    font-size: 1.0em;
    padding: 5px 30px 5px 30px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}