/* Styles tabs - start */


.cd-tabs {
  position: relative;
  width: 100%;
  margin: 2em auto;
}

@supports (background: linear-gradient(to left, #000, #000)) or (background: -webkit-linear-gradient(to left, #000, #000)) {
  /* if linear-gradient is supported */
  .cd-tabs::after {
    /* subtle gradient layer on top right of the tabbed navigation- to indicate it's possible to scroll */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(#f8f7ee), to(rgba(248, 247, 238, 0)));
    background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-tabs.cd-tabs--scroll-ended::after {
    /* class added in JavaScript - remove the gradient layer when it's no longer possible to scroll */
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
}

.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  -webkit-box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
          box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}

@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }
  .cd-tabs nav {
    /* position: absolute; */
    position: relative;
    /* top: 0;
    left: 0; 
    height: 100%; */
    float: none;
    -webkit-box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
            box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
    z-index: 1;
  }
}

@media only screen and (min-width: 960px) {
  .cd-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.cd-tabs__navigation {
  width: 360px;
}

.cd-tabs__navigation:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-tabs__navigation li {
  float: left;
}

.cd-tabs__navigation a {
  position: relative;
  /* display: block; */
  display: inline-block;
  height: 100px;
  /* width: 60px; */
  width: 77%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c3c2b9;
  padding-top: 15px;
  margin-left: 6px;
  margin-right: 20px;
}


.cd-tabs__navigation a:hover {
  color: #29324e;
  /* background-color: rgba(233, 230, 202, 0.3); */
  background-color: transparent;
}

.cd-tabs__navigation a.cd-selected {
 -webkit-box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
-moz-box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-right: 20px;
  
  color: #29324e;
}


.cd-tabs__navigation a[data-content='new']::before {
  background-position: 0 0;
}

.cd-tabs__navigation a[data-content='gallery']::before {
  background-position: -16px 0;
}

.cd-tabs__navigation a[data-content='store']::before {
  background-position: -32px 0;
}

.cd-tabs__navigation a[data-content='settings']::before {
  background-position: -48px 0;
}

.cd-tabs__navigation a[data-content='trash']::before {
  background-position: -64px 0;
}

.cd-tabs__navigation a[data-content='inbox']::before {
  background-position: -80px 0;
}

.cd-tabs__navigation a[data-content='new'].cd-selected::before {
  background-position: 0 -16px;
}

.cd-tabs__navigation a[data-content='gallery'].cd-selected::before {
  background-position: -16px -16px;
}

.cd-tabs__navigation a[data-content='store'].cd-selected::before {
  background-position: -32px -16px;
}

.cd-tabs__navigation a[data-content='settings'].cd-selected::before {
  background-position: -48px -16px;
}

.cd-tabs__navigation a[data-content='trash'].cd-selected::before {
  background-position: -64px -16px;
}

.cd-tabs__navigation a[data-content='inbox'].cd-selected::before {
  background-position: -80px -16px;
}

@media only screen and (min-width: 768px) {
  .cd-tabs__navigation {
    /* move the nav to the left on medium sized devices */
    /* width: 80px; */
    width: 100%;
    float: left;
  }
  .cd-tabs__navigation a {
    /* height: 80px;
    width: 80px;
    padding-top: 46px; */
  }
  .cd-tabs__navigation a.cd-selected {
 -webkit-box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
-moz-box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
box-shadow: 0px 3px 12px 6px rgba(233,233,233,0.45);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-right: 20px;
  }
  .cd-tabs__navigation a::before {
    top: 24px;
  }
}



@media only screen and (min-width: 960px) {
  .cd-tabs__navigation {
    /* tabbed navigation on top on big devices */
    width: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .cd-tabs__navigation a {
    height: 90px;
    line-height: 60px;
    width: 100%;
    max-width: 220px;
    text-align: left;
    font-size: 0.9rem;
    padding: 0 2.1em 0 1.3em;
    color: #000;
  }
  .cd-tabs__navigation a.cd-selected {
 -webkit-box-shadow: 0px -5px 12px 1px rgba(233,233,233,0.85);
-moz-box-shadow: 0px -5px 12px 1px rgba(233,233,233,0.85);
box-shadow: 0px -5px 12px 1px rgba(233,233,233,0.85);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-right: 20px;
margin-left: 6px;
background-color: #fff;
  }
  .cd-tabs__navigation a::before {
    top: 50%;
    margin-top: -8px;
    margin-left: 0;
    left: 40px;
  }
}

@media only screen and (min-width: 1100px) {
  .cd-tabs__navigation a {
    max-width: 210px;
    height: 105px;
  }
}

@media only screen and (min-width: 1230px) {
  .cd-tabs__navigation a {
    max-width: 250px;
  }
}

@media only screen and (min-width: 1400px) {
  .cd-tabs__navigation a {
    max-width: 275px;
  }
}



.cd-tabs__content {
  background: #ffffff;
}

.cd-tabs__content li {
  display: none;
  padding: 1.4em;
}

.cd-tabs__content li.cd-selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
          animation: cd-fade-in 0.5s;
}

.cd-tabs__content li p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #7f8c8d;
  margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
  .cd-tabs__content {
    min-height: 480px;
  }
  .cd-tabs__content li {
    padding: 2em 2em 2em 7em;
  }
}

@media only screen and (min-width: 960px) {
  .cd-tabs__content {
    min-height: 0;
    margin-top: -36px;
  }
  .cd-tabs__content li {
    padding: 3em;
    padding-top: 0px;
  }
  .cd-tabs__content li p {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .cd-tabs__content {
    min-height: 0;
    margin-top: -45px;
  }
}


@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* demo style */
.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-nugget-info a {
  width: 160px;
  position: relative;
  font-size: 14px;
  color: #6375ad;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.cd-nugget-info a:hover {
  opacity: .8;
}
.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}
.cd-nugget-info span svg {
  display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
  fill: #6375ad;
}


ul.cd-tabs__navigation li::before,
li.cd-selected::before {
  background: none !important;
}
section#tabs-new p li::before {
background: none !important;
}


@media only screen and (max-width: 1005px) {
.cd-tabs__navigation a.cd-selected {
 -webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: none;
margin-right: 20px;
margin-left: 6px;
background-color: #fff;
  }
}

@media screen and (max-width: 1000px) {}
.cd-tabs__navigation a {
  height: 100px;
}
}




/* Styles tabs - end */
