/******************
** ANIMATIONS
********************/
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes modalShow {
  0% {
    transform: translate(0, -100px);
  }

  100% {
    transform: translate(0, 0);
  }
}
@keyframes lightboxShow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes lightboxHide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes modalHide {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(0%);
    -ms-transform: translate(0, 0) scale(0%);
    transform: translate(0, 0) scale(0%);
  }

  100% {
    transform: translate(0, -100px);
    opacity: 0;
    -webkit-transform: translate(0, -100px) scale(50%);
    -ms-transform: translate(0, -100px) scale(50%);
    transform: translate(0, -100px) scale(50%);
  }
}
#gsGiftOptionsCheckbox {
  padding-bottom: 15px;
  box-sizing: border-box;
  height: 47px;
  border: 1px solid #e2e2e2;
  color: #444;
}
#gsGiftOptionsCheckbox svg {
  width: 31px;
  float: left;
  margin-left: 15px;
  fill: #a9a6a6;
}
/******************
** HEADINGS AND TITLES
********************/

.gs__item-title a {
  text-decoration: none;
  color: #333;
}
.gs__cart-meta {
  padding-left: 10px;
}
/******************
** MODAL WINDOW
********************/
body.gs__modal-open {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gs__m-bg {
  position: fixed;
  margin-top: -100px;
  z-index: 999999;
  top: 0;
  right: 0;
  cursor: pointer;
  bottom: 0;
  text-align: center;
  left: 0;
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(43, 46, 56, 0);
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}

.gs__m-bg.modal-open {
  display: inline-block;
  background: rgba(43, 46, 56, 0.9)
}

.gs__m-bg:hover {
  cursor: pointer
}

.gs__m {
  text-align: left;
  display: none;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  top: 200px;
  vertical-align: top;
  margin-bottom: 10px;
  padding: 35px;
  color: #2b2e38;
  background: #fff;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-animation-duration: .5s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.gs__m .ui.dividing.header {
  height: auto;
  min-height: 0;
  position: relative;
}

.gs__m h3 {
  margin: 0 0 10px 0;
  color: #999;
  font-size: 18px;
}

.gs__m h6 {
  text-align: left;
  margin: 15px 0 0;
  padding: 0;
  color: #999;
}

.gs__m.modal-open {
  display: inline-block !important;
  overflow: hidden;
  margin-bottom: 100px;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalShow;
  animation-name: modalShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.gs__m.gs__hide-modal {
  -webkit-animation-name: modalHide;
  animation-name: modalHide;
}

.gs__m-bg:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ''
}

.gs__m h2 {
  padding: 0;
  text-align: center;
}

.gs__m .btn {
  position: relative;
}

.gs__m .bottom-bar {
  background: #fff;
  padding: 15px 0;
  text-align: right;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
}

.gs__m .bottom-bar .btn {
  display: inline-block;
  padding: 15px;
  height: auto;
  margin: 0 0 0 5px;
}

.gs__m .tab-content {}

.gs__m .gs__nav>li>a {
  font-weight: bold;
  color: #999;
  border: 0
}

.gs__m .gs__nav>li.active>a {
  font-weight: bold;
  color: #333;
  border-top: 3px solid #999
}

.gs__m .gs__nav>li.active>a:hover,
.gs__m .gs__nav>li.active>a:focus,
.gs__m .gs__nav>li.active>a:visited {
  border-top: 3px solid #999
}

.gs__m .gs__nav>li>a:focus,
.gs__m .gs__nav>li>a:hover {
  border: 0;
  background: transparent
}

.gs__m .gs__nav {
  padding-left: 0
}

.gs__m .gs__nav>li.active>a,
.gs__m .gs__nav>li.active>a:focus,
.gs__m .gs__nav>li.active>a:hover {
  background-color: #f9f9f9
}

.gs__no-animation .gs__m {
  transition: none;
  animation: none !important;
  animation-duration: 0 !important;
  animation-name: none !important
}

.gs__row {
  clear: both;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}

.gs__m .gs__row {
  width: 100%;
  clear: both;
  display: inline-block;
}

.gs__m .gs__tab {
  display: none
}

.gs__m .gs__tab.active {
  display: block;
}

.gs__m h4 {
  line-height: 30px;
  font-size: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.gs__m .horizontal.divider {
  overflow: hidden;
  text-align: center;
}

.gs__m .horizontal.divider:before,
.gs__m .horizontal.divider:after {
  background-color: #e6e6e6;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.gs__m .horizontal.divider:before {
  right: 0.5em;
  margin-left: -50%;
}

.gs__m .horizontal.divider:after {
  left: 0.5em;
  margin-right: -50%;
}

/******************
** ROWS AND COLUMNS
********************/
.gs__row .field {
  float: left;
  padding: 0 4px;
  width: 100%;
}

.gs__row .gs__field {
  float: left;
  box-sizing: border-box;
  width: 100%;
  padding: 0 5px;
  min-height: 1px;
  margin: 0;
}
.gs__row .gs__fields .eight.wide.gs__field:first-of-type {
  padding-left: 0;
  padding-right: 5px;
}
.gs__row .gs__fields .eight.wide.gs__field {
  padding-right: 0;
}
.gs__row .gs__fields .sixteen.wide.gs__field {
  padding-left: 0;
  padding-right: 0;
}
.gs__row .gs__fields {
  margin: 0;
  /* min-height: 1px; */
  display: inline-block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.gs__row .gs__fields .eleven.wide.gs__field {
  width: 70%;
}

.gs__row .gs__fields .eight.wide.gs__field {
  width: 50%;
}

.gs__row .gs__fields .six.wide.gs__field {
  width: 35%;
}

.gs__row .gs__fields .five.wide.gs__field {
  width: 30%;
}

.gs__row .gs__fields .four.wide.gs__field {
  width: 30%;
}

.gs__row .gs__dropdown {
  height: 44px;
  margin: 0;
  width: 100%;
  outline: none;
  border-color: transparent;
  position: relative;
  box-sizing: border-box;
  pointer-events: auto;
  opacity: 1;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

/******************
** TABLES
********************/
/******************
** INPUTS AND FORMS
********************/
input.gs__input, textarea.gs__textarea, textarea.gs__msg {
  border: 1px solid #e2e2e2;
  color: #444;
}

/* ALL INPUTS */
.gs__row textarea {
  width: 100%;
  font-size: 13px;
  padding: 15px;
  margin: 0;
  box-sizing: border-box;
}

.gs__row textarea::-webkit-input-placeholder {
  display: block !important;
  text-overflow: clip;
  color: #737373;
  font-size: 13px;
}

.gs__row input {
  display: inline-block;
  background-size: 30px auto;
  background-position: 10px;
  max-width: 100%;
  width: 100%;
  padding: 15px;
  font-size: 13px;
  color: #444;
  border: 1px solid #d9d9d9;
  border-radius: .28571429rem;
}

.gs__row input[type="checkbox"] {
  width: auto;
}

.gs__row input::-webkit-input-placeholder {
  display: block !important;
  text-overflow: clip;
  color: #737373;
}

.gs__row input:nth-child(even) {
  margin-right: 4%;
}

.gs__row input[type="text"] {
  margin: 0 0 5px 0 !important;
  height: 47px;
  max-width: 100%;
}

.gs__row input[type="text"]:not(.gs__delivery-date):focus {
  color: rgba(0, 0, 0, .95);
  border-color: #85B7D9;
  border-radius: .28571429rem;
  background: #FFF;
  outline: 2px solid #97c8da;
  box-shadow: 0 0 0 0 rgba(34, 36, 38, .35) inset;
}
.gs__row textarea:focus {
  color: rgba(0, 0, 0, .95);
  border-color: #85B7D9;
  border-radius: .28571429rem;
  background: #FFF;
  outline: 2px solid #97c8da;
  box-shadow: 0 0 0 0 rgba(34, 36, 38, .35) inset;
}
.gs__row input.gs__delivery-date:focus {
  color: rgba(0, 0, 0, .95);
  border-color: #85B7D9;
  border-radius: .28571429rem;
  outline: 2px solid #97c8da;
  box-shadow: 0 0 0 0 rgba(34, 36, 38, .35) inset;
}
.gs__row input[type="number"] {
  padding: initial;
  text-align: center;
  /* border: none; */
  margin: 0;
  background: transparent;
  border-radius: .28571429rem;
  border: 1px solid #e5e5e5;
}

.gs__row input[type="radio"] {
  width: auto;
  font-size: 14px;
  line-height: 0;
  margin: 0;
  display: block;
  padding: 5px !important;
  float: left;
  border-radius: .28571429rem;
  border: 1px solid #e5e5e5;
  -webkit-appearance: radio;
}

input.gs__delivery-date {
  background: url(../images/calendar-icon.svg) no-repeat scroll 7px 7px;
  background-size: 30px auto;
  width: 100%;
  background-position: 10px;
  max-width: 100%;
  padding: 15px 0 15px 50px !important;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  color: #444;
}

.gs__row input.gs__search-input {
  height: 44px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px;
  font-size: 13px;
  color: #444;
  outline: none;
  background: transparent;
  border-color: transparent;
}

.gs__row select {
  height: 47px !important;
  line-height: 12px;
  border: 1px solid #d9d9d9;
  border-radius: .28571429rem;
}

.gs__row label:not([for="gs__toggle-shipping"]):not(.default.text) {
  display: block;
  margin: 10px 0 8px;
  line-height: 16px;
  font-size: 16px;
  /* font-weight: bold; */
}

/* MODAL INPUTS */
.gs__m .gs__row input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.gs__m label {
  margin-bottom: 5px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.gs__m-modal .gs__row label {
  margin: 10px 0 5px 0;
}

.gs__m select:not(.gs__select) {
  margin-bottom: 5px;
  width: 100%;
  font-size: 12px;
  line-height: 12px;
  margin: 5px 0;
  display: block;
  padding: 5px !important;
  float: left;
  border: 1px solid #e5e5e5;
  border-radius: .28571429rem;
}

.gs__m textarea {
  margin-bottom: 5px;
  width: 100%;
  font-size: 12px;
  line-height: 12px;
  margin: 0;
  display: block;
  float: left;
  border: 1px solid #e5e5e5;
}

/* SHIPPING SELECTOR INPUT RADIO */
.gs__rate-list {
  list-style: none;
  margin: 0
}

.gs__rate-list input {
  float: left;
  margin: 0;
}

.gs__rate-list input[type="radio"] {
  opacity: 1 !important;
  display: block !important;
  -webkit-appearance: radio !important;
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  margin: -10px 0 0 0 !important;
  width: 15px !important;
  height: 15px !important;
}

.gs__rate-list span {
  font-size: 0.6em;
  height: 25px;
  line-height: 25px;
  float: left !important;
  margin: 0;
}

.gs__rate-list label {
  margin: 0;
  float: left;
  min-height: 25px;
  max-height: 50px;
  height: auto;
  line-height: 25px;
  font-size: 13px;
  padding-left: 20px;
}

.gs__rate-list .checkbox {
  position: relative;
  padding: 0;
  height: 25px;
  width: 100%;
  clear: both;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
}

.gs__radio-wrapper {
  padding: 15px;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}

.gs__radio-wrapper:last-child {
  border-bottom: none;
}

.gs__shipping-price {
  margin: 20px 15px 0 auto;
  font-size: 15px;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
}

.gs__radio-input {
  padding: 0 10px 0 0;
  display: inline-block;
  position: absolute;
  height: 100%;
  margin: 0;
  vertical-align: top;
}

.gs__radio-input input {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  -webkit-appearance: radio;
}

label.gs__radio-label {
  display: inline-block;
  font-size: 13px;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  font-weight: normal;
  color: #545454;
  padding-left: 25px;
  padding-right: 50px;
  line-height: 1.1em;
}

.gs__row label.gs__radio-label .gs__shipping-name {
  margin-bottom: 5px;
}

.gs__row label.gs__radio-label .small-text {
  font-size: 13px;
  color: #737373;
  margin-top: 7px;
  display: inline-block;
}

.gs__text-left {
  text-align: left;
}

.gs__text-right {
  text-align: right;
}

/* TOGGLE BOX INPUT */
#gs__toggle-box {
  padding: 10px 15px;
  background: #f8f8f8;
  color: #adadad;
  display: inline-block;
  border-radius: 0.15em;
  vertical-align: bottom;
  /*padding: 20px;
    background: #fdfdfd;
    display: inline-block;
    border-radius: 0.15em;
    border: 1px solid #f1f1f1;
    box-shadow: 2px 7px 15px rgba(0,0,0,0.02);*/
}

#gs__toggle-box input {
  float: left;
  height: 30px;
  margin: 0 15px 0 0;
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
}

#gs__toggle-box label {
  float: left;
  top: 0;
  color: #565656;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 30px
}

#gs__toggle-box p {
  height: auto;
  line-height: 1em;
  font-size: auto;
  margin: 0
}

/* quantity select box */
.gs__row select.gs__select-cart-qty {
  height: 44px !important;
  padding: 0;
  padding-left: 10px;
  width: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  text-indent: 1px;
}

/* STYLED CHECKBOX INPUTS */
.gs__checkbox-container {
  padding: 3px 0;
}
.gs__checkbox-wrapper {
  text-align: left;
  position: absolute;
  float: right;
  display: inline-block;
  padding: 15px 0;
  margin: 0;
  right: 0;
}

.gs__checkbox-styled {
  z-index: 1;
  border-radius: 3px;
  margin-top: 0;
}

.gs__checkbox,
.gs__checkbox-styled,
input[type=checkbox].gs__checkbox {
  z-index: 2;
  opacity: 0;
  position: absolute;
  display: block;
  position: relative;
  height: 16px;
  width: 16px;
  border: 1px solid #d3dbe2;
  background-color: #fff;
  margin: 0;
  box-sizing: border-box;
  vertical-align: middle
}

.gs__checkbox-styled:after {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3…1c.5.4%201.2.4%201.7%200l14.3-14c.5-.4.5-1.1%200-1.6z%22%2F%3E%3C%2Fsvg%3E);
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform .15s ease-in-out;
  transition: transform .15s ease-in-out;
  z-index: 2
}

