* { box-sizing: border-box; }

body, html {
    padding: 0;
    margin: 0;
    height: 100%;
}

.boxes {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    margin: 0 -2px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 80px;
}

.boxes__img {
    flex: 1;
    flex-basis: 33.33333333%;
    padding: 0 2px;
    padding: 12px 6px;
    overflow: hidden;
    opacity: 0;
    position: relative;
    margin-bottom: 12px;
    padding-top: 0;
    transition: opacity 0.3s, margin-bottom 0.2s;
}

@media (max-width: 730px) {
    .boxes__img {
        flex-basis: 50%;
    }
}

.boxes__img .boxes__overlay {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  	z-index: 2;
  	cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.2s ease-in-out;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  	flex-direction: column;
  	align-content: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
	color: #fff;
}

@media (max-width: 580px) {
	.boxes__img .boxes__overlay {
  		padding: 16px;
	}
  
  .boxes__overlay h4 {
    font-size: 1em;
    
  }
  .boxes__overlay p {
    font-size: 0.9em;
    
  }
}

@media (max-width: 450px) {
	.boxes__img .boxes__overlay {
  		padding: 6px;
	}
}

.boxes__img:hover .boxes__overlay {
    opacity: 1;
}

.boxes__overlay p {
  	display: inline-block;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
  	position: relative;
    text-align: center;
    margin: 0 auto;
    font-weight: 800;
  	
}

.box-close {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2;
    cursor: pointer;
}

.box-close:before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    left: 2px;
}

.box-close:after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 11px;
    right: 2px;
}
.boxes.is-loaded .boxes__img {
    opacity: 1;
}

.boxes__img img {
    position: relative;
    height: 100%;
    width: 100%;
    align-self: center;
    cursor: pointer;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.boxes__img, .boxes__img img {
    height: 200px;
}

.boxes__img div {
    display: block;
    height: 100%;
    background: #999;
}

.boxes__img .boxes__img-wrap {
  	position: relative;
    margin-top: -3px;
}

.box-text p {
    margin-bottom: 10px;
}

.box-q {
    float: left;
    width: 35%;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 18px;
    vertical-align: middle;
    padding-right: 15px;
/*     color: rgba(255, 255, 255, 0.7); */
  	color: #000;
  	font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif !important;
}

.box-a {
    float: left;
    width: 65%;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
	font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif !important;
}

.box-interview:after {
    content: '';
    display: block;
    clear: both;
}

.box-interview a {
    word-wrap: break-word;
}


.box-interview .box-a a {
  color: blue;
}


/* Attached Box */
.attached {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    position: relative;
    transition: max-height 0.2s;
}

.attached.shown {
    max-height: 1000px;
    overflow: visible;
    margin-bottom: 12px;
    /*margin-top: -3px;*/
}

/* keeping images kinda like squares */
/*@media (max-width: 1050px) {
    .attached.shown {
        height: 260px;
    }
}

@media (max-width: 1000px) {
    .attached.shown {
        height: 440px;
    }
}

@media (max-width: 960px) {
    .attached.shown {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .attached.shown {
        height: 300px;
    }
}

@media (max-width: 720px) {
    .attached.shown {
        height: 260px;
    }
}

@media (max-width: 660px) {
    .attached.shown {
        height: 170px;
    }
}*/

.attached__arrow {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #dfe0db;
    position: absolute;
    top: -10px;
    right: 0;
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    clear: both;
    transition: left 0.3s ease-in-out;
}

.attached__content {
    /*height: 100%;*/
    margin: 6px;
    margin-top: 0;
    background: #dfe0db;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.attached__column {
    height: 100%;
    position: relative;
    padding: 12px;
}

.attached__column-left {
    flex-basis: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 45%;
}

.attached__column-right {
    flex-basis: 55%;
    color: #000;
}

@media (max-width: 730px) {
    .attached__column-left {
        display: none;
    }
    .attached__column-right {
        flex-basis: 100%;
    }
}


.right-content {
    padding: 12px;
    padding-left: 0;
}

.attached img {
    position: relative;
    height: 100%;
    width: 100%;
    max-height: 100%;
    align-self: center;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
    background-size:     cover;
}

@media (min-width: 970px) {
    .attached img {
        /*height: auto;
        max-height: 100%;
        width: 100%;*/
    }

    .attached__column {
        min-height: 500px;
    }
}

/* ---- OVERRIDES ---- */

.gt-brand-selection-link a {
    float: left;
    display: block;
    padding: 7px;
}

.gt-brand-selection-link:after,
.wrapper:after {
    content: '';
    display: block;
    clear: both;
}

.gt-brand-selection-link img {
    height: 15px;
    width: auto;
    margin-right: 4px;
}

.gt-brand-selection-link > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-width: 98px;
}

