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

Primary style

-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/**::after, *::before {
    content: '';
}*/
.cd-panel::after,.cd-panel-close::after, .cd-panel-close::before,.cd-panel-back::after, .cd-panel-back::before {
    content: '';
}

.cd-main-content {
    text-align: center;
}

.topPanelItem .cd-main-content h1 {
    font-size: 20px;
    font-size: 1.25rem;
    color: #64788c;
    padding: 4em 0;
}

.topPanelItem .topPanelValue {
    float: right;
    text-align: right;
    color: #333;
    margin-right: 20px;
    font-size: 13px;
}
.topPanelItem .topPanelValue > span{
    white-space: break-spaces;
}

.new-sections .cd-btn {
    padding: 20px 5px;
    cursor: pointer;
}

.new-sections .cd-btn:hover {
    background: #eeeeee;
}

.cd-main-content .cd-btn {
    position: relative;
    display: inline-block;
    padding: 1em 2em;
    background-color: #89ba2c;
    color: #ffffff;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 50em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.no-touch .cd-main-content .cd-btn:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1170px) {
    .cd-main-content h1 {
        font-size: 32px;
        font-size: 2rem;
    }
    /*.topPanelItem .topPanelValue {
        width: 49%;
    }*/
}

.cd-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.6s;
    -moz-transition: visibility 0s 0.6s;
    transition: visibility 0s 0.6s;
    z-index: 999;
}

.cd-panel::after {
    /* overlay layer */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s;
    backdrop-filter: blur(5px);
}

.cd-panel.is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.cd-panel.is-visible::after {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: background 0.3s 0s;
    -moz-transition: background 0.3s 0s;
    transition: background 0.3s 0s;
}

.cd-panel.is-visible .cd-panel-close::before {
    -webkit-animation: cd-close-1 0.6s 0.3s;
    -moz-animation: cd-close-1 0.6s 0.3s;
    animation: cd-close-1 0.6s 0.3s;
}

.cd-panel.is-visible .cd-panel-close::after {
    -webkit-animation: cd-close-2 0.6s 0.3s;
    -moz-animation: cd-close-2 0.6s 0.3s;
    animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@-moz-keyframes cd-close-1 {
    0%, 50% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(45deg);
    }
}

@keyframes cd-close-1 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@-webkit-keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
    }
}