.gs__checkbox:active~.gs__checkbox-styled,
.gs__checkbox:focus~.gs__checkbox-styled {
  border-color: #479ccf
}

.gs__checkbox:checked~.gs__checkbox-styled:after,
.gs__checkbox:indeterminate~.gs__checkbox-styled:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1)
}

.gs__checkbox-styled:after {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20enable-background%3D%22new%200%200%2024%2024%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3Ecircle%2Cellipse%2Cline%2Cpath%2Cpolygon%2Cpolyline%2Crect%2Ctext%7Bfill%3A%23479ccf%20%21important%3B%20%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M23.6%205L22%203.4c-.5-.4-1.2-.4-1.7%200L8.5%2015l-4.8-4.7c-.5-.4-1.2-.4-1.7%200L.3%2011.9c-.5.4-.5%201.2%200%201.6l7.3%207.1c.5.4%201.2.4%201.7%200l14.3-14c.5-.4.5-1.1%200-1.6z%22%2F%3E%3C%2Fsvg%3E)
}

.gs__checkbox:indeterminate~.gs__checkbox-styled:after {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%20enable-background%3D%22new%200%200%2012%2012%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3Ecircle%2Cellipse%2Cline%2Cpath%2Cpolygon%2Cpolyline%2Crect%2Ctext%7Bfill%3A%23479ccf%20%21important%3B%20%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M6%200%22%2F%3E%3Cpath%20d%3D%22M.8%207C.3%207%200%206.7%200%206.2v-.4c0-.5.3-.8.8-.8h10.5c.4%200%20.7.3.7.8v.5c0%20.4-.3.7-.8.7H.8z%22%2F%3E%3C%2Fsvg%3E)
}