.gt-brand-selection-link > * {
    align-self: center;
}

.info-bar {
    padding: 0 !important;
}

.header-message,
.header-search__wrapper {
    padding-top: 5px;
}

.header-desktop-cart {
    left: 0;
    background: url(//cdn.shopify.com/s/files/1/0927/4496/t/5/assets/cart.svg?13578920463132328063) no-repeat left 0 center;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 25px;
    height: 25px;
    background-position-y: 27px;
  	min-width: 86px;
}

.header-desktop-cart .cartCost {
	font-size: 10px;
}
/* make the header always at top */
.header__wrapper {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
}

.p-b-70 {
    padding-bottom: 70px;
}


.gt-text-page, .gt-cta-page,
.text-page, .cta-page {
    padding-bottom: 20px;
    background-color: #f7f7f7;
}

.gt-rich-page {
    background: url("https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/grande-white-logo.jpg") no-repeat top center;
    background-size: cover;
    min-height: 600px;
    padding-top: 60px;
}

.gt-rich-page.gina-page .page-inner{
    background: url("https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/gina_prod.jpg") no-repeat bottom center;
    background-size: auto 85%;
    min-height: 800px;
    margin-bottom: 60px;
}

.gt-interactive img {
    max-width: 100%;
    display: block;
}

.gt-interactive {
    padding-bottom: 60px;
}

.interactive-img {
    position: relative;
}

.controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #000;*/
}

.int-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #b6a182;
    color: #fff;
    border-radius: 50%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    font-size: 38px;
    cursor: pointer;
}

.int-btn:hover {
    background: #9b8b74;
}

@media (max-width: 820px) {
    .int-btn {
        width: 24px;
        height: 24px;
        font-size: 28px;
    }
}

.interactive-top {
    top: 5%;
    left: 50%;
    font-family: monospace;
}

.interactive-middle {
    top: 47%;
    left: 46%;
}

.interactive-bottom {
    bottom: 16%;
    right: 37%;
}

.interactive-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}

.interactive-overlay p {
    position: absolute;
    bottom: 15px;
    color: #fff;
    left: 0;
    right: 0;
    text-align: center;
}

.non-interactive .interactive-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.interactive-overlay img {
    max-width: 60%;
    max-height: 80%;
    display: block;
    padding-bottom: 30px;
}

@media (max-width: 1000px) {
    .interactive-overlay img {
        max-width: 80%;
        max-height: 90%;
    }
}

@media (max-width: 700px) {
    .interactive-overlay img {
        max-width: 90%;
        max-height: 94%;
    }
}

body.non-interactive {
    overflow: hidden;
}

.gt-rich-page.gina-page {
    background: #fff;
    padding-top: 80px;
}

.gt-rich-page .page-margin {
    margin-top: 0;
}

.gt-video-box-page .grid__item, .gt-designed-page .grid__item, .gt-cta-page .grid__item {
    text-align: center;
}

.gt-video-box-page {
    padding-bottom: 80px;
}

.gt-parallax-page {
    background: url("https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/whatsinbox.jpg") no-repeat center center;
    min-height: 500px;
    /*padding-top: 60px;*/
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    /*background-size: auto 200%;*/
    /*transform: translate3d(0,0,0);*/
}

.wrapper.gt-gif-page {
    padding: 0 !important;
}

.gt-gif-page img {
    display: block;
    margin: 0 auto;
}

.page-margin.gt-gif-margin {
    margin-top: 0;
}

.gt-cta-page {
    padding-bottom: 80px;
}

.gt-cta-page h3 {
    font-size: 16px;
    font-weight: bold;
    color: #58585a;
}

.cta-text {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #58585a;
    letter-spacing: 1px;
}

.gt-cta-page a,
.getit {
    display: inline-block;
    background: #58585a;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    min-width: 340px;
    padding: 10px 0px;
    margin: 0 auto;
    margin-top: 18px;
    text-align: center;
	font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif !important;
	padding: 12px 20px;
    font-size: 1.1em;
}

.getit:hover {
    color: #fff;
}

.gt-designed-page {
    background-color: #f7f7f7;
    padding-bottom: 100px;
}

.gt-designed-page img,
.designedby img {
    width: 140px;
}

.designedby {
    text-align: center;
    padding-bottom: 60px;
}

.gt-icon-list h5, .gt-icon-list p {
    color: #58585a;
}