@-moz-keyframes cd-close-2 {
    0%, 50% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(-45deg);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.cd-panel-header {
    position: fixed;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
/ / box-shadow: 0 1 px 1 px rgba(0, 0, 0, 0.08);
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
}

.cd-panel-header h1 {
    font-weight: bold;
    color: #000;
    /*padding-left: 5%;*/
    padding-left: 7%;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 16px;
}

.from-right .cd-panel-header, .from-left .cd-panel-header {
    top: -50px;
}

.from-right .cd-panel-header {
    right: 0;
}

.from-left .cd-panel-header {
    left: 0;
}

.is-visible .cd-panel-header {
    top: 0;
    -webkit-transition: top 0.3s 0.3s;
    -moz-transition: top 0.3s 0.3s;
    transition: top 0.3s 0.3s;
}

.cd-panel-footer {
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    z-index: 12;
}
/* .cd-panel-footer a {
    display: block;
    padding: 15px 10px;
    background: #eee;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
} */
.cd-panel-footer a:hover {
    color: white;
    background: #333;
}
@media only screen and (min-width: 510px) {
    .cd-panel-header {
        width: 505px;
    }
    .cd-panel-container {
        width: 505px !important;
      }

}

@media only screen and (min-width: 768px) {
    .cd-panel-header {
        width: 505px;
    }

}

@media only screen and (min-width: 1170px) {
    .cd-panel-header {
        width: 505px;
    }

    .own-design .cd-panel-header, .own-design .cd-panel-container {
        width: 38%;
    }
}

.cd-panel-close,.cd-panel-back {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    /* image replacement */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    cursor: pointer;
}

.cd-panel-close::before, .cd-panel-close::after,.cd-panel-back::before, .cd-panel-back::after {
    /* close icon created in CSS */
    position: absolute;
    top: 22px;
    left: 20px;
    height: 3px;
    width: 20px;
    background-color: #424f5c;
    /* this fixes a bug where pseudo elements are slighty off position */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-panel-close::before,.cd-panel-back::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-panel-close::after,.cd-panel-back::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.no-touch .cd-panel-close:hover,.no-touch .cd-panel-back:hover {
    background-color: #424f5c;
}

.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after,.no-touch .cd-panel-back:hover::before, .no-touch .cd-panel-back:hover::after {
    background-color: #ffffff;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.no-touch .cd-panel-close:hover::before,.no-touch .cd-panel-back:hover::before {
    -webkit-transform: rotate(220deg);
    -moz-transform: rotate(220deg);
    -ms-transform: rotate(220deg);
    -o-transform: rotate(220deg);
    transform: rotate(220deg);
}

.no-touch .cd-panel-close:hover::after,.no-touch .cd-panel-back:hover::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-panel-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.from-right .cd-panel-container {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.from-left .cd-panel-container {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.is-visible .cd-panel-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

@media only screen and (min-width: 768px) {
    .cd-panel-container {
        width: 505px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-panel-container {
        width: 505px;
    }
}

.cd-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*padding: 50px 5%;*/
    padding: 50px 7%;
    overflow: auto;
    /* smooth scrolling on touch devices */
    -webkit-overflow-scrolling: touch;
}

.cd-panel-content-heading {
    margin-bottom: 15px;
}

.cd-panel-content p {
    font-size: 14px;
    font-size: 0.875rem;
    color: #424f5c;
    line-height: 1.4;
    margin: 2em 0;
}

.cd-panel-content p:first-of-type {
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .cd-panel-content p {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.6;
    }
}

.new-sections ul {
    padding: 0;
    margin: 0;
}

.new-sections ul li {
    border-bottom: solid 1px #ddd;
    /*padding: 20px 0;*/
}

.topPanelName {
    font-size: 15px;
    color: #000;
    font-weight: bold;
    width: 100px;
    display: block;
    word-break: break-word;
}

.product-info {
    padding: 0;
}

.ptbox {
    padding: .5rem;
    /* border: 2px solid #eae8e4; */
    margin-bottom: 20px;
    position: relative;
    border: 1px dashed #3bb77e;
    background: #f2faf6;
}

.ptbox:hover, .ptbox.selected {
    border-color: #000;
}

.name {
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.4285714285714286;
    letter-spacing: .4px;
    display: block;
    margin: .5rem 0 .5rem 0;
    font-size: 16px !important;
    white-space: nowrap;
}

.product-sidebar {
    background: #fff;
}

.product-gallery {
    width: 675px;
}

.productDescription {
    font-size: 13px;
    line-height: 22px;
}

.productDescription .foldArea {
    overflow: hidden;
    position: relative;
    height: 90px;
    margin-bottom: 1.5rem;
}

.productDescription.folded .foldArea::after {
    background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 4rem;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.manageFold {
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: inherit;
    text-transform: inherit;
}

.productDescription.folded .infoLess {
    display: none;
}

.productDescription.unfolded .infoMore {
    display: none;
}

.ptbox .colorbox__theme__single {
    height: auto;
    width: auto;
}

.colorbox__tab {
    margin-bottom: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {

    /*.cd-panel-content {
        padding: 70px 0%;
    }*/

    .product-gallery {
        width: 100%;
    }

    .topPanelName {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 10000px) {
	.product-gallery {width: 100%; max-width: inherit;}
}

.new-home-featured {padding: 0;}






.cd-panel-footer a {
    display: block;
    padding: 15px 10px;
    background: #3bb77e;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
  }
  .cd-panel-header {
    border-bottom: solid 1px #ddd;
    height: 60px;
    padding: 5px; 
  }
  .cd-panel-content {
    padding: 73px 5% 50px;

  }