/*

Includes the following custom build from Zurb Foundation 6.1.2:

- 24 columns
- 75 rem max-width
- 1.875 rem gutter

- grid
- typography
- forms
- float classes
- visibility classes
- buttons
- close button
- button group
- table

*/
@import url(//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300|Open+Sans:400,800,300,600,700,700italic|Oswald:400,700,300|Roboto:400,300,400italic,500,700,900);
html * {
  letter-spacing: normal;
}

h1 {
  font-size: 2.4em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 1.6em;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #578488;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
}

h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

p {
  margin-bottom: 1.4em;
  line-height: 1.2em;
}

.labelFld {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

/*

     @include grid-md {
        min-height: 40vh;        
    }    

*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*--------------------------------------
Foundation Extension
--------------------------------------*/
.row {
  margin-bottom: 1em;
}
.row.lean {
  margin-bottom: 0;
}
.row.leanVertical {
  margin-bottom: 0 !important;
}
.row.pagination {
  margin: 0;
  padding: 1em 0;
  border-top: 2px solid #ccc;
  font-size: 0.9em;
}

.columns.slim {
  padding: 0 !important;
}

.fullRow {
  padding: 20px;
  background-color: yellow;
}

.pad {
  padding: 1em;
}

ul.edgeless {
  padding-left: 0 !important;
}

.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cross {
  text-decoration: line-through;
}

.divider-20 {
  width: 100%;
  min-height: 20px;
}

.divider-30 {
  width: 100%;
  min-height: 30px;
}

.divider-40 {
  width: 100%;
  min-height: 40px;
}

.divider-50 {
  width: 100%;
  min-height: 50px;
}

/*--------------------------------------
Helpers
--------------------------------------*/
ul.subNav, ul.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.subNav li, ul.pagination li {
  display: inline-block;
  padding-right: 16px;
  padding-left: 6px;
}
ul.subNav li:last-child, ul.pagination li:last-child {
  border-right: none;
  padding-right: 0;
}
ul.subNav li:first-child, ul.pagination li:first-child {
  padding-left: 0;
}
ul.subNav li a, ul.pagination li a {
  font-size: 0.9em;
}

/*--------------------------------------
Form
--------------------------------------*/
form .requiredFld {
  display: none !important;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

h1:first-child, h1 .lean, h2:first-child, h2 .lean, h3:first-child, h3 .lean, h4:first-child, h4 .lean, h5:first-child, h5 .lean {
  margin-top: 0px !important;
}

h1 {
  font-size: 2.6em;
  margin-bottom: 24px;
}

h2 {
  font-size: 2em;
  margin-top: 3rem;
}

h3 {
  font-size: 1.2em;
  margin-top: 2rem;
  font-weight: 600;
}

.button.cta {
  width: 100%;
  background-color: #578488;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1.2em;
}

.fa-btn {
  background: #fff;
  background: linear-gradient(#fff, #eee);
  border: 0;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  color: #555;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  height: auto;
  line-height: 34px;
  outline-offset: -2px;
  padding: 0 18px 0 18px;
  position: relative;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  margin: 0 10px 0 0;
}
.fa-btn:hover {
  text-decoration: none;
  background: linear-gradient(#eee, #fff);
}
.fa-btn:disabled {
  background: linear-gradient(#ccc, #ccc);
  color: #afafaf;
}
.fa-btn.small {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 12px;
  margin-right: 4px;
}

.outline-button {
  border: 1px solid #ccc;
  padding: 12px 24px;
  border-radius: 4px;
  color: #444;
  font-size: 11pt;
}

/*--------------------------------------
Top Bar
--------------------------------------*/
ul#cartInfo {
  margin: 0;
  padding: 0 12px 0 0;
}
ul#cartInfo li {
  list-style: none;
  display: inline-block;
}
@media only screen and (min-width: 40em) {
  ul#cartInfo li {
    margin-right: 25px;
  }
}
ul#cartInfo li:last-child {
  margin-right: 0;
}

/*--------------------------------------
Global Message Box
--------------------------------------*/
#globalMsgBox {
  text-align: center;
  background-color: #fff;
  margin: 0 0 3rem 0;
  padding: 1.4rem;
  border-radius: 3px;
  position: relative;
  color: #0a0a0a;
}

/*--------------------------------------
Social Share Icons
--------------------------------------*/
.social-share img {
  width: 24px;
}

.published-date {
  padding-top: 4px;
}

.mainCategoryView {
  margin: 0;
  padding: 0;
  width: 100%;
}
.mainCategoryView.plain a figure {
  display: none;
}
.mainCategoryView.plain a .list {
  margin: 0 2% 2.2% 0;
  padding: 0 14px;
  height: auto;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainCategoryView.plain a .list h1 {
  margin: 0 !important;
}
.mainCategoryView a .list {
  background-color: #fff;
  float: left;
  width: 100%;
  margin: 0 0 2em 0;
  box-sizing: border-box;
  height: 270px;
  display: block;
  color: #444;
}
@media only screen and (min-width: 40em) {
  .mainCategoryView a .list {
    width: 48%;
    margin: 0 2% 2em 0;
  }
}
@media only screen and (min-width: 64em) {
  .mainCategoryView a .list {
    width: 23%;
    margin: 0 2% 2em 0;
  }
}
.mainCategoryView a .list figure {
  height: 200px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.mainCategoryView a .list figure img {
  width: auto;
  height: 100%;
}
.mainCategoryView a .list h1 {
  font-weight: 400;
  font-size: 1.1em;
  font-family: "Lato", sans-serif;
  margin: 0;
  line-height: 1.2em;
  margin: 12px 2px 12px;
  text-align: center;
  text-transform: uppercase;
}

.category-description {
  text-align: center;
}

.list-products {
  /*
  -webkit-column-count:2;
     -moz-column-count:2;
     -ms-column-count:2;
     -o-column-count:2;
     column-count:2;
     -webkit-column-gap:36px;
     -moz-column-gap:36px;
     -ms-column-gap:36px;
     -o-column-gap:36px;
     column-gap:36px;
     columns:2;
     */
}
.list-products ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-products ul li {
  display: block;
  float: none;
  width: 100%;
}
@media only screen and (min-width: 40em) {
  .list-products ul li {
    display: inline-block;
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 64em) {
  .list-products ul li {
    display: inline-block;
    float: left;
    width: 25%;
  }
}
.list-products ul li .featured-product-wrapper {
  margin-bottom: 24px;
  margin-right: 2%;
  padding: 4px;
  text-align: center;
}
.list-products ul li .featured-product-wrapper .prod-image {
  height: 180px;
}
.list-products ul li .featured-product-wrapper .prod-image img {
  height: 100%;
  width: auto;
  border-radius: 10px;
}
.list-products ul li .featured-product-wrapper .prod-name {
  margin-top: 6px;
}
.list-products ul li .featured-product-wrapper .prod-name h1 {
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 0;
}
.list-products ul li .featured-product-wrapper .prod-price {
  font-size: 1.2em;
  font-weight: 700;
  color: #444;
}

#home-featured-articles h1 {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0px;
}

#mainProductView figure {
  height: 200px;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 6px;
}
#mainProductView figure img {
  width: auto;
  height: 100%;
}
#mainProductView h3, #mainProductView p {
  text-align: center;
}
#mainProductView h3 {
  margin: 0;
  font-size: 1em;
}
#mainProductView p {
  line-height: 1.6em;
  color: #4F8B8B;
  font-weight: 600;
}
#mainProductView .prod-wrapper {
  height: 320px;
}

