@charset "UTF-8";
.y-cal {
  /* border: 1px solid #eee; */
}

.y-cal .color-primary {
  color: #1894ce !important;
}

.y-cal .product-select-wrapper {
  position: relative;
}

.y-cal .product-select-wrapper::after {
  content: '';
  border-top: 10px solid #1894ce;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: 18px;
  right: 15px;
}

.y-cal .product-select {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 12px 15px;
  min-width: 280px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.y-cal .product-select::-ms-expand {
  display: none;
}

.y-cal .flex-between-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.y-cal .step {
  display: none;
  border-top: 1px solid #ddd;
}

.y-cal .step__header {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.y-cal .step__header h5 {
  margin: 5px 0;
  font-size: 16px;
  font-weight: normal;
  color: gray;
}

.y-cal .step__header h5 * {
  color: gray;
}

.y-cal .step__inner {
  padding: 15px 0;
}

.y-cal .step .close-step-button {
  display: none;
}

.y-cal .step--active .step__header h5 {
  font-weight: bold;
  color: black;
}

.y-cal .step--active .step__header h5 * {
  color: black;
}

.y-cal .step--active .change-step-button {
  display: none;
}

.y-cal .step--active .close-step-button {
  display: block;
}

.y-cal .step--no-value .close-step-button {
  display: none;
}

.y-cal .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.y-cal .grid-duo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .grid-duo {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .grid-duo > div {
    /* IE10+ CSS styles go here */
    display: inline-block;
    width: 45%;
    margin-right: 1%;
  }
}

.y-cal .input-text {
  background: none;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.y-cal .custom-radio-box {
  position: relative;
}

.y-cal .custom-radio-box input {
  position: absolute;
  opacity: 0;
}

.y-cal .custom-radio-box input:checked + label {
  color: #1894ce;
  border-color: #1894ce;
}

.y-cal .custom-radio-box label {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.y-cal .custom-radio-box label:hover {
  border-color: #1894ce;
}

.y-cal .change-step-button, .y-cal .close-step-button {
  border: none;
  padding: 0;
  background: none;
}

.y-cal .shapes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .shapes {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

.y-cal .shapes__item {
  position: relative;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .shapes__item {
    width: 32%;
    margin-right: 1%;
    margin-bottom: 1%;
    display: inline-block;
    height: 140px;
  }
}

.y-cal .shapes__item:hover {
  border-color: #1894ce;
}

.y-cal .shapes input {
  position: absolute;
  opacity: 0;
}

.y-cal .shapes input:checked + label {
  color: #1894ce;
  border-color: #1894ce;
}

.y-cal .shapes label {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.y-cal .shapes label:hover {
  border-color: #1894ce;
}

.y-cal .measurement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.y-cal .measurement .input-text {
  /*margin: 10px;*/
margin: 10px 0;
width: 100%;  
}

.y-cal .measurement > div {
  margin: 0 10px;
}

.y-cal .measurements {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.y-cal .measurements .input-text {
  margin: 10px;
}

.y-cal .measurements > div {
  margin: 0 10px;
}

.y-cal .edition-count-table > div {
  position: relative;
}

.y-cal .edition-count-table input {
  position: absolute;
  opacity: 0;
}

.y-cal .edition-count-table input:checked + .edition-count-row div {
  border-color: #1894ce;
}

.y-cal .edition-count-row {
  position: relative;
  display: block;
  width: 100%;
  font-size: 18px;
}

.y-cal .edition-count-row__inner {
  margin: 5px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px auto;
      grid-template-columns: 120px auto;
  grid-gap: 10px;
  text-align: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .edition-count-row__inner {
    /* IE10+ CSS styles go here */
    display: block;
    text-align: inherit;
  }
}

.y-cal .edition-count-row__count, .y-cal .edition-count-row__delivery {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .edition-count-row__count {
    /* IE10+ CSS styles go here */
    width: 18%;
    margin-right: 1%;
    display: inline-block;
    text-align: center;
  }
}

.y-cal .edition-count-row__delivery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  justify-items: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .edition-count-row__delivery {
    /* IE10+ CSS styles go here */
    width: 80%;
    display: inline-block;
  }
  .y-cal .edition-count-row__delivery > div {
    display: inline-block;
    width: 49%;
  }
}

.y-cal .edition-count-row .delete-custom-count {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  padding: 5px 10px;
  background: none;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #eee;
  border-radius: 5px;
}

.y-cal .edition-count-row .delete-custom-count:hover {
  cursor: pointer;
  border-color: #1894ce;
}

.y-cal .edition-count-row--head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-size: 12px;
  line-height: 1.2;
}

.y-cal .edition-count-row--head .edition-count-row__count, .y-cal .edition-count-row--head .edition-count-row__delivery {
  border: none;
}

.y-cal .add-own-counts {
  margin-top: 15px;
}

.y-cal .add-own-counts input {
  margin: 0 8px;
  display: inline-block;
  width: 100px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: white;
  font-size: 14px;
  border-radius: 5px;
}

.y-cal .add-own-counts button {
  margin: 0 8px;
  display: inline-block;
  border: none;
  color: #fff;
  background-color: #1894ce;
  border-radius: 5px;
  padding: 5px 10px;
}

.y-cal .show-file-step-button, .y-cal .show-counts-step-button, .y-cal .apply-personalizacja {
  display: block;
  margin: 15px auto 0;
  border: none;
  background-color: #1894ce;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
}

.y-cal .show-file-step-button:hover, .y-cal .show-counts-step-button:hover, .y-cal .apply-personalizacja:hover {
  cursor: pointer;
  opacity: .85;
}

.y-cal .show-file-step-button:disabled, .y-cal .show-counts-step-button:disabled, .y-cal .apply-personalizacja:disabled {
  background-color: #eee;
  color: #aaa;
}

.y-cal .apply-personalizacja {
  margin: 15px 0 0;
}

.y-cal .advanced-steps {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: none;
  margin-top: 20px;
  padding: 10px 0;
}

.y-cal .show-advanced-steps {
  border: none;
  background: none;
  padding: 0;
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
}

.y-cal .advanced-step {
  display: none;
  border-bottom: 1px solid #ddd;
}

.y-cal .advanced-step__header {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.y-cal .advanced-step__header h5 {
  font-weight: normal;
  color: gray;
}

.y-cal .advanced-step__header h5 span {
  color: gray;
}

.y-cal .advanced-step__inner {
  display: none;
  padding: 15px 0;
}

.y-cal .advanced-step .close-step-button {
  display: none;
}

.y-cal .advanced-step.step--active .advanced-step__header h5 {
  font-weight: bold;
  color: black;
}

.y-cal .advanced-step.step--active .advanced-step__header h5 span {
  color: black;
}

.y-cal .advanced-step.step--active .close-step-button {
  display: block;
}

.y-cal .advanced-step:last-of-type {
  border-bottom: none;
}

.y-cal #step-print .custom-radio-box {
  margin-right: 10px;
  margin-bottom: 10px;
}

.y-cal .foil-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .foil-grid {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .foil-grid .custom-radio-box {
    /* IE10+ CSS styles go here */
    display: inline-block;
    width: 32%;
    margin-right: 1%;
    margin-bottom: 1%;
  }
}

.y-cal .foil-grid .custom-radio-box label {
  background-size: 100% calc(100% - 30px);
  padding: 0 !important;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .y-cal .foil-grid .custom-radio-box label {
    /* IE10+ CSS styles go here */
    border-top-width: 3px;
  }
}

.y-cal .foil-grid .custom-radio-box .color-box {
  width: 100%;
  height: 120px;
  margin-top: -2px;
  border-radius: 5px 5px 0 0;
}

.y-cal .foil-grid .custom-radio-box h6 {
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
}

.y-cal .personalizacja-additional-field {
  display: none;
  margin-top: 15px;
}

.y-cal .send {
  display: none;
  margin-top: 25px;
  background-color: #eee;
  padding: 25px;
}

.y-cal .send__input {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  display: block;
}

.y-cal .send__label {
  margin: 5px 0 15px;
  font-size: 14px;
  font-weight: lighter;
}

.y-cal .send__button {
  background-color: #1894ce;
  border-radius: 3px;
  border: none;
  font-size: 18px;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

.y-cal .send__button:hover {
  opacity: .8;
}

.y-cal .custom-file-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.y-cal .custom-file-input label {
  margin-bottom: 10px;
  background: #fff;
  z-index: 10;
  padding: 5px 15px 5px 0;
}

.y-cal .custom-file-input label::after {
  content: 'Przeglądaj';
  position: absolute;
  right: 0;
  top: -2px;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  color: #1894ce;
  border: 1px solid #aaa;
}

.y-cal .custom-file-input label::after:hover {
  cursor: pointer;
  opacity: .85;
}

.y-cal .custom-file-input label.selected {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.y-cal .custom-file-input label.selected::after {
  display: none;
}

.y-cal .custom-file-input label .delete-file {
  background-color: #eee;
  padding: 8px 15px;
  border-radius: 5px;
  color: #000;
  border: 1px solid #aaa;
  min-width: 98px;
  margin-right: -15px;
}

.y-cal .custom-file-input label .delete-file:hover {
  cursor: pointer;
  opacity: .85;
}

.y-cal .custom-file-input input {
  position: absolute;
  opacity: 0;
}

.y-cal .choose-shape-button {
  border: none;
  background: none;
  width: 100%;
  display: block;
  font-size: 24px;
  text-align: center;
  margin: 25px 0;
}

.y-cal .choose-shape-button:hover {
  opacity: .7;
}

.choose-custom-shape-button {
  border: none;
  background: none;
  background-color: #eee;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin: 0 5px;
}

.choose-custom-shape-button:hover {
  opacity: .7;
}

.shapes-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999990;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.shapes-popup__inner {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  border: 4px solid #eee;
  border-radius: 15px;
  position: relative;
  padding: 25px;
  margin: 100px auto 0;
  max-height: calc(100vh - 120px);
  overflow-y: scroll;
}

.shapes-popup__close {
  border: none;
  background: none;
  font-size: 36px;
  position: absolute;
  right: 15px;
  top: 10px;
}

.shapes-popup__close:hover {
  opacity: .7;
}

.shapes-popup__header {
  padding-right: 25px;
  margin-bottom: -25px;
}

.shapes-popup__header p {
  font-size: 18px;
}

.shapes-popup .thumbs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .shapes-popup .thumbs {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

.shapes-popup .thumbs > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .shapes-popup .thumbs > li {
    /* IE10+ CSS styles go here */
    display: inline-block;
    width: 19%;
  }
}

.shapes-popup .thumbs > li h5 {
  font-weight: bold;
}

.shapes-popup .thumbs > li h5 span {
  margin-top: 15px;
  font-size: .8;
  font-weight: normal;
}

.shapes-popup .thumb {
  text-align: center;
}
/*# sourceMappingURL=y_calculator.css.map */

.modal {
  text-align: center;
}
.y-cal .product-select {
min-width: 199px;
}
.y-cal .measurements .input-text {
margin: 10px 0;
width: 100%;
}

@media screen and (min-width: 768px) { 
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-title {
    text-align: center;
}
.modal-footer {
	text-align: center;
}

#counts-step label {
    font-weight: 500;
}



.product-select-wrapper .product-select {
  width: 100%;
}


.edition-count-row--head .edition-count-row__count {align-self: end;}
.edition-count-row--head .edition-count-row__delivery {align-self: end;}


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

	.input-text::placeholder {
		font-size: 12px;
	}
	
  .y-cal .flex-between-center {
    display: block;
  }

​  .measurements {
    flex-wrap: wrap;
  }

  .y-cal .edition-count-row__inner {
    -ms-grid-columns: 80px auto;
    grid-template-columns: 80px auto;
    grid-gap: 5px;
  }

​  .y-cal .edition-count-row__count {
    display: flex;
    align-items: center;
  }

​  .y-cal .edition-count-row__delivery {
    -ms-grid-columns: 1fr 1fr 55px;
    grid-template-columns: 1fr 1fr 55px;
    font-size: 16px;
    align-items: center;
  }

​  .y-cal .edition-count-row .delete-custom-count {
    top: 17px;
  }

​  .y-cal .edition-count-row .cart-icon {
    top: 17px;
  }	
	
}

.y-cal .edition-count-row .cart-icon {
    position: absolute;
    right: 10px;
    top: 5px;
    border: none;
    padding: 8px 10px;
    background: #03b003;
    border-radius: 20px;
    line-height: 20px;
}
.y-cal .edition-count-row .cart-icon img {
    width:20px;
}
.y-cal .show-more-issue {
border: none;
background: none;
padding: 0;
margin: 15px 0;
font-size: 16px;
font-weight: bold;
}

.y-cal .foil-grid .custom-radio-box .color-box {
  height: 60px;
}

.y-cal .foil-grid .custom-radio-box h6 {
  padding: 0;
  position: absolute;
}
.y-cal .foil-grid .custom-radio-box .color-box {
  border-radius: 5px;
  margin-bottom: -3px;
}

    section#product .products-nav {
        margin-top: 20px;
    }               
    section#product .products-nav ul {
        padding: 0;
		margin-bottom:40px;
    }
    section#product .products-nav li {
        width: auto;
        text-align: left;
        list-style-type: none;
        display: inline-block;
        margin: 0 15px 0 0;
        font-weight: 700;
        font-size: 18px;
        cursor: pointer;
    }
    section#product .products-nav li:last-child {
        margin: 0;
    }
    section#product .products-nav li:hover,
    section#product .products-nav .active {
        color: #1894ce;
    }
    
    .products-tabs-content {
        
    }   
    
    .products-tabs-item {
        display: none;
    }
    .products-tabs-item__text {
        margin-top: 25px;
    }
    .products-tabs-item:first-child {
        display: block;
    }