/*
.gs__checkmark:after {
  content: " ";
  display: block;
  width: 0.3em; // the short bar of the mark is half as long as the long bar
  height: 0.6em;
  border: solid white;
  border-width: 0 0.2em 0.2em 0; // creates the inverted "L" shape
  position: absolute;
  left: 1em;
  top: 40%;
  margin-top: -0.2em;
  -webkit-transform: rotate(45deg); // tilts the shape
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}*/
/* STYLED SELECT DROPDOWN */
.gs__select-label {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  font-size: 0.85714em;
  font-weight: normal !important;
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 0;
  color: #737373;
  padding: 0 0.93333em;
  background: transparent;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translateY(3px);
  transform: translateY(2px);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.gs__select {
  border-radius: .28571429rem;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1.65em 0.9em 0.25em;
  font-size: 12px;
  height: 38.53px;
  word-break: normal;
  margin: 0;
  outline: none;
  border: 1px solid #e5e5e5;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  -webkit-appearance: none;
}

.gs__select-wrapper {
  content: '';
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.gs__saved-address {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 1px;
  width: 100%;
  display: inline-block
}

.gs__saved-address:hover,
.gs__saved-address.selected {
  background: #f7f7f7;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6
}

.gs__saved-address:active,
.gs__saved-address:focus {
  background: #f1f1f1;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6
}

.gs__saved-address p {
  margin: 0
}

.gs__row .default.text {
  position: absolute;
  line-height: 47px;
  font-size: 14px;
  padding: 0 10px;
  top: 0;
  left: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}

.gs__row .active.selection.gs__dropdown .menu {
  position: absolute;
}

.gs__row .selection.gs__dropdown .menu {
  display: none;
  top: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  left: 0;
  outline: 0;
  background: #fff;
  min-width: 100%;
  width: 100%;
  width: calc(100% + 2px);
  margin: 0;
  margin-left: -1px;
  max-height: 16.02857143rem;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .15);
  border: 1px solid #96C8DA;
  border-color: #96C8DA;
  border-radius: 0 0 .28571429rem .28571429rem;
  border-top-width: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity .1s ease;
  transition: opacity .1s ease;
  box-sizing: border-box;
}

.gs__row .selection.active.gs__dropdown .menu {
  display: block;
}

.gs__row .selection.gs__dropdown {
  display: block;
  width: 100%;
  min-width: 0;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  word-wrap: break-word;
  line-height: 1em;
  white-space: normal;
  outline: 0;
  -webkit-transform: rotateZ(0);
  transform: rotateZ(0);
  min-width: 100%;
  min-height: 47px;
  display: inline-block;
  padding: 0;
  color: rgba(0, 0, 0, .87);
  box-shadow: none;
  border-radius: .28571429rem;
  border: 1px solid #e5e5e5;
  z-index: 1;
  -webkit-transition: box-shadow .1s ease, width .1s ease;
  transition: box-shadow .1s ease, width .1s ease;
}

.gs__row .selection.gs__dropdown.active {
  border-color: #96C8DA;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .15);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  position: absolute;
  z-index: 2;
}

/* DISCOUNT CODE INPUT */
.gs__discount-content {
  display: block;
  border-radius: 5px;
  max-width: 100%;
  clear: both;
  margin-right: 0;
  align-items: right;
  margin-left: auto;
  margin: 10px 0 10px auto;
}

#gsDiscountCode {
  width: 70%;
  float: left;
  padding: 10px 15px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  margin: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  border: none;
  box-shadow: inset 0px 0px 1px #333;
}