#mainPackageView {
  text-align: center;
}
@media only screen and (min-width: 40em) {
  #mainPackageView {
    text-align: left;
  }
}
#mainPackageView figure {
  height: 200px;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 6px;
}
#mainPackageView figure img {
  width: auto;
  height: 100%;
}
#mainPackageView h2 {
  font-size: 24px;
}
#mainPackageView h2 br.linebr {
  display: block;
}
@media only screen and (min-width: 40em) {
  #mainPackageView h2 br.linebr {
    display: none;
  }
}
#mainPackageView h2 span.savings {
  display: inline-block;
  margin: 4px 0 0 0;
  border: 1px solid #e8e8e8;
  color: #444;
  font-size: 12px;
  padding: 2px 6px;
  font-family: "Lato", sans-serif;
  background-color: #efefef;
  font-weight: 600;
  position: relative;
  top: -3px;
  text-transform: uppercase;
  border-radius: 3px;
}
@media only screen and (min-width: 40em) {
  #mainPackageView h2 span.savings {
    margin: 0 0 0 8px;
  }
}
#productDetail h1 {
  font-size: 2.2rem;
  font-weight: 400;
}
#productDetail h4 {
  margin: 24px 0 6px;
  color: #959595;
  font-size: 1em;
}
#productDetail strong {
  font-weight: 600;
}
#productDetail select, #productDetail [type=checkbox], #productDetail [type=radio] {
  margin-bottom: 0;
}
#productDetail #product-breadcrumb {
  margin-bottom: 24px;
}
#productDetail #productPrice {
  margin: 40px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
  font-size: 2.2rem;
}
#productDetail .productThumbImage ul {
  margin: 0;
  padding: 0;
}
#productDetail .productThumbImage ul li {
  list-style: none;
  padding: 8px 12px 8px 0;
  display: inline-block;
}
#productDetail .productThumbImage ul li:only-child {
  display: none;
}
#productDetail .productCopy {
  padding-right: 28px;
  margin-top: 36px;
}