.gt-icon-list h5 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.gt-icon-list p {
    margin-bottom: 0;
}

.gt-icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.gt-icon-list .gt-icon-list__first img { /* adjust for icon's small size */
    margin-right: 58px;
    width: 40px;
}

.gt-icon-list img {
    width: 27px;
    align-self: center;
    margin-right: 74px;
}

.gt-icon-list li > * {
    align-self: center;
}

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

.gt-inner-bottom {
    margin-top: 20px;
    margin-bottom: 30px;
}

.gt-inner-bottom.wrapper {
    margin: 0 auto;
    margin-left: -30px;
}

.home__subtitle.gt-subtitle-no-border {
    margin-bottom: 15px;
    padding-bottom: 0;
}

.home__subtitle.gt-subtitle-no-border::after {
    content: normal;
    margin: auto;
    width: 0;
    height: 0;
}

.floating-item {
    width: 180px;
    margin-left: 40px;
}

.floating-item__right {
    margin-left: 0;
    margin-right: 40px;
}

.grid__with-floats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.floating-item div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.floating-item span {
    opacity: 0.5;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 1px;
}

.floating-item span.is-bold {
    background: rgba(255, 255, 255, 0.2);
    opacity: 0.75;
    font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 1em;
}

.gt-text-page .page-margin,
.gt-cta-page .page-margin {
    width: 85%;
    margin: 0 auto;
    padding-top: 80px;
}

.gt-set-page {
    width: 85%;
    margin: 0 auto;
    padding-top: 80px;
}