#gsDiscountCode::-webkit-input-placeholder {
  display: block !important;
  text-overflow: clip;
}

#gs__submit-discount {
  position: relative;
  width: 30%;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  display: inline-block;
  text-align: center;
  background: #999;
  margin: 0;
  padding: 0 10px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* BUTTON INPUTS */
.gs__buttons-wrapper input[type="text"] {
  width: auto;
}

.gs__buttons-wrapper input[type="text"].gs__to-msg, .gs__buttons-wrapper input[type="text"].gs__from-msg, .gs__buttons-wrapper input[type="text"].gs__additional-msg {
  width: 125px;
}

/* INPUT ERRORS */
.gs__m input.error {
  border-color: #d8000c63 !important;
}

.gs__m select.error {
  border-color: #d8000c63 !important;
}

.gs__m textarea.error {
  border-color: #d8000c63 !important;
}

.gs__form-error {
  display: block;
  background: #faffbd;
  color: #7d8059;
  /* border: 1px solid #7d8059; */
  width: 100%;
  padding: 10px;
  text-align: center;
  float: none;
  color: #D8000C;
  font-size: 12px;
  background-color: #FFD2D2;
  border-radius: .28571429rem;
}

.gs__error {
  color: red;
  position: absolute;
  top: 40px;
  font-size: 0.7em;
  float: left;
}

/******************
** TOTAL SECTIONS
********************/
.gs__subtotal {
  padding-left: 55px;
  min-width: 150px;
  display: inline-block;
}

/******************
** STRUCTURE
********************/
#gsAppContainer, .gsAppContainer {
  width: 100%;
  display: inline-block;
  margin: 30px 0;
}

#gsAppContainer .gs__wrapper, .gsAppContainer .gs__wrapper, .gs__app-container .gs__wrapper {
  width: 400px;
  margin: 0 0 0 auto;
  max-width: 100%;
}

.gs__product-page .gsAppContainer .gs__wrapper, .gs__product-page .gs__app-container .gs__wrapper {
  width: 400px;
  margin: 15px 0;
  max-width: 100%;
  display: inline-block;
  clear: both;
}
.gs__product-page .gsAppContainer, .gs__product-page #gsAppContainer {
  margin: 0;
}
.gs__product-page .gsAppContainer, .gs__product-page #gsAppContainer > div {
  font-size: 0
}
.gs__product-page .gsAppContainer, .gs__product-page #gsAppContainer label {
  font-size: 16px;
}
.gs__product-page .gsAppContainer .gs__wrapper, .gs__product-page #gsAppContainer .gs__wrapper {
  width: 100%;
}
.gs__table {
  display: table;
  margin-bottom: 30px;
}

.gs__table-row {
  display: table-row !important;
}

.gs__table-row .gs__table-column {
  display: table-cell;
  float: none;
}