.package-detail {
  background-color: #F7F9F6;
  margin-bottom: 6px;
  padding: 12px 24px;
}
.package-detail * {
  font-family: "Lato", sans-serif;
}
.package-detail .package-category-label p {
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  color: #696969;
  margin-bottom: 6px;
}
.package-detail .row {
  margin-bottom: 0px !important;
}
.package-detail label {
  padding-left: 18px;
  font-size: 1rem;
}

#specials-bundles form:not(:first-child) h2 {
  display: none;
}

#prodOPTIONS {
  margin-bottom: 36px;
}
#prodOPTIONS .prod-option-row {
  display: block;
  overflow: hidden;
  margin: 2px 0;
}
#prodOPTIONS .prod-option-row * {
  font-family: "Lato", sans-serif;
}
#prodOPTIONS .prod-option-row .leftCol, #prodOPTIONS .prod-option-row .rightCol {
  display: inline-block;
  float: left;
}
#prodOPTIONS .prod-option-row .leftCol {
  width: 6%;
}
@media only screen and (min-width: 40em) {
  #prodOPTIONS .prod-option-row .leftCol {
    width: 4%;
  }
}
#prodOPTIONS .prod-option-row .rightCol {
  width: 90%;
}
@media only screen and (min-width: 40em) {
  #prodOPTIONS .prod-option-row .rightCol {
    width: 92%;
  }
}

.pkgOPTIONS {
  margin-bottom: 36px;
  margin-left: 30px;
}
.pkgOPTIONS .prod-option-row {
  display: block;
  overflow: hidden;
  margin: 2px 0;
}
.pkgOPTIONS .prod-option-row * {
  font-family: "Lato", sans-serif;
}
.pkgOPTIONS .prod-option-row .leftCol, .pkgOPTIONS .prod-option-row .rightCol {
  display: inline-block;
  float: left;
}
.pkgOPTIONS .prod-option-row .leftCol {
  width: 6%;
}
@media only screen and (min-width: 40em) {
  .pkgOPTIONS .prod-option-row .leftCol {
    width: 4%;
  }
}
.pkgOPTIONS .prod-option-row .rightCol {
  width: 90%;
}
@media only screen and (min-width: 40em) {
  .pkgOPTIONS .prod-option-row .rightCol {
    width: 92%;
  }
}

.cart-option-list {
  list-style: none;
  margin: 12px 0;
}

.removeProd {
  text-decoration: none;
  background: white;
  border: 1px solid #CB3D39;
  font-size: 0.8em;
  padding: 1px 4px;
  display: block;
  border-radius: 2px;
  color: #CB3D39;
  text-align: center;
}

a.removeProd, a.removeProd:hover {
  color: #CB3D39;
}

