  /* --------------------------------

Main components

-------------------------------- */
.cd-tabs {
  position: relative;
  width: 100%;
  max-width: 1010px;
  /*margin: 2em auto;*/
  text-shadow: none;
  margin-bottom: 20px; }

.cd-tabs:after {
  content: "";
  display: table;
  clear: both; }

.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  background: -webkit-linear-gradient(right, #f8f7ee, 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;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s; }

.no-cssgradients .cd-tabs::after {
  display: none; }

.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s; }

.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #6ebf4b url("images/greenHatch.png");
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06); }

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

.cd-tabs-navigation {
  width: 100%; }

.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both; }

.cd-tabs-navigation li {
  border: solid #67B047 2px;
  font-size: .9em;
  float: left; }

.cd-tabs-navigation a {
  position: relative;
  display: block;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  color: #ffffff;
  padding-top: 4px; }

.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3); }

.cd-tabs-navigation a.selected {
  background-color: #ffffff !important;
  /*box-shadow: inset 0 2px 0 #f05451;   removed by gbc*/
  color: #29324e; }

.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  top: 12px;
  left: 50%;
  margin-left: -10px;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url("/themes/custom/roosevelt/dist/img/vicons.svg");
  background-repeat: no-repeat; }

.cd-tabs-navigation a[data-content='inbox']::before {
  background-position: 0 0; }

.cd-tabs-navigation a[data-content='new']::before {
  background-position: -20px 0; }

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

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

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

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

.cd-tabs-navigation a[data-content='inbox'].selected::before {
  background-position: 0 -20px; }

.cd-tabs-navigation a[data-content='new'].selected::before {
  background-position: -20px -20px; }

.cd-tabs-navigation a[data-content='gallery'].selected::before {
  background-position: -40px -20px; }

.cd-tabs-navigation a[data-content='store'].selected::before {
  background-position: -60px -20px; }

.cd-tabs-navigation a[data-content='settings'].selected::before {
  background-position: -80px -20px; }

.cd-tabs-navigation a[data-content='trash'].selected::before {
  background-position: -100px -20px; }

@media only screen and (min-width: 960px) {
  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    background: #6ebf4b url("images/greenHatch.png");
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06); }
  .cd-tabs-navigation a {
    height: 30px;
    line-height: 30px;
    width: auto;
    text-align: left;
    padding: 0 1.0em 0 1.0em; }
  .cd-tabs-navigation a.selected {
    /*box-shadow: inset 0 2px 0 #f05451; removed by gbc */ }
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px; } }

.cd-tabs-content {
  background: #ffffff; }

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

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

.cd-tabs-content li p {
  line-height: 1.6;
  color: #606060;
  margin-bottom: 2em; }

@media screen and (max-device-width: 500px) and (max-device-height: 736px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  /* Insert styles here */
  .cd-tabs-navigation li {
    width: 50% !important; } }

/* No greater than 1100px, no less than 960px */
@media (max-width: 1100px) and (min-width: 960px) {
  .cd-tabs-navigation li {
    width: 50% !important;
    text-align: center !important; }
  .cd-tabs-navigation a {
    text-align: center !important; } }

@media only screen and (min-width: 960px) {
  .cd-tabs-content {
    min-height: 0; }
  .cd-tabs-content li {
    padding: 2em; }
  .cd-tabs-content li p {
    /*font-size: 16px;
    font-size: 1rem;*/ } }

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

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

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