.gs__content-box {
  background: #fff;
  background-clip: padding-box;
  border: 1px #d9d9d9 solid;
  border-radius: 5px 5px 0 0;
  color: #545454;
  margin: 0 0 0 0;
  padding: 10px 15px;
  border-bottom: 0;
}

fieldset.gs__content-box {
  border-bottom: 1px #d9d9d9 solid;
  border-radius: 0 0 5px 5px;
}

fieldset.gs__content-box legend {
  display: none;
}

.gs__content-box-row {
  display: table;
  position: relative;
  zoom: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding-top: 0.85714em;
  padding-bottom: 0.85714em;
}

.gs__review-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gs__review-block-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gs__review-block-label {
  color: #737373;
  padding-right: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 8em;
  -ms-flex: 0 1 8em;
  flex: 0 1 8em;
}

/******************
** ACCENTS AND ELEMENTS
********************/
.gs__summary-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  margin-bottom: 0px;
}

.gs__summary-table th, .gs__summary-table td {
  padding-top: 0;
  padding-left: 1.1em;
  padding-bottom: 0;
  font-weight: 600;
}

.gs__summary-table tr td>a {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 100% 0 0 0;
  margin: 0;
}

.gs__summary-table tr td>a>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gs__summary-table tr td.gs__cart-image-wrapper {
  padding: 0 0 15px 0;
}
.gs__summary-table tr td.gs__cart-price-column {
  padding: 0 0 15px 0;
}
#gsCrumbs {
  list-style: none;
  display: inline-block;
  width: auto;
  clear: both;
  vertical-align: bottom;
}

#gsCrumbs ul {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
}

#gsCrumbs i {
  font-size: 20px;
  color: #adadad;
  position: relative;
  line-height: 1em;
  top: 5px;
}

#gsCrumbs li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

#gsCrumbs li a {
  color: #565656;
  font-weight: 100;
  display: block;
  background: #f8f8f8;
  text-decoration: none;
  position: relative;
  height: 50px;
  line-height: 50px;
  padding: 0 5px 0 5px;
  text-align: center;
  margin-right: 23px;
  cursor: not-allowed;
}

#gsCrumbs li:nth-child(even) a {
  background-color: #f8f8f8;
}

#gsCrumbs li:nth-child(even) a:before {
  border-color: #f8f8f8;
  border-left-color: transparent;
}

#gsCrumbs li:nth-child(even) a:after {
  border-left-color: #f8f8f8;
}

#gsCrumbs li:first-child a {
  padding-left: 15px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 0;
}

#gsCrumbs li:first-child a:before {
  border: none;
}

#gsCrumbs li:last-child a {
  padding-right: 15px;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

#gsCrumbs li:last-child a:after {
  border: none;
}

#gsCrumbs li a:before, #gsCrumbs li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #f8f8f8;
  border-width: 25px 10px;
  width: 0;
  height: 0;
}

#gsCrumbs li a:before {
  left: -20px;
  border-left-color: transparent;
}

#gsCrumbs li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #f8f8f8;
}

#gsCrumbs li a:hover {
  background-color: #f8f8f8;
}

#gsCrumbs li a:hover:before {
  border-color: #f8f8f8;
  border-left-color: transparent;
}

#gsCrumbs li a:hover:after {
  border-left-color: #f8f8f8;
}

#gsCrumbs li a:active {
  background-color: #f8f8f8;
}

#gsCrumbs li a:active:before {
  border-color: #f8f8f8;
  border-left-color: transparent;
}

#gsCrumbs li a:active:after {
  border-left-color: #f8f8f8;
}

#gsCrumbs li a.active {
  cursor: pointer;
  background: #ececec;
}

#gsCrumbs li a.active:after {
  border-left-color: #ececec;
}

#gsCrumbs li:nth-child(even) a.active:before {
  border-color: #ececec;
  border-left-color: transparent;
}

#gsCrumbs li:nth-child(odd) a.active:before {
  border-color: #ececec;
  border-left-color: transparent;
}

.gs__tooltip {
  display: inline-block;
  position: relative;
  text-align: left;
}

.gs__tooltip .gs__top {
  min-width: 200px;
  top: -0;
  left: 50%;
  transform: translate(-80%, -100%);
  padding: 10px 20px;
  color: #FFFFFF;
  background-color: #222222;
  font-weight: normal;
  font-size: 13px;
  border-radius: 3px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}

.gs__tooltip:hover .gs__top {
  visibility: visible;
  opacity: 1;
}

.gs__tooltip .gs__top i {
  position: absolute;
  top: 100%;
  left: 80%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.gs__tooltip .gs__top i::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #222222;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

label.gs__upsell-label {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 45px;
  line-height: 30px;
  margin: 5px 0;
  float: none;
}

.gs__oneclick-image {
  width: 30px;
  height: 30px;
  float: right;
  position: absolute;
  margin: 0 0 -10px 0;
  display: inline-block;
  border-radius: 3px;
  background-size: cover;
  right: 0;
  top: 0;
}

.gs__product-select-box {
  position: relative;
  padding-right: 100px;
}

.gs__product-image-wrap {
  vertical-align: top;
  width: 75px;
  height: 75px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: inline-block;
}

.gs__product-detail-wrap {
  display: inline-block;
  line-height: 36px;
  max-width: 450px;
  vertical-align: top;
  margin: 0 0 0 5px;
  font-weight: initial;
}

.gs__product-detail-wrap h4 {
  display: block;
  line-height: 1.5em;
  border: none;
  padding: 10px 0 0 15px;
}

.gs__product-price {
  float: none;
  margin: 0 0 auto 0;
  line-height: 1em;
  padding: 0 15px;
}

.gs__product-select-box:hover {
  background: #f9f9f9;
}

.progress-indicator>li.completed .bubble, .progress-indicator>li.completed .bubble:after, .progress-indicator>li.completed .bubble:before {
  background-color: #00ceff;
  border-color: #247830;
  border: none;
}

.progress-indicator>li.completed .bubble, .progress-indicator>li.completed .bubble:after, .progress-indicator>li.completed .bubble:before {
  background-color: #929292;
  border-color: #fff;
  border: none;
}

.progress-indicator>li .bubble {
  border: none;
}

.progress-indicator>li.completed, .progress-indicator>li.completed .bubble {
  color: #a1a1a1;
}

.flatpickr-weekdays {
  max-width: 307.88px;
}

.flatpickr-calendar.open {
  max-width: 307.88px;
}

.gs__shadow-box {
  padding: 15px;
  display: inline-block;
  width: 100%;
  position: relative;
  border: 1px solid #f1f1f1;
  border-radius: 0.15em;
  margin-bottom: 15px;
  box-sizing: border-box;
  box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.02);
}