#checkout-flow {
  margin-top: 36px;
}
#checkout-flow .checkout-progress-wrapper {
  overflow: hidden;
}
#checkout-flow .checkout-progress {
  display: none;
  justify-content: space-around;
  border-bottom: 1px solid #eff4f6;
  padding-top: 16px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 40em) {
  #checkout-flow .checkout-progress {
    display: flex;
  }
}
#checkout-flow .checkout-progress a.step {
  display: block;
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  font-weight: 400;
  color: #164B85;
  letter-spacing: 0.01em;
  padding: 24px;
  position: relative;
}
#checkout-flow .checkout-progress a.step span {
  position: absolute;
  bottom: -13px;
  left: calc(50% - 9px);
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  z-index: 1;
}
#checkout-flow .checkout-progress a.step.active span {
  background-color: #164B85;
}
#checkout-flow .checkout-progress a.step.active:before {
  content: "";
  width: 400%;
  height: 2px;
  background-color: #164B85;
  position: absolute;
  right: 50%;
  bottom: -1px;
}
#checkout-flow .checkout-leftcolumn label, #checkout-flow .checkout-rightcolumn label {
  font-weight: 400;
  text-transform: uppercase;
  color: #6b6b6b;
  font-size: 11pt;
  font-family: "Oswald", sans-serif;
}
#checkout-flow .checkout-leftcolumn {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(34, 35, 40, 0.1);
  padding: 36px;
}
@media only screen and (min-width: 40em) {
  #checkout-flow .checkout-leftcolumn {
    min-height: 560px;
  }
}
#checkout-flow .checkout-leftcolumn h1.sectionColumnTitle {
  display: block;
}
@media only screen and (min-width: 40em) {
  #checkout-flow .checkout-leftcolumn h1.sectionColumnTitle {
    display: none;
  }
}
#checkout-flow .checkout-leftcolumn .row.highlighted {
  background-color: #feffee;
  border: 1px dashed #ccc;
  padding: 24px 0;
}
#checkout-flow .checkout-leftcolumn .row.highlighted div {
  font-weight: 500;
}
#checkout-flow .checkout-rightcolumn {
  margin-top: 36px;
  padding: 0 24px;
}
@media only screen and (min-width: 40em) {
  #checkout-flow .checkout-rightcolumn {
    margin-top: 0px;
  }
}
#checkout-flow .checkout-rightcolumn .sub-event-wrapper {
  background-color: #f5f5f5;
  padding: 12px 24px;
}
#checkout-flow .checkout-rightcolumn h2 {
  font-size: 1.4rem;
  margin-top: 24px;
}
#checkout-flow .checkout-rightcolumn .row.lean {
  margin-bottom: 10px;
}
#checkout-flow .checkout-rightcolumn .row.highlighted {
  background-color: #feffee;
  border: 1px dashed #ccc;
  padding: 6px 0;
}
#checkout-flow .checkout-rightcolumn .row.highlighted div {
  font-weight: 500;
}
#checkout-flow .checkout-rightcolumn .row.grandTotal {
  border-top: 2px solid #ccc;
  margin-top: 12px;
  padding-top: 12px;
}
#checkout-flow .checkout-rightcolumn .row.grandTotal span {
  font-weight: 400;
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
}

.addon-wrapper {
  height: auto;
  margin: 10px auto;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.addons_label {
  height: 36px;
  border-bottom: 1px solid #ccc;
  padding: 10px 10px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  margin: 36px 0 14px;
}
.addons_label h2 {
  color: #5E6977;
  font-size: 1.4em;
}

.item {
  padding: 10px 15px;
  height: 100px;
  display: flex;
  border-bottom: 1px solid #E1E8EE;
}
.item:last-of-type {
  border-bottom: none;
}

/* .shopping-cart .item:last-of-type {
	border-bottom: none;
} */
/* .item:nth-child(5) {
  border-top:  1px solid #E1E8EE;
  border-bottom:  1px solid #E1E8EE;
}
 */
.image {
  margin-right: 16px;
  width: 50px;
  height: 50px;
}

.description {
  margin-top: 8px;
  width: 238px;
}

.quantity {
  margin-right: 30px;
}

.quantity input {
  -webkit-appearance: none;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  border-radius: 8px;
}

.quantity_label {
  width: 35px;
  margin-top: 8px;
}

.total-price {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .addon-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .item {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .image img {
    width: 50%;
  }
  .image,
  .description {
    width: 100%;
    text-align: center;
    height: auto;
  }
  .image {
    margin-top: 12px;
  }
  .description {
    margin-bottom: 12px;
  }
}
#globalMsgBoxDetails {
  top: 50px !important;
  height: 500px;
  overflow-y: scroll;
  text-align: left;
  background-color: #fff;
  margin: 0 0 3rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 2px;
  position: relative;
  color: #0a0a0a;
}

footer {
  text-align: right;
}

.tablewrapper {
  overflow-x: auto;
}

table.kree {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-collapse: separate;
}
table.kree thead {
  background: #f8f8f8;
  color: #0a0a0a;
}
table.kree thead tr th {
  padding: 12px 8px;
  vertical-align: middle;
  font-weight: bold;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}
table.kree thead tr th:first-child {
  padding-left: 12px;
}
table.kree tbody tr td {
  border-top: 1px solid #ddd;
  font-size: 0.9em;
  padding: 12px 8px;
  vertical-align: middle;
}
table.kree tbody tr td:first-child {
  padding-left: 12px;
}
table.kree tbody tr td.sub-total {
  border-top: 2px solid #444;
  background-color: #f8f8f8;
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 600;
  background-color: #f8f8f8 !important;
}
table.kree tbody tr td.sub-charge {
  border-top: none;
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #f8f8f8 !important;
}
table.kree tbody tr td.grand-total {
  border-top: 6px solid #444;
  background-color: #f8f8f8;
  font-size: 1.2em;
}
table.kree tbody tr:nth-child(even) td {
  background-color: #fff;
}
table.kree tfoot {
  background: #f8f8f8;
  color: #0a0a0a;
}

form.fullPage {
  margin-top: 32px;
}
@media only screen and (min-width: 40em) {
  form.fullPage label {
    text-align: right;
  }
}
form.fullPage .Zebra_DatePicker_Icon {
  display: none;
}

ul.tabs {
  list-style: none;
  border-bottom: none;
  display: block;
  height: auto;
  padding: 0;
  margin-bottom: 40px;
  margin-left: 0px;
}
@media only screen and (min-width: 64em) {
  ul.tabs {
    border-bottom: solid 1px #039be5;
    height: 40px;
  }
}
ul.tabs .tab-title {
  display: block;
  float: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  ul.tabs .tab-title {
    float: left;
  }
}
ul.tabs .tab-title a {
  color: #6f6f6f;
  display: block;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  padding: 0px;
}
@media only screen and (min-width: 64em) {
  ul.tabs .tab-title a {
    padding: 0 40px;
  }
}

.tabs .tab-title.active a {
  cursor: default;
  color: #039be5;
  border-bottom: 2px solid #039be5;
}

.collapse_row {
  display: none;
}

#kree_faq_content h2 {
  margin: 0 0 36px 0;
}
#kree_faq_content a {
  font-size: 1.4rem;
  color: #000;
}
#kree_faq_content .right-arrow {
  width: 20px;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: -2px;
}
#kree_faq_content .panel {
  border-bottom: 1px solid #ccc;
}
#kree_faq_content .panel:last-child {
  border-bottom: none;
}
#kree_faq_content .panel-title {
  position: relative;
}
#kree_faq_content .panel-question {
  padding-left: 24px;
}
#kree_faq_content .panel-body {
  margin-left: 0;
  padding-left: 24px;
  padding-top: 16px;
}
#kree_faq_content .panel-group .panel {
  margin-bottom: 36px;
  padding-bottom: 24px;
}