@media (min-width: 300px) {
    .gt-text-page .page-margin,
    .gt-cta-page .page-margin,
    .gt-set-page {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1420px) {
    .gt-text-page .page-margin,
    .gt-cta-page .page-margin,
    .gt-set-page {
        width: 90%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.gray-page {
    background-color: #f7f7f7;
}

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

.gt-wrapper {
    padding-bottom: 80px;
}



@media (min-width: 200px) {
    .wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.gt-cta-page .page-margin .grid__item:first-of-type {
    padding-left: 0;
}

.grid-text {
    width: 60%;
    text-align: center;
    margin: 0 auto 50px;
}

.friends-text {
    width: 40%;
}

@media (max-width: 1120px) {
    .friends-text {
        width: 60%;
    }
}

@media (max-width: 680px) {
    .friends-text {
        width: 80%;
    }
}

.text p {
    opacity: 0.7;
}

.large--one-quarter .name_wrapper {
    font-weight: 600;
    color: #58585a;
}

.product__related.gina-mod {
    margin-bottom: 0;
}

.gina-mod .large--two-fifths,
.gina-mod .large--three-fifths {
    padding: 0 30px;
}

@media (max-width: 767px) {
    .gina-mod .large--two-fifths,
    .gina-mod .large--three-fifths {
        padding: 0;
    }
}
.grid-flexed {
    padding-top: 30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .grid-flexed {
        display: block;
    }
    .gina-mod .large--three-fifths {
        padding-bottom: 40px;
    }

    .grid-flexed {
        border-bottom: 1px solid #eee;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    .grid-flexed:last-of-type {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.grid-img img {
    max-height: 420px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.grid-img p {
    margin-top: 28px;
    margin-bottom: 60px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
@media (max-width: 860px) {
    .grid-img p {
        letter-spacing: 0.5px;
    }
}

@media (max-width: 650px) {
    .grid-img p {
        /*letter-spacing: 0px;*/
    }
}

@media only screen and (max-width: 620px) {
    .gt-inner-bottom .small--one-half {
        width: 50%;
    }
}


.product-description.gina-mod {
    text-align: justify;
}

.page-wrapper {
    margin-top: 90px;
}

.gt-white-page {
    background: #fff;
}

.media-panel-fw {
    height: 580px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.media-panel-fw.media-panel-mw {
    height: 420px;
}

.media-panel, .media-panel-static {
    height: 780px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.media-panel-static {
    height: 520px;
}

.media-item, .media-item-static {
    align-self: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}

.media-item-mw {
    align-self: center;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}

.media-item-mw > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 420px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.media-item-fw {
    align-self: center;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}

.media-item-fw > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*height: 600px;*/
    height: 580px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.media-item-static {
    opacity: 1;
    background-color: #000;
}

.media-item.is-active {
    opacity: 1;
}

.media-item > div, .media-item-static > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*height: 600px;*/
    height: 780px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.media-item > div {
  	height: auto;
}

.media-item-static > div {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    height: 520px;
}

.panel-controls, .gallery-bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: center;
    margin-top: -60px;
}

.gallery-bullets {
    margin-top: -20px;
}

.about-panel {
    height: 820px;
    display: -webkit-box;
    display: -ms-flexbox;
	display: -webkit-flex; 
    display: flex;
    position: relative;
}

@media (max-width: 1450px) {
    .about-panel {
        height: 720px;
    }
}

@media (max-width: 1300px) {
    .about-panel {
        height: 640px;
    }
}

@media (max-width: 1200px) {
    .about-panel {
        height: 600px;
    }
}

@media (max-width: 1120px) {
    .about-panel {
        height: 580px;
    }
}

@media (max-width: 1030px) {
    .about-panel {
        height: 520px;
    }
}

@media (max-width: 950px) {
    .about-panel {
        height: 480px;
    }
}

@media (max-width: 830px) {
    .about-panel {
        height: 420px;
    }
}

@media (max-width: 740px) {
    .about-panel {
        height: 370px;
    }
}

@media (max-width: 670px) {
    .about-panel {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .about-panel {
        height: 305px;
    }
}

@media (max-width: 530px) {
    .about-panel {
        height: 270px;
    }
}


@media (max-width: 500px) {
    .about-panel {
        height: 258px;
    }
}

@media (max-width: 500px) {
    .about-panel {
        height: 258px;
    }
}

@media (max-width: 480px) {
    .about-panel {
        height: 248px;
    }
}

@media (max-width: 460px) {
    .about-panel {
        height: 235px;
    }
}

@media (max-width: 440px) {
    .about-panel {
        height: 225px;
    }
}

@media (max-width: 420px) {
    .about-panel {
        height: 216px;
    }
}

.about-item {
    align-self: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
}

.about-item > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*height: 800px;*/
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.shopify-preview-bar {
    display: none !important;
}

.panel-bullet, .gallery-bullet {
    width: 12px;
    height: 12px;
    background: #9e9f9e;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    margin: 24px 7px;
}

.gallery-bullet {
    width: 6px;
    height: 6px;
    margin: 26px 7px;
}

.panel-bullet.is-active,
.panel-bullet:hover {
    background: #f1f1f1;
}

.gallery-bullet.is-active,
.gallery-bullet:hover {
    background: #000;
}

.grid-specs {
    padding-top: 30px;
}

.qa-page {
    padding-top: 60px;
}

.qa-hero {
    text-align: center;
    padding-bottom: 80px;
}

.qa-hero a {
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid #1a1919;
    text-align: center;
    color: #1a1919;
    font-size: 15px;
}


@media (max-width: 768px) {
    .qa-hero a {
        display: inline-block;
        margin-bottom: 30px;
    }

    .qa-hero.gina-mod > .wrapper:last-of-type {
        padding-top: 0;
    }
}

.qa-panel__heading i {
    width: 16px;
    height: 16px;
    text-align: center;
    margin-right: 12px;
    line-height: 15px;
    border-radius: 50%;
    border: 1px solid #000;
}

.qa-panel__body {
    color: #666;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(50px);
    transition: all 0.3s;
}

.qa-panel__body div {
    padding: 0px 30px 30px;
}

.qa-panel.is-active .qa-panel__body {
    transform: translateY(0px);
    /*max-height: 500px;*/
    height: auto;
    opacity: 1;
}

.qa-panel i.fa {
    transition: all 0.3s;
}

.qa-panel.is-active i.fa {
    background: #000;
    color: #fff;
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.qa-panel__heading {
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    cursor: pointer;
}

.qas {
    padding-bottom: 80px;
}

.qa-section {
    display: none;
}

.qa-section.is-active {
    display: block;
}

.qa-page h2.text-center {
    margin-bottom: 72px;
}

.footer-social.gina-mod {
    margin-left: -7.5px;
    padding-left: 0;
}
.footer-social.gina-mod li {
    display: block;
}

.footer-social.gina-mod li:first-child {
    margin-top: 0;
}

.footer-social.gina-mod li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.footer-social.gina-mod .icon {
    margin-right: 12px;
}

.divider-line {
    border-bottom: 1px solid #ececec;
    width: 60%;
    margin: 0 auto;
}

.footer-social {
    margin-top: 0;
    margin-bottom: 30px;
}

.gt-video-wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 80px 0;
}

.gt-product-options {
    min-height: 780px;
}

.gt-readable {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 24px;
    text-align: center;
	font-size: 1.2em;
}

@media (max-width: 600px) {
    .gt-readable {
        width: 85%;
    }
}

@media (min-width: 1250px) {
    .gt-readable.gt-tiny {
        width: 45%;
    }
}

.gt-readable.gt-tiny {
    margin-bottom: 48px;
}

.gt-page-content.gt-extended {
    margin-top: 50px;
    margin-bottom: 80px;
}

.gt-page-content {
    margin-bottom: 60px;
}

.gt-page-first-xs {
    margin-top: 60px;
}

.gt-page-first {
    margin-top: 100px;
}

.gt-top-links {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gt-top-links a {
    margin: 0 30px;
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid #1a1919;
    text-align: center;
    color: #1a1919;
    font-size: 15px;
}

@media (max-width: 770px) {
    .gt-top-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gt-top-links a {
        display: inline-block;
        margin-bottom: 12px;
    }
}

.gt-text-content {
    width: 65%;
    margin: 0 auto;
}

.gt-text-bullet {
    display: inline-block;
    font-weight: 600;
    margin-right: 8px;
    width: 100px;
}

.gt-list {
    margin: 60px 20px;
}

.gt-bg-img > div {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 84px;

}

.gt-bloggers-wrapper .gt-bloggers-inner {
	position: relative;
}

.gt-bloggers-inner {
  	position: absolute;
}


.gt-bg-img-right > div {
	right: 0 !important;
}

.gt-bg-img-right .gt-bloggers-inner {
  	right: 20%;
}

.gt-bg-img-left > div {
	left: 10% !important;
}

/* .gt-bg-img-left .gt-bloggers-inner {
  	left: 20%;
} */

.gt-bg-img > .gt-bloggers-wrapper { 
  height: auto;
/*   position: relative; */
  position: absolute;
  width: 40%;
  
}

.gt-bg-img > div h2 {
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.gt-bg-img > div p {
    color: #fff;
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 30px;
}

@media (max-width: 660px) {
  	.gt-bloggers-inner h2 {
      	font-size: 22px;
      	margin-bottom: 20px;
	}
  	.gt-bloggers-inner .gt-button-transparent {
      	padding: 10px 8px;
      	font-size: 1em;
    }
}

.gt-button {
    background: none;
    color: #0e0e0e;
    font-weight: 400;
    font-size: 1.1em;
    padding: 12px 10px;
    border: 2px solid #0e0e0e;
    text-decoration: none;
    opacity: 0.75;
}

.gt-button-default {
    background: none;
    color: #0e0e0e;
    font-weight: 400;
    font-size: 0.85em;
    padding: 12px 10px;
    border: 1px solid #0e0e0e;
    text-decoration: none;
    opacity: 0.75;
	margin-top: 20px;
}

.gt-button-transparent {
    background: none;
    color: #fff;
    font-weight: 400;
    font-size: 1.1em;
    padding: 12px 10px;
    border: 2px solid #fff;
    text-decoration: none;
}

.gt-button-transparent:hover {
    color: #fff;
}


.gt-button-transparent.gt-button-white {
    background: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    padding: 10px 26px;
    border: 2px solid #fff;
    text-decoration: none;
	font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gt-button-transparent.gt-button-white:hover {
    color: #000;
  	background: #fff;
}

.gt-button-default.gt-button-dark {
    background: none;
    color: #0e0e0e;
    font-weight: 400;
    font-size: 0.85em;
    padding: 12px 20px;
    border: 1px solid #0e0e0e;
    text-decoration: none;
    opacity: 0.75;
	margin-top: 20px;
  	font-family: "GILROY-SEMIBOLD", "Helvetica Neue" , Arial, sans-serif;
}

.gt-button-default.gt-button-dark:hover {
  	color: #fff;
  	background: #0e0e0e;
}

.gt-inline-content {
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-around;

}

.gt-inline-content > a {
    margin: 0 40px;
    font-size: 1.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid #1a1919;
    text-align: center;
    color: #1a1919;
    font-size: 15px;
}

@media (max-width: 880px) {
    .gt-inline-content {
        display: block;
        display: block;
        justify-content: center;
        /*margin-bottom: 12px;*/
    }
    .gt-inline-content a {
        display: block;
        margin-bottom: 12px;
        border-bottom: 0;
        position: relative;
    }
    .gt-inline-content a:after {
        content: '';
        display: block;
        width: 180px;
        height: 1px;
        background: #000;
        position: relative;
        bottom: -2px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.gt-inline-link {
    font-weight: bold;
    text-decoration: underline;
}

.gt-grid-item {
    float: left;
    width: 25%;
    padding: 2%;
}

@media (max-width: 700px) {
    .gt-grid-item {
        width: 33.33333333%;
    }
}

@media (max-width: 590px) {
    .gt-grid-item {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .gt-grid-item {
        width: 100%;
        padding: 2% 0;
    }
}

.gt-logos-grid .gt-grid-item {
    height: 80px;
    text-align: center;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gt-logos-grid .gt-grid-item img {
    padding: 0 12px;
    max-width: 100%;
    max-height: 78px;
}

@media (max-width: 880px) {
    .gt-logos-grid .gt-grid-item img {
        max-height: 60px;
    }
}

.gt-media-grid {
    margin: 0 auto;
}

@media (min-width: 960px) {
    .gt-logos {
        width: 65%;
    }
}
.gt-media-grid.gt-logos .gt-grid-item {
    width: 33.33333333%;
    margin: 0;
}

.gt-logos .gt-grid-item.grid-item-empty {
    width: 16.6666666%;
    min-height: 10px;
}

.gt-offset {
    padding-top: 48px;
}

@media (max-width: 750px) {
    .gt-offset {
        padding-top: 0;
    }
}

.gt-logos img {
    max-width: 80%;
    padding: 12px;

}
.gt-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    height: 260px;
    min-height: 0;
}

@media (max-width: 3000px) {
    .gt-img-wrap {
        height: 190px;
    }
    .gt-img-wrap.single-goat,
    .gt-img-wrap.single-goat-lined {
        height: 140px;
    }
}

@media (max-width: 750px) {
    .gt-media-grid.gt-logos .gt-grid-item {
        float: none;
        width: 100%;
    }

    .gt-logos img {
        max-width: 60%;
    }
    .gt-img-wrap {
        height: auto;
        padding-bottom: 24px;
    }
}

.gt-img-wrap img {
    display: block;
    align-self: center;
    max-width: 196px;
    min-height: 0;
}

.gt-img-wrap.single-goat img {
    max-width: 73px;
}

.gt-img-wrap.single-goat-lined img {
    max-width: 158px;
}

.gt-img-wrap a {
    color: #72b0d4;
    text-decoration: none;
}

.gt-grid-item .press-img-pad {
    /*padding: 0 60px;*/
}

.gt-media-grid:after {
    content: '';
    display: block;
    clear: both;
}

.gt-media-control {
    text-align: center;
    padding: 40px 0;
    /*cursor: pointer;*/
}

.gt-media-btn span {
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 1px solid #1a1919;
    padding-bottom: 0px;
    position: relative;
    font-size: 13px;
}

.gt-media-btn span:after {
    content: '';
    /*display: block;*/
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    bottom: -14px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
}

.gt-media-btn.is-active span:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
    border-top: none;
}

.gt-media-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s linear;
}

.gt-media-more.is-shown {
    max-height: 800px;
    opacity: 1;
}

.gt-media-btn {
    cursor: pointer;
    height: 50px;
    width: 100px;
    margin: 0 auto;
}

.main-content {
    margin-top: 110px;
}

@media (max-width: 629px) {
    .main-content {
        margin-top: 88px;
    }
}


@media (max-width: 577px) {
    .main-content {
        margin-top: 88px;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-top: 86px;
    }
}

.gt-contact-page {
    padding-top: 40px;
}

/* CONTACT PAGE */
.contact-select {
    margin-bottom: 32px;
    color: #000;
    text-transform: uppercase;
}
.contact-select:focus {
    border-width: 0;
    border-bottom-width: 1px;
}

.contact-form:after {
    content: '';
    display: block;
    clear: both;
}

.contact-form input, .contact-form select {
    border-width: 0;
    border-bottom-width: 1px;
    border-radius: 0;
}

.contact-form input:focus, .contact-form select:focus {
    border-width: 0;
    border-bottom-width: 1px;
    outline: 0;
    box-shadow: none;
}

.contact-form textarea:focus {
    box-shadow: none;
}


.contact-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 64px;
}

@media (max-width: 840px) {
    .contact-area {
        display: block;
    }
}

.contact-area > div:first-child {
    padding-right: 24px;
    margin-right: auto;
}

.contact-area > div:last-child {
    padding-left: 24px;
    font-size: 0.8rem;
    max-width: 440px;
}

.contact-area p {
    margin: 0;
    text-align: left;
}

@media (max-width: 839px) {
    .contact-area p {
        text-align: center;
    }
}

.contact-area-section:first-of-type {
    flex-basis: 60%;
}

.contact-area-section:last-of-type {
    text-align: center;
}

@media (max-width: 840px) {
    .contact-area > div:first-child {
        padding-right: 0;
    }

    .contact-area > div:last-child {
        padding-left: 0;
        padding-top: 32px;
        max-width: none;
    }
}

.contact-area-section:last-of-type .btn {
    margin: 16px 0;
}

.contact-area-section p a {
    white-space: nowrap;
}

.qa-line {
    height: 1px;
    width: 100%;
    background: #bebebe;
    margin-bottom: 16px;
}

.btn.btn-contact {
    padding: 8px 22px;
    background: #4d4d4c;
    display: inline-block;
    background: #58585a;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 18px;
    margin: 0 auto;
}

.gt-bold-link {
    font-weight: bold;
    border-bottom: 1px solid #000;
    text-decoration: none;
    opacity: 0.75;
}

.add-to-cart__wrapper .btn--clear {
    background-color: #4d4d4c;
    color: #fff;
    border-color: #4d4d4c;
    font-weight: bold;
}

.mug-box p {
    text-align: center;
  	font-size: 1.2em;
}

.mug-box__img {
    display: block;
    padding: 80px 0;
    max-width: 100%;
}

.padding-top {
    padding-top: 60px;
}

.padding-top-mid {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-bottom {
    padding-bottom: 60px;
}

.gt-pic-page {
    position: relative;
}

.gt-pic-page img {
    width: 100%;
}

.gt-page-brand.showDesktop {
    width: auto;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 940px) {
    .gt-page-brand.showDesktop {
        display: none;
    }
}

.press-mail {
    font-weight: bold;
    white-space: nowrap;
}

.plus-margin {
    margin-left: 15px;
}

.gt-bloggers-wrapper {
    position: relative;
}

.gt-bloggers-wrapper p {
    font-weight: bold;

}

.gt-text-page, .gt-media-page, .gray-page {
    position: relative;
}

.hidden-anchor {
    top: -70px;
    position: absolute;
}

.gt-inner-bottom a {
    text-decoration: none;
}

.gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-container,
.gina-container,
.mug-container {
    padding: 0 30px;
    position: relative;
}

.gallery-wrap {
    white-space: nowrap;
    position: relative;
    font-size: 0;
    width: 100%;
    z-index: 1;
}

.g-item {
    font-size: 1rem;
    display: inline-block;
    width: 33.333333333%;
    padding: 0 24px;
    vertical-align: top;
}

.gina-container .g-item, .mug-container .g-item {
    width: 25%;
}

@media (max-width: 750px) {
    .gina-container .g-item, 
  	.mug-container .g-item,
  	.gallery-container .g-item {
        width: 50%;
    }
}

@media (max-width: 450px) {
    .gina-container .g-item, .mug-container .g-item {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .gallery-container .g-item {
        width: 100%;
    }
}


.g-img {
    display: block;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
}

@media (max-width: 1510px) {
    .res-img .g-img {
        height: 360px;
    }
}

@media (max-width: 1320px) {
    .res-img .g-img {
        height: 300px;
    }
}

@media (max-width: 1160px) {
    .res-img .g-img {
        height: 270px;
    }
}

@media (max-width: 1080px) {
    .res-img .g-img {
        height: 240px;
    }
}

@media (max-width: 980px) {
    .res-img .g-img {
        height: 200px;
    }
}

@media (max-width: 870px) {
    .res-img .g-img {
        height: 160px;
    }
}

@media (max-width: 750px) {
    .res-img .g-img {
        height: 160px;
    }
}

@media (max-width: 750px) {
    .gallery-container.res-img .g-img {
        height: 270px;
    }
}

@media (max-width: 730px) {
    .gallery-container.res-img .g-img {
        height: 240px;
    }
}

@media (max-width: 670px) {
    .gallery-container.res-img .g-img {
        height: 200px;
    }
}

@media (max-width: 590px) {
    .gallery-container.res-img .g-img {
        height: 160px;
    }
}

@media (max-width: 560px) {
    .gallery-container.res-img {
        text-align: center;
    }
    .gallery-container.res-img .g-img {
        height: 300px;
        background-position: center center;
    }
}

@media (max-width: 460px) {
    .gallery-container.res-img {
        text-align: center;
    }
    .gallery-container.res-img .g-img {
        height: 240px;
    }
}

@media (max-width: 420px) {
    .gallery-container.res-img .g-img {
        height: 180px;
    }
}


.gina-container .g-img,
.mug-container .g-img {
    height: 200px;
    background-size: auto 100%;
    margin: 24px 0;
  	background-position: center center;
}

@media (max-width: 1000px) {
    .g-img {
        height: 280px;
    }
}

@media (max-width: 860px) {
    .g-img {
        height: 220px;
    }
}

@media (max-width: 770px) {
    .g-img {
        height: 120px;
    }
}

.gallery-controls {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 0;
    top: 50%;
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.mug-container .gallery-controls,
.gina-container .gallery-controls {
    -moz-transform: translateY(-86%);
    -ms-transform: translateY(-86%);
    -webkit-transform: translateY(-86%);
    transform: translateY(-86%);
	left: -5px;
    width: calc(100% + 10px);
}


  
.gallery-control {
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    height: 40px;
    width: 30px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    -o-user-select: none;
    user-select: none;
}

.gallery-control.is-disabled {
    opacity: 0.5;
}

.g-item h4 {
    font-weight: bold;
    opacity: 0.75;
    font-size: 0.8rem;
    position: relative;
    padding-top: 24px;
    padding-bottom: 0;
    margin-bottom: 0;
	margin-top: 0;
}

.g-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.75;
    white-space: normal;
}

.g-prev {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/arrow-prev.png);
}

.g-next {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/arrow-next.png);
}

.yt-wrap {
    height: 100%;
    width: 100%;
    position: relative;
}

.yt-wrap-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    cursor: pointer;
    /*background: #333;*/
}

.yt-wrap-over:before {
    content: '';
    display: block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yt-wrap-over:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid #fff;
    position: absolute;
    margin-left: 5px;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.yt-1 div:last-child {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/video-goatstory-gina-pour-over.jpg);
}

.yt-2 div:last-child {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/video-goatstory-gina-immersion.jpg);
}

.yt-3 div:last-child {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/video-goatstory-gina-cold-drip.jpg);
}

.yt-4 div:last-child {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/video-goatstory-gina-tea.jpg);
}

.yt-5 div:last-child {
    background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/gina_first_cover.jpg);
}

.subscribe-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.subscribe-page .grid-text {
    margin-bottom: 25px;
}

.grid-text {
  font-size: 1.2em;
}

.gt-promo p {
    color: #a8987b;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
}

.subscribe-area {
    width: 55%;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
}

.subscribe-area input[type="email"] {
    margin-bottom: 50px;
}

@media (max-width: 670px) {
    .subscribe-page .grid-text {
        width: 80%;
    }
    .subscribe-page .subscribe-area {
        width: 75%
    }
}

.gt-link-overlay {
    display: block;
    position: absolute;
    width: 30%;
    height: 99%;
    top: 0;
}

.gt-link-overlay-left {
    left: 0;
}

.gt-link-overlay-right {
    right: 0;
}

.video-centered .large--three-fifths {
    margin: 0 auto;
    padding-bottom: 60px;
}

.gina-mod .video-centered .large--three-fifths {
  	padding-left: 0 !important;
  	padding-right: 0 !important;
}

.gt-set-page.gt-special {
  	padding-bottom: 20px;
}

.gt-popup {
    position: fixed;
    bottom: -220px;
    right: 10px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.gt-popup.shown {
    bottom: 10px;
    opacity: 1;
}

.gt-popup.closed { opacity: 0; display: none; }

.gt-popup > div:not(.cls-btn) {
    float: left;
    height: 220px;
}

.gt-popup__left {
    width: 250px;
	background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/popups/pop-up-mug-black-1.jpg);
    background-size: cover;
}

.gt-popup__right {
    width: 300px;
    background: yellow;
    text-align: center;
    padding: 28px 14px;
    background: #d6d6d5;
}

.gt-popup__right h5 {
    font-size: 12px;
    font-weight: 600;
}

.gt-popup p {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.3;
}

.gt-popup p span {
    display: block;
}

.gt-dp-none {
  display: none !important;
}

.cls-btn {
	background-image: url(https://s3.eu-central-1.amazonaws.com/goatstory/2017/images/popups/cls-btn.png);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: -15px;
    cursor: pointer;
}

.gt-popup form {
    padding-top: 12px;
}

.gt-popup input {
    width: 84%;
    /*margin: 6px auto;*/
    margin: 4px auto;

}

.gt-popup input[type='email'] {
    text-align: center;
    background: #fff;
    border: none;
	font-size: 12px;
}

.gt-popup .popup-btn.btn {
    background: #333333;
    font-weight: bold;
}

@media (max-width : 667px) {
	.cls-btn {
      left: 290px;
    }
  
  	.gt-popup__left {
      width: 300px;
    }
}

input[type="text"].gt-input-error {
    border: 1px solid red !important;
}

.product_alternate-price {
  opacity: .7;
  font-size: 11px;
  margin-top: 20px;
}