td .gs__row .gs__shadow-box.gs__validate-line {
  padding-right: 75px;
}

.gs__circle-plus {
  height: 50px;
  pointer-events: none;
  width: 50px;
  margin: auto;
  position: absolute;
  font-size: 1em
    /*Will change icon size*/
  ;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  z-index: 1;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.gs__circle-plus .gs__circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: solid 2px #c1dce0;
}

.gs__circle-plus .gs__circle .gs__horizontal {
  position: absolute;
  background-color: #91c2ca;
  width: 30px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
  left: 50%;
  margin-left: -15px;
}

.gs__circle-plus .gs__circle .gs__vertical {
  position: absolute;
  background-color: #91c2ca;
  width: 3px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  left: 50%;
  margin-left: -1.5px;
}

.gs__add-line-wrapper:hover .gs__circle-plus .gs__circle {
  border-color: #91c2ca;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gs__add-line-wrapper:hover .gs__circle-plus .gs__circle .gs__vertical {
  background-color: #77abb3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gs__add-line-wrapper:hover .gs__circle-plus .gs__circle .gs__horizontal {
  background-color: #77abb3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/******************
** ERRORS
********************/
.gs__line .gs__line-error {
  border-color: red;
  color: red;
  padding: 5px
}

.gs__line .gs__line-success, .gs__toggle-feature-item .gs__line-success  {
  margin: 2px 0;
  background: #cdf0f9;
  border-radius: 3px;
  color: #43a6bf;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  border-left: 20px solid #a2d5e2;
}

.gs__line-success  {
  margin: 2px 0;
  background: #cdf0f9;
  border-radius: 3px;
  color: #43a6bf;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  border-left: 20px solid #a2d5e2;
}

.gs__shipping-error {
  text-align: center;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 19px;
  margin-top: 40px;
  color: #de0808;
}

.gs__shipping-error span {
  font-size: 30px;
}
#gsDiscountError {
  margin: 15px 0;
}
.gs__line-error, .gs__discount-error {
  margin: 2px 0;
  background: #ffbaba;
  border-radius: 3px;
  color: #d00000;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  border-left: 20px solid #f79090;
}

.gs__row .gs__line-success, .gs__toggle-feature-item .gs__line-success  {
  margin: 2px 0;
  background: #cdf0f9;
  border-radius: 3px;
  color: #43a6bf;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  border-left: 20px solid #a2d5e2;
}

.gs__group-wrapper .notice {
  background: #e7f0ff;
  padding: 15px 30px;
  border-radius: 5px;
  border-left: 15px solid;
  border: 1px solid #cfdaea;
  border-left: 15px solid #cdd4e0;
}

.gs__notice {
  background: #97c8da;
  padding: 15px 30px;
  color: #fff;
  border-radius: 2px;
  border-left: 15px solid;
  border: 1px solid #96c8da;
  border-left: 15px solid #95c0d0;
}

.gs__group-wrapper .error {
  background: #ffe7e7;
  padding: 15px 30px;
  border-left: 15px solid;
  border: 1px solid #eac2c2;
  border-left: 15px solid #efd2d2;
}

.gs__group-wrapper .gs__input-error, input.gs__input-error, textarea.gs__input-error {
  background: #ffe7e7;
  border: 1px solid #eac2c2;
}

.gs__mobile-position {
  display: none;
}

/******************
** LOADER
********************/
.gs__loader,
.gs__loader:after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.gs__loader {
  margin: 10px auto;
  font-size: 10px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: 50%;
  margin-top: -15px;
  text-indent: -9999em;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid #fafafa;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 0.7s infinite linear;
}

.gs__loader-small,
.gs__loader-small:after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.gs__loader-small {
  margin: 10px auto;
  font-size: 10px;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
  text-indent: -9999em;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid #fafafa;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 0.7s infinite linear;
}

.flexer, .progress-indicator {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex
}

.no-flexer, .progress-indicator.stacked {
  display: block
}

.no-flexer-element {
  -ms-flex: 0;
  -webkit-flex: 0;
  -moz-flex: 0;
  flex: 0
}

.flexer-element, .progress-indicator>li {
  -ms-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  flex: 1
}

.progress-indicator {
  margin: 0 0 1em;
  padding: 0;
  font-size: 80%;
  text-transform: uppercase;
  border-top: none;
}

.progress-indicator>li {
  list-style: none;
  text-align: center;
  width: auto;
  padding: 0;
  margin: 0;
  position: relative;
  text-overflow: ellipsis;
  color: #bbb;
  display: block;
  border-bottom: none;
}

