/* 48px */
/* 32px */
/* 24px */
/* 20px */
/* 16px */
/* 16px */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  padding: 20px 0px;
  margin: 0px;
  padding-bottom: 80px;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
main > div > h1 {
  margin: 20px 0px;
}

.view-style-img {
  width: 100%;
  height: auto;
}

#m4p-select-style {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  flex: 1 0 auto;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 20px;
}
#m4p-select-style > section {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100%;
  height: 300px;
  background-color: #333333;
  color: #ffffff;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#m4p-select-style > section > div {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  height: 100%;
}
#m4p-select-style > section > div .image-slider {
  display: flex;
  flex-direction: column;
  flex: 0;
  position: relative;
  align-items: center;
  background-color: #545454;
  height: 100%;
}
#m4p-select-style > section > div .image-slider .image-slider-controls > i {
  position: absolute;
  z-index: 4;
  background-color: #ffffff;
  color: #333333;
  top: 45%;
  padding: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#m4p-select-style > section > div .image-slider .image-slider-controls > i:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);
}
#m4p-select-style > section > div .image-slider .image-slider-controls > i.left {
  left: 0px;
}
#m4p-select-style > section > div .image-slider .image-slider-controls > i.right {
  right: 0px;
}
#m4p-select-style > section > div .image-slider .images {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
  width: 100%;
}
#m4p-select-style > section > div .image-slider .images > img {
  min-height: 100%;
}
#m4p-select-style > section > div .image-slider .zoom-control {
  position: absolute;
  z-index: 4;
  background-color: #ffffff;
  color: #333333;
  padding: 10px;
  bottom: 10px;
  left: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#m4p-select-style > section > div .image-slider .zoom-control:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);
}
#m4p-select-style > section > div .image-slider .images {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
  max-width: 300px;
  max-height: 300px;
}
#m4p-select-style > section > div .image-slider .images > img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
#m4p-select-style > section > div .style-description {
  padding-top: 20px;
  display: flex;
  flex: 5;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: relative;
}
#m4p-select-style > section > div .style-description:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
  background-color: #333333;
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: skewX(-3deg);
  -ms-transform: skewX(-3deg);
  transform: skewX(-3deg);
  -webkit-box-shadow: -6px 0px 6px -3px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -6px 0px 6px -3px rgba(0, 0, 0, 0.16);
  box-shadow: -6px 0px 6px -3px rgba(0, 0, 0, 0.16);
}
#m4p-select-style > section > div .style-description .top {
  z-index: 4;
  padding: 20px;
  padding-top: 0px;
  margin-bottom: 20px;
}
#m4p-select-style > section > div .style-description .top > h4, #m4p-select-style > section > div .style-description .top > h3 {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}
#m4p-select-style > section > div .style-description .top > p {
  font-size: 1em;
  line-height: 1.2em;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
#m4p-select-style > section > div .style-description .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 4;
  margin: 0px;
  padding-bottom: 20px;
}
#m4p-select-style > section > div .style-description .bottom > pre {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
  font-family: monospace;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 6px;
  background-color: #ffffff;
  color: #333333;
}
#m4p-select-style > section > div .style-description .bottom > h4 {
  font-size: 32px;
  margin-right: 20px;
}
#m4p-select-style > section > div .style-options-wrapper {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
}
#m4p-select-style > section > div .style-options-wrapper .style-options {
  display: flex;
  flex: 2;
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  padding-right: 20px;
  padding-top: 10px;
}
#m4p-select-style > section > div .style-options-wrapper .style-options > select {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 3px;
  font-size: 1em;
  width: 100%;
  padding: 5px 5px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAAJUlEQVR4AWMYoWAUNDD8R4MNpGlpIM2WBtIc1kCSX4BwOIFRAACnLhjt0YEV0gAAAABJRU5ErkJggg==");
  background-position: right;
  background-repeat: no-repeat;
  line-height: 1.2em;
}
#m4p-select-style > section > div .style-options-wrapper .style-options > select > option {
  background: #ffffff;
  border: none;
  outline: none;
  padding: 2px 5px;
}
#m4p-select-style > section > div .style-options-wrapper .style-options > select:hover {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
#m4p-select-style > section > div .style-options-wrapper .style-options > select::-ms-expand {
  display: none;
}
#m4p-select-style > section > div .style-options-wrapper .style-options > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.2em;
  font-size: 1em;
}
#m4p-select-style > section > div .style-options-wrapper .style-options > span > i {
  margin-top: 2px;
}
#m4p-select-style > section > div .style-options-wrapper > a {
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

@media only screen and (max-width: 837px) {
  #m4p-select-style {
    margin-top: 0px;
    padding: 10px;
  }
  #m4p-select-style > section {
    height: auto;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  #m4p-select-style > section > div {
    flex-direction: column;
    padding: 0px;
  }
  #m4p-select-style > section > div .image-slider {
    background-color: #545454;
    min-height: none;
  }
  #m4p-select-style > section > div .image-slider .images {
    max-width: none;
    max-height: 300px;
  }
  #m4p-select-style > section > div .style-description {
    padding: 10px;
  }
  #m4p-select-style > section > div .style-description .top {
    padding: 0px;
  }
  #m4p-select-style > section > div .style-description .bottom > pre {
    margin-left: 0px;
  }
  #m4p-select-style > section > div .style-options {
    padding: 10px;
    max-width: none;
  }
}
.hero-link-order {
  border-radius: 5px;
  border: none;
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.hero-link-order:hover {
  position: relative;
  top: 1px;
}
.hero-link-order span {
  padding: 10px 20px;
  background: #222;
  color: #ffffff;
}
.hero-link-order span > * {
  font-size: 1.2rem;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
}
.hero-link-order span:hover {
  background: #111;
  text-decoration: none;
}
.hero-link-order span:active {
  background: #333;
  color: #999;
}
.hero-link-order span > i {
  line-height: 2rem;
}

.gradient-border-wrap {
  padding: 1px !important;
}

.gradient-border {
  background: transparent;
  color: white;
  display: flex;
  padding: 1px;
  border-radius: inherit;
}

/*# sourceMappingURL=portfolio.css.map */