ul.list-testimonies {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list-testimonies li p span {
  padding: 0 0 0 10px;
  font-weight: 900;
}

#testimonials {
  background-color: rgb(255, 255, 255);
  padding: 36px 24px 24px 98px;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.014), 0 5px 60px -2px rgba(0, 0, 0, 0.04), 0 1px 5px 0 rgba(0, 0, 0, 0.012);
  position: relative;
  margin: 24px;
  border-radius: 8px;
  background-image: url("//www.kreetiv.net/core/img/icon-testimony.png");
  background-repeat: no-repeat;
  background-position: 24px 36px;
}
#testimonials .testimony_message p {
  font-family: "Caveat", cursive;
  font-size: 2rem;
}
#testimonials .testimony_name {
  text-align: right;
  font-weight: bold;
}
#testimonials .viewAllTestimonies {
  text-align: center;
  margin-top: 36px;
}

ul.list-testimonies-all {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.list-testimonies-all li {
  border-bottom: 1px solid #efefef;
  padding-left: 72px;
  background-image: url("//www.kreetiv.net/core/img/icon-testimony.png");
  background-repeat: no-repeat;
  background-position: 0% 0%;
  margin: 36px 0;
}
ul.list-testimonies-all li:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}
ul.list-testimonies-all li p.testimony_name {
  text-align: right;
  font-weight: 600;
  font-style: italic;
}

.required:after {
  content: "*";
  color: red;
}

.errormsg {
  color: red;
}

#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

#brsModal {
  width: 450px;
  padding: 15px 15px 0 15px;
  display: none;
  background: #FFF;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.7);
}

.paymentelm {
  display: inline;
  width: 50%;
  position: relative;
  bottom: 7px;
}

.price-breakdown {
  border-collapse: unset;
  font-size: 15px;
  line-height: 10px;
  margin-bottom: 0px;
}

.price-breakdown tbody td {
  padding-left: 0rem;
  padding-right: 0rem;
}

.price-breakdown tbody tr:nth-child(even) {
  background-color: transparent;
}

.price-breakdown tbody tr td:nth-child(2) {
  float: right;
}

img {
  display: inline-block !important;
}

.button-group .button {
  margin: 0 0.25rem;
}

.button {
  background-color: #2368AF;
}

.button-group.secondary .button {
  background-color: #208ABE;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.button-group.secondary .button:hover {
  background-color: #578488;
  color: #fff;
}

#prs-cms-title {
  margin-bottom: 32px;
}
#prs-cms-title h1 {
  font-size: 3rem;
  margin: 0 0 0 0;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1;
}

#prs-cmd-body p, #kree_faq_content p {
  margin: 0 0 1.2rem 0;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(0deg, rgba(59, 151, 104, 0.2) 33%, #3b9768 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=global.v2.css.map */