.progress-indicator>li:hover {
  color: #6f6f6f
}

.progress-indicator>li.completed, .progress-indicator>li.completed .bubble {
  color: #65d074
}

.progress-indicator>li .bubble {
  border-radius: 1000px;
  width: 20px;
  height: 20px;
  background-color: #bbb;
  display: block;
  margin: 0 auto .5em;
  border-bottom: 1px solid #888
}

.progress-indicator>li .bubble:after, .progress-indicator>li .bubble:before {
  display: block;
  position: absolute;
  top: 9px;
  width: 100%;
  height: 3px;
  content: '';
  background-color: #bbb
}

.progress-indicator>li.completed .bubble, .progress-indicator>li.completed .bubble:after, .progress-indicator>li.completed .bubble:before {
  background-color: #65d074;
  border-color: #247830
}

.progress-indicator>li .bubble:before {
  left: 0
}

.progress-indicator>li .bubble:after {
  right: 0
}

.progress-indicator>li:first-child .bubble:after, .progress-indicator>li:first-child .bubble:before {
  width: 50%;
  margin-left: 50%
}

.progress-indicator>li:last-child .bubble:after, .progress-indicator>li:last-child .bubble:before {
  width: 50%;
  margin-right: 50%
}

.progress-indicator>li.active, .progress-indicator>li.active .bubble {
  color: #337AB7
}

.progress-indicator>li.active .bubble, .progress-indicator>li.active .bubble:after, .progress-indicator>li.active .bubble:before {
  background-color: #337AB7;
  border-color: #122a3f
}

.progress-indicator>li a:hover .bubble, .progress-indicator>li a:hover .bubble:after, .progress-indicator>li a:hover .bubble:before {
  background-color: #5671d0;
  border-color: #1f306e
}

.progress-indicator>li a:hover .bubble {
  color: #5671d0
}

.progress-indicator>li.danger .bubble, .progress-indicator>li.danger .bubble:after, .progress-indicator>li.danger .bubble:before {
  background-color: #d3140f;
  border-color: #440605
}

.progress-indicator>li.danger .bubble {
  color: #d3140f
}

.progress-indicator>li.warning .bubble, .progress-indicator>li.warning .bubble:after, .progress-indicator>li.warning .bubble:before {
  background-color: #edb10a;
  border-color: #5a4304
}

.progress-indicator>li.warning .bubble {
  color: #edb10a
}

.progress-indicator>li.info .bubble, .progress-indicator>li.info .bubble:after, .progress-indicator>li.info .bubble:before {
  background-color: #5b32d6;
  border-color: #25135d
}

.progress-indicator>li.info .bubble {
  color: #5b32d6
}

.progress-indicator.stacked>li {
  text-indent: -10px;
  text-align: center;
  display: block
}

.progress-indicator.stacked>li .bubble:after, .progress-indicator.stacked>li .bubble:before {
  left: 50%;
  margin-left: -1.5px;
  width: 3px;
  height: 100%
}

.progress-indicator.stacked .stacked-text {
  position: relative;
  z-index: 10;
  top: 0;
  margin-left: 60% !important;
  width: 45% !important;
  display: inline-block;
  text-align: left;
  line-height: 1.2em
}

.progress-indicator.stacked>li a {
  border: none
}

.progress-indicator.stacked.nocenter>li .bubble {
  margin-left: 0;
  margin-right: 0
}

.progress-indicator.stacked.nocenter>li .bubble:after, .progress-indicator.stacked.nocenter>li .bubble:before {
  left: 10px
}

.progress-indicator.stacked.nocenter .stacked-text {
  width: auto !important;
  display: block;
  margin-left: 40px !important
}

/******************
** Toggle feature
********************/

.gs__toggle-feature-checkbox {
  padding: 15px 0 0 0;
}

.gs__toggle-feature-item .gs__collapse-item {
  overflow: hidden;
  max-height: 9999999px;
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.gs__toggle-feature-item.gs__collapsed .gs__collapse-item {
  opacity: 0;
  max-height: 0px;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  -o-transition: all 0s linear;
}

/******************
** Checkbox
********************/

.gs__checkbox-label {
    display: block;
    position: relative;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    height: auto;
    padding-left: 35px;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

.gs__checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  height: 24px;
  width: 24px;
}

.gs__checkbox-label .gs__custom-checkbox {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  border: 2px solid #d9d9d9;
}


.gs__checkbox-label input:checked ~ .gs__custom-checkbox {
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity:1;
    border: 2px solid #97c8da;
}


.gs__checkbox-label .gs__custom-checkbox::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #97c8da;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity:1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


.gs__checkbox-label input:checked ~ .gs__custom-checkbox::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity:1;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #97c8da;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}



/* For Ripple Effect */
.gs__checkbox-label .gs__custom-checkbox::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    opacity: 0.3;
    border-radius: 5px;
    border: 2px solid #97c8da;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.gs__checkbox-label input:checked ~ .gs__custom-checkbox::before {
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity:0;
    z-index: 999;
    pointer-events: none;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.gs__checkbox-image {
  width: 30px;
  height: auto;
  position: absolute;
  top: -2px;
  right: 0;
}
.gs__checkbox-input-title {
  text-align: left;
  padding-right: 30px;
}

a.gs__lightbox {
  /** Default lightbox to hidden */
  display: none !important;
  /** Position and style */
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: lightboxHide;
  animation-name: lightboxHide;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.gs__lightbox img {
  /** Pad the lightbox image */
  width: 500px;
  max-width: 90%;
  height: auto;
  margin-top: 0%;
  -webkit-box-shadow: 0px 10px 54px 10px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 10px 54px 10px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 54px 10px rgba(0,0,0,0.15);
}
.gs__lightbox p {
  text-align: center;
  color: #f1f1f1;
}
.gs__lightbox:target {
  opacity: 1;
  /** Remove default browser outline */
  outline: none;
  /** Unhide lightbox **/
  display: flex !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: lightboxShow;
  animation-name: lightboxShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.gs__cart-page label {
  text-align: left;
}
.gs__helper-content {
  margin: 15px 0;
  font-size: 14px;
}

.gs__align-right {
  text-align: right;
}
.gs__align-left {
    text-align: left;
}
.gs__open-toggle {
  padding-left: 35px;
  font-size: 12px;
  line-height: 13px;
  vertical-align: top;
  color: #97c8da;
  text-decoration: none;
}
.gs__save-attributes {
  font-size: 12px;
  line-height: 13px;
  vertical-align: top;
  color: #97c8da;
  text-decoration: none;
}

.gs__toggle-feature-item.gs__collapsed .gs__collapse-item label, .gs__toggle-feature-item.gs__collapsed .gs__collapse-item input, .gs__toggle-feature-item.gs__collapsed .gs__collapse-item textarea {
  padding: 0 !important;
  margin: 0 !important;
}
@media handheld, screen and (max-width:400px) {
  .progress-indicator {
    font-size: 60%
  }
}

@media only screen and (min-width: 641px) {
  .gs__m {
    max-width: 700px
  }
}

@media screen and (max-width: 992px) {


  .gs__table-row .gs__table-column {
    display: block;
    width: 100% !important;
    float: none;
  }

  .gs__add-line-wrapper {
    height: 70px;
  }

  .gs__add-line-wrapper .gs__shadow-box {
    display: none;
  }
}

@media screen and (max-width: 737px) {
  body.gs__modal-open {
    position: absolute;
    width: 100%;
    height: 100%;
    height: 100vh;
    overflow: hidden;
  }

  #gs__toggle-box label {
    font-size: 12px;
  }

  .gs__row .fields .field {
    width: 100% !important;
  }

  .gs__row .gs__fields .gs__field {
    width: 100% !important;
    padding: 0 !important;
  }

  .gs__select-label {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    font-size: 0.85714em;
    font-weight: bold !important;
    margin: 0 0 3px 0 !important;
    position: relative;
    top: 0;
    width: 100%;
    /* margin-top: 0.3em; */
    color: #2B2E38;
    padding: 0;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }

  .gs__select {
    margin: 0 !important;
    padding: 1em;
  }

  .gs__select-wrapper {
    position: relative;
  }
}

@media screen and (max-width: 670px) {
  .gs__mobile-position {
    display: block !important;
  }

  .gs__hide-mobile {
    display: none !important;
  }

  .gs__shadow-box {
    box-shadow: 2px 7px 15px rgba(0, 0, 0, 0.14);
  }

  .gs__summary-field {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s ease-in-out;
    -moz-transition: max-height 0.8s ease-in-out;
    -o-transition: max-height 0.8s ease-in-out;
    transition: max-height 0.8s ease-in-out;
  }

  .gs__summary-field.gs__open {
    max-height: 9999px;
  }
}

@media screen and (max-width: 500px) {
  #gsAppContainer, .gsAppContainer {
    width: 100%;
    margin: 10px 0;
  }

  #gsCrumbs li:first-child a {
    padding-left: 5px;
  }

  #gsCrumbs li a {
    font-size: 10px;
    margin-right: 12px;
  }

  .gs__line .btn {
    width: 100%;
    font-size: 1em;
  }

  .gs__m {
    position: relative;
    padding: 30px 10px;
    width: 100%;
    height: auto;
    margin: 0;
    top: 20px;
    right: 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .gs__m-bg {
    margin-top: 0;
    padding: 15px;
  }

  .flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999;
    display: inline-block;
    z-index: 99999;
    left: 50% !important;
    margin-left: -145px;
    right: auto !important;
  }

  .gs__cart-img {
    width: 20%;
    padding-top: 20%;
  }

  .gs__cart-title {
    width: 50%;
  }

  .gs__cart-price {
    width: 50%;
    text-align: left;
    padding-left: 20px;
  }

  .gs__cart-qty {
    width: 50%;
  }

  .gs__buttons-wrapper input[type="text"] {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }

  .gs__buttons-wrapper input[type="text"].gs__to-msg, .gs__buttons-wrapper input[type="text"].gs__from-msg, .gs__buttons-wrapper input[type="text"].gs__additional-msg {
    width: 100%;
  }

  .gs__table {
    display: block;
    margin-bottom: 30px;
  }

  .gs__table-row {
    display: block !important;
  }

  .gs__table-row .gs__table-column {
    display: inline-block;
    float: none;
  }

  .gs__row .gs__radio-input {
    left: 3px;
  }

  .gs__summary-table {
    table-layout: fixed !important;
  }

  .gs__summary-field {
    padding: 0 !important;
  }

  .gs__summary-table table th:first-of-type, .gs__group-wrapper table td:first-of-type {
    width: 25%;
  }

  .gs__summary-table table th:nth-of-type(2), .gs__group-wrapper table td:nth-of-type(2) {
    width: 50%;
  }

  .gs__summary-table table th:last-of-type, .gs__group-wrapper table td:last-of-type {
    width: 25%;
  }

  .gs__summary-table table tr:nth-of-type(2) td:first-of-type {
    display: none;
  }

  .gs__summary-table table tr:nth-of-type(2) td:last-of-type {
    width: 100%;
  }
}
