@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css);.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  padding: 1.2rem;
}

.react-responsive-modal-modal {
  max-width: 800px;
  position: relative;
  padding: 1.2rem;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.react-responsive-modal-modalCenter {
  margin: auto;
}

.react-responsive-modal-closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  display: flex;
}

@keyframes react-responsive-modal-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes react-responsive-modal-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*!
 * https://github.com/YouCanBookMe/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  width: 450px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
  cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}
.rdtNew, .rdtOld{
  visibility: hidden; 
}.buttonBack___1mlaL,.buttonFirst___2rhFr,.buttonLast___2yuh0,.buttonNext___2mOCa,.buttonNext___3Lm3s,.dot___3c3SI{cursor:pointer}.image___xtQGH{display:block;width:100%;height:100%}.spinner___27VUp{position:absolute;top:calc(50% - 15px);left:calc(50% - 15px);width:30px;height:30px;animation-name:spin___S3UuE;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite;border:4px solid #a9a9a9;border-top-color:#000;border-radius:30px}@keyframes spin___S3UuE{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.container___2O72F{position:relative;overflow:hidden;height:100%;width:100%}.overlay___IV4qY{position:absolute;top:0;left:0;bottom:0;right:0;opacity:0;cursor:zoom-in;transition:opacity .3s,transform .3s}.hover___MYy31,.loading___1pvNI,.zoom___3kqYk{opacity:1}.imageLoadingSpinnerContainer___3UIPD{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#f4f4f4}.slide___3-Nqo{position:relative;display:block;box-sizing:border-box;height:0;margin:0;list-style-type:none}.slide___3-Nqo:focus{outline:none!important}.slideHorizontal___1NzNV{float:left}[dir=rtl] .slideHorizontal___1NzNV{direction:rtl;transform:scaleX(-1)}.slideInner___2mfX9{position:absolute;top:0;left:0;width:100%;height:100%}.focusRing___1airF{position:absolute;top:5px;right:5px;bottom:5px;left:5px;pointer-events:none;outline-width:5px;outline-style:solid;outline-color:Highlight}@media (-webkit-min-device-pixel-ratio:0){.focusRing___1airF{outline-style:auto;outline-color:-webkit-focus-ring-color}}.horizontalSlider___281Ls{position:relative;overflow:hidden;touch-action:pan-y pinch-zoom}[dir=rtl] .horizontalSlider___281Ls{direction:ltr;transform:scaleX(-1)}.horizontalSliderTray___1L-0W{overflow:hidden;width:100%}.verticalSlider___34ZFD{position:relative;overflow:hidden}.verticalSliderTray___267D8{overflow:hidden}.verticalTray___12Key{float:left}.verticalSlideTrayWrap___2nO7o{overflow:hidden}.sliderTray___-vHFQ{display:block;list-style:none;padding:0;margin:0}.sliderAnimation___300FY{transition:transform .5s;transition-timing-function:cubic-bezier(.645,.045,.355,1);will-change:transform}.masterSpinnerContainer___1Z6hB{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#f4f4f4}.carousel .control-arrow,.carousel.carousel-slider .control-arrow{-webkit-transition:all .25s ease-in;-moz-transition:all .25s ease-in;-ms-transition:all .25s ease-in;-o-transition:all .25s ease-in;transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:focus,.carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:''}.carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.carousel .control-prev.control-arrow{left:0}.carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.carousel .control-next.control-arrow{right:0}.carousel .control-next.control-arrow:before{border-left:8px solid #fff}.carousel-root{outline:none}.carousel{position:relative;width:100%}.carousel *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.carousel img{width:100%;display:inline-block;pointer-events:none}.carousel .carousel{position:relative}.carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.carousel .thumbs-wrapper{margin:20px;overflow:hidden}.carousel .thumbs{-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);position:relative;list-style:none;white-space:nowrap}.carousel .thumb{-webkit-transition:border .15s ease-in;-moz-transition:border .15s ease-in;-ms-transition:border .15s ease-in;-o-transition:border .15s ease-in;transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:none}.carousel .thumb.selected,.carousel .thumb:hover{border:3px solid #333}.carousel .thumb img{vertical-align:top}.carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.carousel.carousel-slider .control-arrow:hover{background:rgba(0,0,0,0.2)}.carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;-webkit-transition:height .15s ease-in;-moz-transition:height .15s ease-in;-ms-transition:height .15s ease-in;-o-transition:height .15s ease-in;transition:height .15s ease-in}.carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-vertical .slider{-webkit-flex-direction:column;flex-direction:column}.carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.carousel .slider.animated{-webkit-transition:all .35s ease-in-out;-moz-transition:all .35s ease-in-out;-ms-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.carousel .slide img{width:100%;vertical-align:top;border:0}.carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.carousel .slide .legend{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:0.25;-webkit-transition:opacity .35s ease-in-out;-moz-transition:opacity .35s ease-in-out;-ms-transition:opacity .35s ease-in-out;-o-transition:opacity .35s ease-in-out;transition:opacity .35s ease-in-out}.carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media (min-width: 960px){.carousel .control-dots{bottom:0}}.carousel .control-dots .dot{-webkit-transition:opacity .25s ease-in;-moz-transition:opacity .25s ease-in;-ms-transition:opacity .25s ease-in;-o-transition:opacity .25s ease-in;transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px rgba(0,0,0,0.9);background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.carousel .control-dots .dot.selected,.carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,0.9);color:#fff}.carousel:hover .slide .legend{opacity:1}
/*------------------------------------------------------------------
        File Name: responsive.css
        Template Name: auricle
-------------------------------------------------------------------*/
/*--cover up mac , mac-book---*/

@media only screen and (min-width: 1024px) and (max-width: 1920px) {
    .s-skeleton--h-600-new{
        height: 490px;
    }
    
    .slide_banner1 {
        /*background-image: url('../images/slide1.png');*/
        max-height:670px;
        position: relative;
        background-repeat: no-repeat;
        background-size: auto;
        background-position: bottom center;
        padding-top: 85px;
    }
    .header {
        padding: 2px 0;
        position: fixed;
        z-index: 999 !important;
        width: 100%;
        background: #fff;
        box-shadow: 0 15px 30px -25px #000;
    }
    .home_product_name{
        width:350px;
        font-size:17px;
        margin-left:90px;
        float:left;
        cursor:pointer;
        color:black;
}

.home_product_ship{
    width:350px;
    font-size:17px;
    margin-left:90px;
    float:left;
    cursor:pointer;
    color:grey;
}

.home_product_price
    {
        font-size:14px;
        margin-left:76px;
        cursor: pointer;
        color:black;
    }

    .home_product_star{
        width:240px;
        padding-left:102px;
    }

    .list_pad_top{
        padding-top: 40px;
    }
    .list_mar_move{
        margin-left: 40px;
    }

    .header_search{
            position: absolute;
            z-index: 9999;
            background-color: rgb(255, 255, 255);
            width: 430px;         
            color:1px solid #f96495;
    }
    .price_data{
        width: 240px;
        margin-left: -63px;
    }

    .price_show{
        color: black;
       font-size: 17px;
    }
     
    .m_left{
        margin-left:-23px;
    }

    .ship_name
    {
        position: absolute;
        margin-left: 47px;
    }

    .margin_60{
        margin-left: 200px;
        margin-right: 200px;
    }

 }

 /*--mac book pro , and mac-book retina display screen---*/
 
 @media only screen and (min-width: 1920px) and (max-width: 2560px) {
    .s-skeleton--h-600-new{
        height: 490px;
    }
    
    .slide_banner1 {
        max-height:735px;
        position: relative;
        background-repeat: no-repeat;
        background-size: auto;
        background-position: bottom center;        
        padding-top: 85px;
    }
    .header {
        padding: 2px 0;
        position: fixed;
        z-index: 999 !important;
        width: 100%;
        background: #fff;
        box-shadow: 0 15px 30px -25px #000;
    }
   
    .home_product_name{
        width:350px;
         color:black;
        font-size:23px;
        margin-left:150px;
        float:left;
        cursor:pointer;
        line-height: 1.2;
}
.home_product_ship{
    width:350px;
        font-size:23px;
        margin-left:150px;
        float:left;
        cursor:pointer;
        line-height: 1.2;
        color:grey;
}
   .home_product_price
    {
        font-size:14px;
        margin-left:120px;
        cursor: pointer;
        color:black;
    }
    .home_product_star{
        width:305px;
        padding-left:165px;
    }

    .list_pad_top{
        padding-top: 100px;
    }
    .list_mar_move{
        margin-left: 95px;
    }

    .header_search{
        position: absolute;
            z-index: 9999;
            background-color: rgb(255, 255, 255);
            width: 545px;           
           color:1px solid #f96495;
    }
    .price_data{
        width: 240px;
        margin-left: -63px;
    }

    .price_show{
        color: black;
       font-size: 17px;
    }

    .m_left{
        margin-left:-30px
    }

    .ship_name
    {
        position: absolute;
        margin-left: 47px;
    }
    .margin_60{
        margin-left: 200px;
        margin-right: 200px;
    }
     
 }
@media (min-width: 1200px) and (max-width: 1390px) {
    .s-skeleton--h-600-new{
        height: 440px;
    }
    

    /** ecommere style 2 **/
    .header {
        padding: 2px 0;
        position: fixed;
        z-index: 999 !important;
        width: 100%;
        background: #fff;
        box-shadow: 0 15px 30px -25px #000;
    }
    .home_product_name{
        width:350px;
        font-size:17px;
        margin-left:36px;
        float:left;
        cursor:pointer;
        color:black;
    }
    .home_product_ship{
        width:350px;
        font-size:17px;
        margin-left:36px;
        float:left;
        cursor:pointer;
        color:grey;
    }
    .home_product_price
    {
        width: 240px;
        font-size:14px;
        margin-left:50px;
        cursor: pointer;
        color:black;
    }

    .header_search{
        position: absolute;
        z-index: 9999;
        background-color: rgb(255, 255, 255);
        width: 545px;
        color:1px solid #f96495;
    }
     

    .home_product_star{
        width:305px;
        padding-left:50px;
    }

    .list_pad_top{
        padding-top: 40px;
    }
    .list_mar_move{
        margin-left: -15px;
    }
    .price_data{
        width: 240px;
        margin-left: -63px;
    }

    .price_show{
        color: black;
       font-size: 17px;
    }

    .m_left{
        margin-left:-18px
    }

    .ship_name
    {
        position: absolute;
        margin-left: 47px;
    }



    
    .header_style_ecomm2 .header_top .float-left, .header_style_ecomm2 .header_top .float-right {
        width: 100%;
    }
    .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
        display: flex;
        justify-content: center;
        margin: 4px 0;
    }
    .header_style_ecomm2 .header_top li {
        font-size: 13px;
    }
    
    .header_style_ecomm2 .main_menu div.menu ul li a {
        font-size: 12px;
        padding: 15px 8px;
    }
    
    .right_cart_section ul li {
        margin-right: 20px;
    }
    
    .right_cart_section ul li i {
        margin-right: 5px;
        margin-top: 0px;
        float: left;
        color: #000;
        font-size: 21px;
    }
    
    .search_style_2 .top_search_bar button.submit_search {
        width: 110px;
    }

    .slide_banner0 {
        /*background-image: url('../images/slide1.png');*/
        max-height: 560px;
        position: relative;
        background-repeat: no-repeat;
        background-size: auto;
        background-position: bottom center;
        padding-top: 85px;
    }

    .margin_60{
        margin-left: 60px;
        margin-right: 60px;
    }
    
    
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .s-skeleton--h-600-new{
            height: 440px;
        }
        
        .header {
            padding: 2px 0;
            position: fixed;
            z-index: 999 !important;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px -25px #000;
        }

        .slide_banner0 {
            /*background-image: url('../images/slide1.png');*/
            max-height: 560px;
            position: relative;
            background-repeat: no-repeat;
            background-size: auto;
            background-position: bottom center;
            padding-top: 85px;
        }
        
        .margin_60{
            margin-left: 60px;
            margin-right: 60px;
        }
        
        .body {
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 990px;
        }
        .slide_cont h2 {
            font-size: 45px;
            line-height: 60px;
        }
        .cont_theme_blog h3 {
           font-size: 42px;
           line-height: 60px;
           font-weight: 600;
        }
        .home_page1 .slide_cont {
            margin-top: 145px;
        }
        .layout_screen {
            left: 0;
            width: 140%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .bt_main {
           height: 48px;
           padding: 0 25px; 
        }
        .team_member_img img {
            width: 100%;
        }
        .footer_icon img {
            width: 50px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .logo img {
            width: 190px;
            margin: 0;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 200px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header_style_ecomm2 .header_top .float-left,.header_style_ecomm2 .header_top .float-right {
            width: 100%;
        }
        .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
            display: flex;
            justify-content: center;
            margin: 3px 0;
        }
        .header_style_ecomm2 .header_top li {
            font-size: 12px;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            display: none;
        }
        .header_style_ecomm2 .main_menu div.menu ul li a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 11px;
            padding: 15px 2px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #2ea6ff;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        .header_style_ecomm .menu > ul > li > a {
            font-size: 11px;
            padding: 17px 9px;
            font-weight: 600;
        }
        .top_search_bar .field input {
            font-size: 12px;
        }
        
        /** home page 13 **/
        
        .header.header_style13 .menu > ul > li > a {
           font-size: 13px;
           padding-left: 12px;
           padding-right: 12px;
        }
        
        .logo.desk_logo {
           margin: 10px 15px;
        }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
        .s-skeleton--h-600-new{
            height: 440px;
        }
        
        .col-md-1{
            width:8.33%;
            float:left;
        }
        .col-md-2{
            width:16.66%;
            float:left;
        }
        .col-md-3{
            width:25%;
            float:left;
        }
        .col-md-4{
            width:33.33%;
            float:left;
        }
        .col-md-5{
            width:41.66%;
            float:left;
        }
        .header {
            padding: 2px 0;
            position: fixed;
            z-index: 999 !important;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px -25px #000;
        }
        
        .container {
            max-width: 750px;
            width: 100%;
        }
        .slide_cont h2 {
            font-size: 35px;
            line-height: 40px;
        }
        .home_page1 .slide_cont {
            margin-top: 158px;
        }
        .layout_padding {
            padding: 80px 0 75px;
        }
        .layout_screen {
            left: -90px;
            position: relative;
            width: 180%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            padding: 80px 0 75px;
            margin: 0 !important;
        }
        .table_price_per p {
            font-size: 40px;
            font-weight: 300;
        }
        .team_member_img img {
            width: 100%;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 100px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            position: absolute;
            top: -152px; 
        }  
        .header_bottom_thirth {
            display: none;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        /* responsive menu */
        .header_style26 .menu > ul > li > a {
            padding: 7px 25px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .cake_club .menu > ul > li a {
            font-size: 13px;
            margin: 0;
        }
        .menu-dropdown-icon::before {
            padding: 13px 15px 13px;
        }
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            height: 85px;
        }
        .header.header_style14 .main_menu {
            width: 100%;
            padding-left: 200px;
            margin: 25px 0 0;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #222;
        }
        .home_page14 .main_menu .clearfix {
            top: 65px;
        }
        .home_page14 .menu-dropdown-icon::before {
            padding: 16px 15px 16px;
        }
        .slide_banner19 {
            min-height: 380px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        /** home page 13 **/
        
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
       }
        
    }
    
    @media (min-width:576px) and (max-width:767px) {
        .s-skeleton--h-600-new{
            height: 440px;
        }
        
        /** basic css **/
        .col-md-1{
            width:8.33%;
            float:left;
        }
        .col-md-2{
            width:16.66%;
            float:left;
        }
        .col-md-3{
            width:25%;
            float:left;
        }
        .col-md-4{
            width:33.33%;
            float:left;
        }
        .col-md-5{
            width:41.66%;
            float:left;
        }
        .header {
            padding: 2px 0;
            z-index: 999 !important;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px -25px #000;
        }
        
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        .container {
            max-width: 540px;
            width: 100%;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
           font-size: 40px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
            min-height: auto;
        }
        .slide_cont h2 {
            font-size: 30px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: inherit;
        }
        .slide_pc_img {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 430px;
            margin: 0 auto;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 30px;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .footer_style_2 img.img-responsive {
            width: 100%;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .right_cart_section {
            position: absolute;
            top: -248px;
        } 
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .slide_banner1 {
           min-height: auto;
           position: relative;
           background-repeat: no-repeat;
           background-size: cover;
           background-position: bottom center;
        } 
        .slide_cont {
            margin: 50px 0 100px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        
        .product-table table.table {
            min-width: 720px;
        }
        
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        
    }
    
    @media (max-width:575px) {
        .s-skeleton--h-600-new{
            height: 440px;
        }
        
        /** cross layout **/
        .col-md-1{
            width:8.33%;
            float:left;
        }
        .col-md-2{
            width:16.66%;
            float:left;
        }
        .col-md-3{
            width:25%;
            float:left;
        }
        .col-md-4{
            width:33.33%;
            float:left;
        }
        .col-md-5{
            width:41.66%;
            float:left;
        }
        .header {
            padding: 2px 0;
            z-index: 999 !important;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px -25px #000;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .cross_layout:before {
            height: 20px;
        }
        .cross_layout:after {
            height: 20px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
            font-size: 32px;
            line-height: 35px;
            letter-spacing: -1px;
        }
        .container {
            max-width: 100%;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
           position: relative;
           background-repeat: no-repeat;
           background-size: auto 100%;
           height: auto;
           min-height: auto;
           background-position: bottom left;
        }
        .slide_cont h2 {
            font-size: 28px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: 0;
        }
        .slide_pc_img {
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
        .slide_bt .bt_main {
            border: solid #1e72bc 1px;
            line-height: 43px;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 15px;
        }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 100%;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** portfolio popup **/
        
        .description_popup {
            padding: 30px;
        }
        #portfolio_pop .modal-content {
            width: 90%;
            margin: 0 auto;
        }
        
        .description_popup h3 {
            font-size: 18px;
        }
        
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin: 50px 0 100px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 5px;
            margin: 12px 0 0;
        }
        .right_cart_section ul li {
            margin-right: 20px;
        }
        .right_cart_section ul {
            margin: 0 0 10px; 
        }
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        .product-table table.table {
            min-width: 720px;
        }
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        .inner_banner1 h2 {
            font-size: 30px;
        }
        .cont_theme_blog h3 {
            font-size: 30px;
            line-height: 38px;
            font-weight: 600;
        }
        .cont_theme_blog p {
           font-size: 16px;
           line-height: normal;
        }
        .information_blogs {
            margin-bottom: 45px;
        }
        
    }
    
    
    /*---------------------------------------------
        Responsive Menu 
    ---------------------------------------------*/
    
    @media only screen and (max-width: 991px) {
        /* .s-skeleton--h-600-new{
            height: 547px;
        } */
        .s-skeleton--h-600-new{
            height: 440px;
        } 
        .header {
            padding: 2px 0;
            z-index: 999 !important;
            width: 100%;
            background: #fff;
            box-shadow: 0 15px 30px -25px #000;
        }
        .test{
            margin-left: 114px;
        }
        .only_desk_menu {
            display: none;
        }
        .only_mobile_tab_menu {
            display: block;
        }
        .menu {
            margin: -56px 0 0;
            float: right;
        }
        .menu-container {
            width: 100%;
        }
        .menu-container .menu {
            display: inline-block;
        }
        .menu > ul > li > ul.normal-sub > li {
            width: 50%;
            padding: 0;
        }
        .menu > ul > li > ul > li {
            padding: 8px 0;
        }
        .menu > ul > li > ul.normal-sub > li a {
            border: 0;
            padding: 8px 0;
        }
        .menu > ul > li > ul > li a {
            color: #777;
            padding: 0;
            width: 100%;
            display: block;
            font-size: 13px;
        }
        .menu-mobile {
        display: block;
        padding: 0;
        width: 35px;
        cursor: pointer !important;
        height: 35px;
        border: solid #1e72bc 2px;
        border-radius: 5px;
        z-index: 9;
        }
        .menu-mobile {
            text-align: center;
            color: #1e72bc;
            font-size: 18px;
            margin-top: -20px;
        }
        .menu-mobile:hover,
        .menu-mobile:focus {
            border-color: #000;
            color: #000;
        }
        .menu-dropdown-icon:before {
            display: block;
        }
        .menu > ul > li > ul > li {
            margin: 0;
            padding-top: 0;
            padding-bottom: 0;
            list-style: none;
            width: 50%;
            background: none;
            float: left;
            min-height: auto;
        }
        .menu > ul > li {
            width: 100%;
            float: none;
            display: block;
            border-bottom: solid #ddd 2px;
        }
        .menu > ul > li a {
            padding: 10px 15px 10px;
            width: 100%;
            display: block;
        }
        .menu > ul > li > ul {
            position: relative;
            padding: 10px 15px;
            overflow-y: auto;
            border: none;
            border-top: solid #ddd 2px;
            width: 100%;
            min-height: auto;
            background-image: none;
            box-shadow: none;
            margin: 0;
        }
        .menu > ul > li > ul > li:nth-child(2n+1) {
            background: #fff;
        }
        .menu > ul > li > ul.normal-sub {
            width: 100%;
            padding: 10px 15px;
        }
        .menu > ul > li > ul > li:first-child {
            margin: 0;
        }
        .menu > ul > li > ul > li > ul {
            position: relative;
        }
        .menu > ul > li > ul > li > ul > li {
            float: none;
        }
        .main_menu .clearfix {
            position: absolute;
            width: 100%;
            left: 0;
            top: 5px;
            z-index: 9;
            background: #fff;
            transition: ease all 0.5s;
            opacity: 0;
            visibility: hidden;
            border-top: solid #ddd 2px;
        }
        .main_menu .clearfix.show-on-mobile {
            opacity: 1;
            visibility: visible;
        }
        .responsive_logo {
            display: block;
        }
        .desk_logo {
            display: none;
        }
    }
    
    /*------------------------------------------------------------------
        File Name: style.css
        Template Name: auricle
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
        1. import fonts
-------------------------------------------------------------------*/
/** Generated by FG **/
@font-face {
    font-family: 'Gotham_Book_Regular';
    src: url(/fonts/Gotham_Book_Regular.eot);
    src: local('☺'),
    url(/fonts/Gotham_Book_Regular.woff) format('woff'),
    url(/fonts/Gotham_Book_Regular.ttf) format('truetype'),
    url(/svg/Gotham_Book_Regular.svg) format('svg');
    font-weight: normal;
    font-style: normal;
  }
  /** Generated by FG **/
  @font-face {
      font-family: 'Gotham-Bold';
      src: url(/fonts/Gotham-Bold.eot);
    src: local('☺'),
    url(/fonts/Gotham-Bold.woff) format('woff'),
    url(/fonts/Gotham-Bold.ttf) format('truetype'),
    url(/svg/Gotham-Bold.svg) format('svg');
      font-weight: normal;
      font-style: normal;
  }

/*------------------------------------------------------------------
        2. import files
    -------------------------------------------------------------------*/

/* @import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.0/animate.css); */
/* @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/fontawesome.min.js); */


/*------------------------------------------------------------------
        3. basic
-------------------------------------------------------------------*/


* {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -moz-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
    -o-transition: ease all 0.5s;
}


input,button,select,textarea {
	outline: none !important;
}

html,
body {
    color: #898989;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
    font-weight: 400;
    overflow-x: hidden !important;
}

body {
    overflow: hidden !important;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0;
    font-weight: normal;
    line-height: normal;
    color: #1f1f1f;
    margin: 0
}

h6 {
    font-size: 14px;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px
}

.small_heading.main-heading h2 {
    font-size: 21px;
}

.small_heading.main-heading::after {
    top: 18px;
}

.small_heading.main-heading {
    margin-bottom: 20px;
    width: 100%;
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none!important;
    opacity: 1
}

ol,
ul {
     
    margin: 0;
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
    outline: none;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.button_section {
    float: left;
    width: 100%;
}

.right_bt {
    float: right;
}

a.btn,
button.btn {
    min-width: 170px;
    height: 50px;
    border-radius: 100px;
    padding: 0;
    text-align: center;
    line-height: 52px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
    border: solid transform 1px;
}

a.btn:hover,
button.btn:hover,
a.btn:focus,
button.btn:focus {
    background: #252525;
    color: #fff;
}

button {
	transition: ease all 0.5s;
	cursor: pointer;
}

.bt_main {

    color: #fff;
    font-size: 14px;
    min-width: 148px;
    float: left;
    text-align: center;
    height: 48px;
    line-height: 50px;
    font-weight: 500;
    border: none;
    padding: 0 35px;
    transition: ease all 0.5s;

}

.bt_main:hover,
.bt_main:focus {
    color: #fff;
}

.reverse_bt.bt_main {
    color: #fff;
}

.white_bt.bt_main {
    background: #fff;
}

.white_bt.bt_main:hover,
.white_bt.bt_main:focus {
    color: #fff;
}

.field button {
    background: #f96495;
    color: #fff;
    font-size: 14px;
    width: auto;
    
    text-align: center;
    height: 48px;
    border-radius: 25px;
    line-height: 50px;
    font-weight: 500;
    border: none;
    margin-top: 15px;
    transition: ease all 0.5s;
    cursor: pointer;
    min-width: 148px;
	padding-left:75px;
	padding-right:75px;
}

.field button:hover, .field button:focus {
    background: #ffffff;
    color: #1e72bc;
}

.border_circle_bt {
    border-radius: 50px;
}

.padding-bottom_0 {
    padding-bottom: 0 !important;
}

.padding-top_0 {
    padding-top: 0 !important;
}

.padding-bottom_1 {
    padding-bottom: 10px !important;
}

.padding-bottom_2 {
    padding-bottom: 20px !important;
}

.padding-bottom_3 {
    padding-bottom: 30px !important;
}

.padding-bottom_4 {
    padding-bottom: 40px !important;
}

.padding-bottom_5 {
    padding-bottom: 50px !important;
}

.color_black p,
.color_black p.large,
.color_black ul,
.color_black ul li {
    color: #000;
}

.black_color {
    color: #000 !important;
}

.extra_light_font {
    font-weight: 300 !important;
}

.light_font {
    font-weight: 300 !important;
}

.normal_font {
    font-weight: 400 !important;
}

.semi_bold_font {
    font-weight: 600 !important;
}

.bold_font {
    font-weight: 700 !important;
}

.extra_bold_font {
    font-weight: 900 !important;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

.margin_0 {
    margin: 0 !important;
}

.padding_0 {
    padding: 0 !important;
}


h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2px;
    position: relative;
    margin-bottom: 25px;
    line-height: 50px;
    position: relative;
}

h3 {
    font-size: 24px;
    color: #000;
    line-height: normal;
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
    color: #000;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
}

h5 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
    color: #000;
}

p {
    color: #999;
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

p.large {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
}

p.large_2 {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.img-responsive {
    max-width: 100%;
}

button,
input,
select,
textarea,
option {
    font-family: 'Poppins', sans-serif;
}

a#submit {
    z-index: 1;
}

a:hover,
a:focus {
    color: #000;
    text-decoration: none;
}

.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10 {
    padding: 0 15px;
    float: left;
    min-height: 25px;
}

.border_radius_0 {
    border-radius: 0 !important;
}

.span1 {
    width: 10%;
}

.span2 {
    width: 20%;
}

.span3 {
    width: 30%;
}

.span4 {
    width: 40%;
}

.span5 {
    width: 50%;
}

.span6 {
    width: 60%;
}

.span7 {
    width: 70%;
}

.span8 {
    width: 80%;
}

.span9 {
    width: 90%;
}

.span10 {
    width: 100%;
}

.container {
    width: 1200px;
    max-width: 1200px;
}

.layout_padding {
    padding-top: 80px;
    padding-bottom: 100px;
}

.layout_padding_2 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.full {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.vertical-center {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.right_side {
    float: right;
}

.text_align_right {
    text-align: right;
}

.left_side {
    float: left;
}

.text_align_left {
    text-align: left;
}

.text_align_center {
    text-align: center;
}

.center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.border_dotted_circle {
    border: dotted #e1e1e1 3px;
    width: 170px;
    height: 170px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.border_dotted_circle:hover,
.border_dotted_circle:focus {
    border: dotted #e1e1e1 3px;
    animation-name: rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotate;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotate;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more,
.white_fonts h2 span {
    color: #fff !important;
}

.light_gray_fonts p,
.light_gray_fonts h1,
.light_gray_fonts h2,
.light_gray_fonts h3,
.light_gray_fonts h4,
.light_gray_fonts h5,
.light_gray_fonts h6,
.light_gray_fonts ul,
.light_gray_fonts ul li,
.light_gray_fonts ul li a,
.light_gray_fonts ul i,
.light_gray_fonts .post_info i,
.light_gray_fonts div,
.light_gray_fonts a.read_more {
    color: #898989 !important;
}

.parallax_bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.dark_gray {
    background-color: #252525;
    min-height: 400px;
}

.list_style_1 {
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0 15px;
}

.list_style_1 i {
    float: left;
    margin: 3px 16px 0 0;
}

.light_silver {
    background: #f4f6fe;
}

.light_silver_2 {
    background: #f8f8f8;
}

hr.dottad_border {
    border-top: dotted 3px;
    margin: 80px 0;
}

.padding_right_left_15 {
    padding-left: 15px;
    padding-right: 15px;
}

.padding_right_left_25 {
    padding-left: 25px;
    padding-right: 25px;
}

.padding_top_80 {
    padding-top: 80px;
}

.padding_bottom_80 {
    padding-bottom: 80px;
}

.padding_bottom_0 {
    padding-bottom: 0;
}

.padding_inner {
    padding-top: 75px;
    padding-bottom: 75px;
}

.theme_color_bg h2::after {
    background: #fff;
}

.layout_pur_minus {
    margin-bottom: -190px;
    position: relative;
    z-index: 1;
}

.haf_full_section {
    position: relative;
}

.haf_full_section.right_full::after {
    content: "";
    display: block;
    width: 50%;
    background-color: #333;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.haf_full_section.left_full::before {
    content: "";
    display: block;
    width: 50%;
    background-color: #333;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.gray1 {
    background: #464646;
}

.gray2 {
    background-color: #555555;
}

.overlap_top_img_main {
    margin: -70px 0 0 0;
}

.center_padding {
    padding: 150px 0 120px;
}

.border_0 {
    border-width: 0 !important;
}

.oswald_fonts h1,
.oswald_fonts h2,
.oswald_fonts h3,
.oswald_fonts h4,
.oswald_fonts h5,
.oswald_fonts h6 {
    font-family: 'Oswald', sans-serif;
}

.small_radius {
    border-radius: 5px;
}

section .small_head h2 {
    font-size: 30px;
}

.margin_top_0 {
    margin-top: 0 !important;
}

.montserrat_fonts li,
.montserrat_fonts a,
.montserrat_fonts ul {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.margin_top_30 {
    margin-top: 30px; 
}

.margin_bottom_30 {
    margin-bottom: 30px; 
}

.padding_top_0 {
    padding-top: 0 !important;
}

/*------------------------------------------------------------------
        4. loader
-------------------------------------------------------------------*/


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#status {
    background: url(/images/loading.gif);
    width: 220px;
    height: 220px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/*------------------------------------------------------------------
        5. header
-------------------------------------------------------------------*/

.header_information {
    float: left;
    width: 100%;
    border-bottom: solid #eee 1px;
    padding-bottom: 10px;
}

.header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header_top {
    background: #f6f6f6;
    min-height: 45px;
    padding-bottom: 10px;
}

.heading_main h2 span {
    color: #0aceb1;
}

.header_bg_transparent {
    background: rgba(37, 37, 37, 0.2);
}

.left_head {
    float: left;
}

.left_head ul {
    margin: 12px 0 11px;
}

div.left_head ul li {
    display: inline;
    margin-right: 30px;
    font-size: 14px;
    color: #3f504d;
}

div.left_head ul li i {
    font-size: 16px;
    margin-right: 5px;
    color: #1e72bc;
}

.right_head {
    float: right;
}

.right_head .social_icon_part {
    float: left;

}

.right_head .button_section {
    float: right;
    width: auto;
}

/**-- logo --**/


.header_about_us {
    padding: 2px 0;
    position: fixed;
    z-index: 11 !important;
    width: 100%;
    background: #fff;
}

.logo {
    margin: 13px 0 13px;
    float: left;
}


/**-- menu --**/

.menu {
    width: 100%;
    margin: -1px 0 0;
}

.main_menu {
    margin: 20px 0 0;
}

.menu-container {
    margin: 0 auto;
    background: #e9e9e9;
}

.menu a.logo {
    display: inline-block;
    padding: 1.5em 3em;
    width: 19%;
    float: left;
}

.menu img {
    max-width: 100%;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile::after {
    content: "\f0c9";
    font-family: "fontawesome";
    position: relative;
    left: -2px;
    top: 2px;
}

.menu-dropdown-icon::before {
    content: "\f078";
    font-family: "fontawesome";
    display: none;
    cursor: pointer;
    float: right;
    padding: 16px 15px 16px;
    background: transparent;
    color: #333;
    border-left: solid #ddd 2px;
    font-size: 11px;
}

.menu > ul {
    margin: 0;
    width: 100%;
    list-style: none;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    padding: 0;
    margin: 0;
}

.menu > ul > li a {
    padding: 15px 15px;
    display: block;
    color: #333;
    font-size: 20px;
}

.menu > ul > li:hover > a,
.menu > ul > li:focus > a,
.menu > ul > li.active > a {
    color: #f96495;
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background-color: #fff;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0 15px 40px -20px #000;
    padding: 0;
    /*background-image: url('../images/landing_page/bg2.png');*/
    background-size: cover;
    background-position: right bottom;
    min-height: 420px;
    border-top: solid #1e72bc 5px;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
    padding: 15px 20px 0 20px;
    min-height: auto;
}

.menu > ul > li > ul > li:nth-child(4) {
    border-right: none;
}

.menu > ul > li > ul > li a {
    color: #222;
    padding: 0;
    width: 100%;
    display: block;
}

.menu > ul > li > ul > li a:hover {
    color: #1e72bc;
}

.menu > ul > li > ul > li >ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 10px;
}

.menu > ul > li > ul > li > ul >li a {
    border: 0;
    font-size: 13px;
    font-weight: 400;
}

.menu > ul > li > ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 15px 10px;
    min-height: auto;
    background-image: none;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
    padding: 10px 15px;
    min-height: auto;
}

.menu > ul > li > ul.normal-sub >li a {
    border: 0;
    font-size: 13px;
    font-weight: 400;
}

.right_bt {
    float: right;
    margin-top: 23px;
}

/** social icon **/

.social_icons {
    float: right;
    margin: 9px 0 0px;
}

section .social_icons {
    width: 100%;
}

.social_icons li {
    display: inline;
    font-size: 15px;
    margin-left: 15px;
}

.social_icons li {
    display: inline;
    font-size: 14px;
    margin-left: 15px;
}

.social_icons li a {
    color: #222;
    font-size: 18px;
}

.social_icons li a:hover,
.social_icons li a:focus {
   color: #0aceb1;
}

.logo img {
    width: 235px;
    margin: 0;
}


/*------------------------------------------------------------------
        6. main banner
-------------------------------------------------------------------*/

.slide_cont {
    float: left;
    width: 100%;
    margin-top: 85px;
}

.slide_cont h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
    margin: 0;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

#banner_parallax p, 
#banner_slide p {
    color: #fff;
    font-weight: 300;
    margin-top: 10px;
    position: relative;
    left: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
}

.slide_banner1 {
    /*background-image: url('../images/slide1.png');*/
    max-height: 560px;
    position: relative;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom center;
}

 
.slide_pc_img {
    position: relative;
    z-index: 1;
    margin-bottom: -130px;
}

.slide_pc_img img {
    margin-top: 110px;
    float: left;
    margin-right: 0;
    position: relative;
    right: 150px;
    margin-bottom: 0;
}

#banner_slide .cont_banner_center {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner_slide {
    position: relative;
}

#banner_slide img {
    width: 100%;
}

.home_page1 .slide_cont {
    margin-top: 135px;
}

.home_page1 #banner_slide {
    margin-bottom: -145px;
}

.slide_cont .bt_main {
    margin-top: 10px;
}

/**-- slide style 2 **/


/*------------------------------------------------------------------
        7. section
-------------------------------------------------------------------*/


/**-- main heading --**/

.heading_main {
    width: 100%;
    margin: 0 0 65px;
    letter-spacing: 0;
}

.full_heading {
    width: 100%;
    margin: 0;
}

.heading_style_1 h2::after {
    width: 110px;
    background: #ddd;
    content: "";
    display: block;
    margin: 15px 0 30px;
}

.white_heading_border h2::after {
    background: #fff !important;
}

.center_head_border h2:after,
.center_head_border:after {
    margin-left: auto !important;
    margin-right: auto !important;
}

.color_heading h4 {
    color: #1e72bc;
}

.double_line_heading h2 {
    line-height: 45px;
}

h3.heading_2 {
    font-size: 42px;
    text-transform: none;
    font-weight: 500;
    color: #32414d;
    letter-spacing: -0.5px;
    line-height: 42px;
    margin-bottom: 20px;
}

.feature_information p {
    font-size: 16px;
    line-height: 21px;
}

/**-- contant section --**/

.theme_bg {
    /*background-image: url('../images/bg_layout.png');*/
    background-size: cover;
    min-height: 650px;
    background-position: center;
}

.layout_screen {
    left: -150px;
    position: relative;
}

.cross_layout {
    position: relative;
}

.feature_box {
    min-height: 315px;
    padding: 45px 0 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.2);
}

.app-features li {

    padding-left: 100px;
    position: relative;
    margin: 25px 0 0;
    float: left;
    border-bottom: dotted 1px #ddd;
    padding-bottom: 25px;

}

.app-features li > i {
    position: absolute;
    left: 0;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #fff;
    font-size: 35px;
    font-weight: 500;
    transition: ease all 0.5s;
    top: 0;
    border: solid #0aceb1 2px;
    color: #0aceb1;
}

.app-features ul li:last-child {
    border-bottom: none;
}

.app-features li:hover > i,
.app-features li:focus > i {
    background: #1e72bc;
    border-color: #1e72bc;
    color: #fff;
}

.app-features h4 {
    text-transform: none;
    font-weight: 500;
    color: #666;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gradiant_bg {
    /*background: url('../images/bg_gradinat.png');*/
    min-height: 420px;
    background-position: center center;
    background-size: cover;
}

.cross_layout {
    position: relative;
    overflow: hidden;
}

section.cross_layout {
    padding-top: 140px;
    padding-bottom: 70px;
}
section.cross_layout1 {
    padding-top: 40px;
    padding-bottom: 40px;
}

section.cross_layout2 {
    padding-top: 250px;
    padding-bottom: 70px;
}

.cross_layout::before {
    content: "";
    width: 100%;
    height: 120px;
    /*background: url('../images/top_layer.png');*/
    display: block;
    position: absolute;
    top: 0;
    background-size: 100% 100%;
}

.cross_layout::after {
    content: "";
    width: 100%;
    height: 120px;
    /*background: url('../images/bottom_layer.png');*/
    display: block;
    position: absolute;
    bottom: 0;
    background-size: 100% 100%;
}

.cont_theme_blog h3 {
    text-transform: uppercase;
    background: linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);
    background: -webkit-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);
    background: -moz-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);
    background: -ms-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);
    background: -o-linear-gradient(to right, #1e72bc 0%, #30CFD0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    font-size: 55px;
    line-height: 60px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
}

.cont_theme_blog p {
    font-size: 17px;
    line-height: normal;
    margin-top: 25px;
}

/*------------------------------------------------------------------
        8. price table
-------------------------------------------------------------------*/

.table_price {
    float: left;
    width: 100%;
    background: #fff;
    padding: 0 0 40px 0;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
    border: solid #fff 15px;
}

.table_price_head {
    background: #30CFD0;
    min-height: 80px;
}

.active_price .table_price_head {
    background: #1e72bc;
}

.table_price_head h5 {
    font-weight: 600;
    font-size: 21px;
    line-height: 80px;
    color: #fff;
}

.table_price_per {
    min-height: 122px;
    padding: 47px 0 0;
}

.table_price_per p {
    font-size: 45px;
    color: #1e72bc;
    font-weight: 600;
}

.table_price_per p small {
    font-size: 16px;
}

.table_price_cont_bottm {
    padding: 0 45px;
}

.table_price_cont_bottm ul {
    border-top: solid #ebebeb 2px;
    float: left;
    width: 100%;
    padding: 25px 0;
}

.table_price_cont_bottm ul li {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #333;
    line-height: normal;
    margin: 6px 0;
}

.table_price_bottm {
    float: left;
    width: 100%;
    justify-content: center;
    display: flex;
}


/*------------------------------------------------------------------
        9. team section
-------------------------------------------------------------------*/

.team_imform p {
    margin: 0;
    text-align: center;
    color: #000;
    font-weight: 400;
}

.team_imform p.team_mem_name {
    color: #1e72bc;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}

.team_imform {
    margin: 30px 0;
}


/*------------------------------------------------------------------
        10. blog section
-------------------------------------------------------------------*/

.blog_section {
    background: #fff;
    box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);
    margin-top: 10px;
}

.white_bg .blog_section {
    padding: 15px 0;
}

.blog_feature_cantant {
    padding: 30px 25px 20px;
}

.blog_feature_cantant .blog_head {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

.post_info {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
}

.post_info ul li {
    display: inline;
    margin-right: 10px;
    color: #555;
    font-size: 14px;
}

.blog_feature_cantant p {
    color: #555555;
}

.post_info ul li i {
    color: #1e72bc;
}


/*------------------------------------------------------------------
        11. contact section
-------------------------------------------------------------------*/

.contact_section {
    
	/* background-image: url('../img/cu.png'); */
    height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.contact_section1 {
    
	/* background-image: url('../img/mobcontact.jpg'); */
    height: auto;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.contact_form {
    height: 510px;
    padding-left: 40px;
    padding-right: 40px;
    background-size: cover;
}

.contact_form1 {
    /* height: 510px; */
    padding-left: 40px;
    padding-right: 40px;
    background-size: cover;
}

.contact_form.contact_inform {
    min-height: auto;
    float: left;
    width: 100%;
}

.contact_form_inner {
    max-width: 430px;
}

.contact_form p {
    color: #fff;
}

.contact_form.contact_inform p.inform_label {
    color: #898989;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
}

.contact_form.contact_inform p.inform_cont {
    font-size: 18px;
    color: #000;
}

.contact_form_layout .contact_form {
    padding: 0;
    margin-top: 10px;
}

.contact_form_layout .field input {
    border: solid #e1e1e1 1px;
    height: 45px;
}

.contact_form_layout .field textarea {
    border: solid #e1e1e1 1px;
    height: 160px;
    padding: 15px 30px;
}

.contact_form_layout .contact_form {
    min-height: auto;
}

.golde_yellow_theme .dark_footer .footer_bottom div.center ul li {
    margin: 0 10px;
}



/**-- map --**/

#map {
    height: 100%;
    min-height: 790px;
}


/**-- form --**/

.field input {
    width: 100%;
    margin-top: 10px;
    border: none;
    min-height: 45px;
    padding: 0 25px;
    line-height: 45px;
    font-size: 14px;
}

.field textarea {
    width: 100%;
    margin-top: 10px;
    border: none;
    font-size: 14px;
    min-height: 100px;
    padding: 30px 25px;
}


/*------------------------------------------------------------------
        12. footer
-------------------------------------------------------------------*/

.footer_style_2
{   
    
    width: 100%;
    height: 75px;
}
.footer_style_2_mobile
{   
    
    width: 100%;
    height: 150px;
}
footer {
    
	background-color:#684d3c;
}

.footer_logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer_top {
    padding-bottom: 50px;
}

.footer_blog {
    display: flex;
}

.footer_icon {
    margin-right: 15px;
}

.footer_cont h4 {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    text-transform: none;
    margin: 0 0 7px 0;
}

.footer_blog_2 h3 {
    font-weight: 500;
    font-size: 24px;
    text-transform: none;
    margin: 0 0 25px 0;
    line-height: 30px;
}

.footer_cont p {
    color: #555555;
    line-height: 20px;
    font-size: 14px;
}

.footer_bottom {
    min-height: 50px;
    text-align: center;
    line-height: 50px;
    background: #79676a;
}

.footer_bottom p {
    margin: 0;
    line-height: 50px;
    color: #fff;
    text-align: center !important;
    padding: 0;
}

.footer_bottom p strong {
    color: #fff;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 20px;
    display: block;
    width: 100%;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
    padding-bottom: 20px;
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover, .footer a:hover {
    color: #1e72bc !important;
}

.footer-links a i {
    font-size: 20px;
    position: relative;
    top: 1px;
    margin-right: 15px;
}

.blog_post_footer {
    display: flex;
    margin-bottom: 15px;
}

.blog_post_footer .blog_post_img {
    margin-right: 20px;
}

.blog_post_cont {
    padding: 8px 0;
}

.date {
    font-size: 12px;
    color: #999;
    margin: 0;
    font-weight: 500;
}

.post_head {
    color: #333;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 0;
}



/**== dark footer ==**/

.dark_footer {
    background: #1f222a;
}

.dark_footer h3 {
    color: #fff !important;
}

.dark_footer .post_head {
    color: #fff !important;
}

.dark_footer .footer_bottom strong {
    color: #fff !important;
}

.dark_footer .footer_bottom {
    border-color: rgba(255, 255, 255, 0.10);
}


/*------------------------------------------------------------------
	13. brand logo 
-------------------------------------------------------------------*/

.brand_logo_section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.brand_logo_section li {
    width: 16.66%;
    float: left;
    text-align: center;
    align-items: center;
    display: flex;
    min-height: 100px;
    justify-content: center;
}

.brand_logo_section img {
    width: auto;
}


/*------------------------------------------------------------------
	14. portfolio 
-------------------------------------------------------------------*/

.portfolia_blog_style1 {
    position: relative;
}

.portfolia_img img {
    width: 100%;
}

.portfolia_blog_style1 .portfolia_cont {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .7);
    transform: scale(0);
    transition: ease all 0.3s;
    opacity: 0;
    overflow: hidden;
}

.portfolia_blog_style1:hover .portfolia_cont,
.portfolia_blog_style1:focus .portfolia_cont {
    transform: scale(1);
    opacity: 1;
}

.portfolia_cont p {
    color: #fff;
    font-size: 16px;
    padding: 0 45px;
    line-height: normal;
}

/** pagination **/

.pagination_section {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

ul.pagination .page-item a {
    height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 40px;
    padding: 0;
    min-width: 40px;
    text-align: center;
    color: #898989;
}

ul.pagination li.page-item:first-child .page-link,
ul.pagination li.page-item:last-child .page-link {
    border-radius: 0;
    padding: 0 20px;
    background: #f8f8f8;
}

ul.pagination li.page-item.active .page-link {
    background: #ffb125;
    color: #fff;
    border-color: #ffb125;
}


/** imformation blog **/


.imf_icon img {
    width: 125px !important;
    height: 125px !important;
    border-radius:50%;
}

.imf_icon {
    width: 125px;
    height: 125px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    
    margin: -120px auto 20px;
    padding: 25px;
    background: #fff;
}

.information_blogs {
    background: #eaeaea;
    padding: 40px 40px;
    text-align: center;
    margin-top: 65px;
    height: 250px;
	padding-left: 0px;
    padding-right: 0px;
}

.information_blogs h3 {
    font-size: 24px;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 15px;
}
.information_blogs_white_left {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 85px;
	margin-bottom: 50px;
	margin-left: 38px;
	margin-right: 30px;
    height: 290px;
	padding-left: 0px;
    padding-right: 0px;
}

.information_blogs_white_left h3 {
    font-size: 28px;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 15px;
}
.information_blogs_white_right {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
	margin-bottom: 100px;
	margin-left: 25px;
	margin-right: 150px;
    height: 225px;
	padding-left: 0px;
    padding-right: 0px;
}

.information_blogs_white_right h3 {
    font-size: 28px;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 15px;
}

.inner_page_banner + .layout_padding {
    padding-top: 0 !important;
}

/**-- step section --**/


.step_inner {
    width: 100%;
    position: relative;
}

.step_inner p {
    font-size: 21px;
    margin: 20px 0 0 0;
    font-weight: 400;
    position: relative;
    color: #fff;
    letter-spacing: -0.5px;
    text-align: center;
}

.step_inner i {
    font-size: 65px;
    margin-bottom: 0;
    color: #fff;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: normal;
    text-align: center;
}

.step_blog {
    margin-bottom: 35px;
}

.scren {
    float: left;
    width: 25%;
}


.bg-grey{background-color:#eaeaea;}



.flip-card {
  background: #eaeaea;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
 
}

.flip-card:hover .flip-card-inner {
 transform: rotateY(180deg);
  background: #ffffff !important;
}

.flip-card-front, .flip-card-back {
  background: #eaeaea;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 0;
  -webkit-transform: translate3d(0,0,0);
	visibility:visible;
	padding:10px;
  
}

.flip-card-front {
  color: black;
}

.flip-card-back {
 
  color: #000000;
  transform: rotateY(180deg);
}

.pad{padding: 20px 20px 20px 20px;}

.logo-alignment{float:left;}

.carousel-control.left {background-image:none !important}
.carousel-control.right {background-image:none !important}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
  .pad {
       padding: 20px 20px 20px 20px;
  }
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
  .pad {
       padding: 20px 50px 20px 50px !important;
  }
  .information_blogs_white_left {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 345px !important;
}
.information_blogs_white_right {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 310px !important;
}

.logo-alignment{text-align: center !important; margin-left: 30%;}
}


.field1 input {
    width: 100%;
    margin-top: 10px;
    min-height: 45px;
    padding: 0 25px;
    line-height: 45px;
    font-size: 14px;
    margin-bottom: 15px;
}

.newspaper {
  column-count: 3;
  column-gap: 40px;
}

.five-column {
  column-count: 5;
  column-gap: 20px;
}

.alice-carousel ul li img{
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.searchTerm {
  width: 100%;
  border: 3px solid #eaeaea;
  border-right: none;
  padding: 5px;
  height: 40px;
  margin-top:5px;
  outline: none;
  background-color: #eaeaea;
}

.searchTerm:focus{
  color: #f96495;
}

.searchButton {
  width: 40px;
  height: 40px;
  border: 1px solid #f96495;
  background: #f96495;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 14px;
   margin-top:5px;
}
.searchButton1 {
    width: 100%;
    height: 40px;
    border: 1px solid #f96495;
    background: #f96495;
    text-align: center;
    color: #fff;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    font-size: 14px;
	 margin-top:5px;
}
.blink{
    color:red;
    font-size: 11px;
}

.listing_product {
    
	background-image: url(/images/dw.jpg);
    height: 360px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.listing_product1 {
    height: 360px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    margin-top: 112px;
}

.third-column {
    column-count: 3;
    column-gap: 30px;
  }

  .newspaper {
    column-count: 7;
    column-gap: 10px;
    margin-top: -13px;
    margin-bottom: 17px;
  }
  .parent1 {
    display: block;
    position: relative;
    z-index: 1;
}
.parent1 a{
    color: #FFFFFF;text-decoration: none;
}
.parent1:hover > ul {
    display:block;position:absolute;
}
.child1 {
    display: none;
}
.child1 li {
  
    background-color: #ffffff;
    line-height: 30px;
     width:135px;}
.child1 li a{color: #000000;}
ul{list-style: none;
    margin: 0;padding: 0px;
     min-width:10em;}
ul ul ul{left: 100%;
    top: 0;
    margin-left:1px;}
.parent li:hover {background-color: #ccc;}
.expand1{font-size:12px;float:right;margin-right:5px;}


.dropdown3 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content3 {
    display: none;
    position: absolute;
    background-color: white;
    width: 175px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 3;
    margin-left: -73px;
  
  }

  .dropdown3:hover .dropdown-content3 {
    display: block;
  }

  
.dropdown2 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: white;
    width: 400px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 3;
    margin-left: -230px;
  
  }

  .dropdown2:hover .dropdown-content2 {
    display: block;
  }

  @media (min-width: 768px){
    .seven-cols .col-md-1,
    .seven-cols .col-sm-1,
    .seven-cols .col-lg-1  {
      width: 100%;
      *width: 100%;
    }
  }
  
  @media (min-width: 992px) {
    .seven-cols .col-md-1,
    .seven-cols .col-sm-1,
    .seven-cols .col-lg-1 {
      width: 14.285714285714285714285714285714%;
      *width: 14.285714285714285714285714285714%;
    }
  }
  
  /**
   *  The following is not really needed in this case
   *  Only to demonstrate the usage of @media for large screens
   */    
  @media (min-width: 1200px) {
    .seven-cols .col-md-1,
    .seven-cols .col-sm-1,
    .seven-cols .col-lg-1 {
      width: 14.285714285714285714285714285714%;
      *width: 14.285714285714285714285714285714%;
    }
  }

  .fa-stack[data-count]:after{
  position:absolute;
  right:0%;
  top:0%;
  content: attr(data-count);
  font-size:40%;
  padding:.6em;
  border-radius:999px;
  line-height:.75em;
  color: white;
  color:#111111;
  text-align:center;
  min-width:2em;
  font-weight:bold;
  background: white;
  border-style:solid;
}
.fa-circle {
  color:#111111;
}

.red-cart {
	color: #111111; background:white;
}

.example {
    position: relative;
    padding: 0;
    width: 350px;
    display: block;
    cursor: pointer;
    overflow: hidden;
  }
  .content {
    opacity: 0;
    font-size: 20px;
    position: absolute;
    top: 0px;
    left: 0;
    color: #1c87c9;
    background-color: rgba(200, 200, 200, 0.5);
    width: 350px;
    height: 350px;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    -ms-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    text-align: center;
  }
  .example .content:hover {
    opacity: 1;
  }
  .example .content .text {
    height: 0;
    opacity: 1;
    transition-delay: 0s;
    transition-duration: 0.4s;
  }
  .example .content:hover .text {
    opacity: 1;
    transform: translateY(250px);
    -webkit-transform: translateY(250px);
  }



  /* relevant styles */
.img__wrap {
    position: relative;
    height: 300px;
    width: 300px;
  }
  
  .img__description_layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23,35,51,.6);
    color: #f96495;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
  }
  
  .img__wrap:hover .img__description_layer {
    visibility: visible;
    opacity: 1;
  }
  
  .img__description {
    transition: .2s;
    transform: translateY(1em);
  }
  
  .img__wrap:hover .img__description {
    transform: translateY(0);
  }


  .img__wrap1 {
    position: relative;
    height: 550px;
    width: 380px;
  }
  
  .img__description_layer1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23,35,51,.6);
    color: #f96495;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
  }
  
  .img__wrap1:hover .img__description_layer1 {
    visibility: visible;
    opacity: 1;
  }
  
  .img__description1 {
    transition: .2s;
    transform: translateY(1em);
  }
  
  .img__wrap1:hover .img__description1 {
    transform: translateY(0);
  }

  .f14{
      font-size: 14px;
  }

  .loading {
	width: 100%;
	text-align: center;
	vertical-align: center;
	z-index: 9999;
	opacity: 10;
}
.overlay {
    background: #e9e9e9;
    position: absolute;   
    top: 0;              
    right: 0;              
    bottom: 0;
    left: 0;
    opacity: 0.5;
}
#overlay {
    position: fixed;
    top:0; 
    left: 0; 
    z-index:9999;padding-top: 10px;
  }

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
}

.column {
    float: left;
    width: 20%;
  }
  .column1 {
    float: left;
    width: 33.33%;
  }

.pl-40{
    padding-left: 40px;
    padding-right: 40px;
}
.example1{
    position: relative;
    padding: 0;
    width: 550px;
    display: block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 40px;
    border:2px solid black;
}

form.example1 input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 90%;
    background: #f1f1f1;
  }
  
  form.example1 button {
    float: left;
    width: 10%;
    padding: 10px;
    background: #4B817B;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
  }
  
  form.example1 button:hover {
    background: #8AB77D;
  }
  
  form.example1::after {
    content: "";
    clear: both;
    display: table;
  }

  .third-c {
    column-count: 3;
    column-gap: 10px;
  }
  
  .margin_25px
  {
      margin-left: -34px;
  }
  .redData{
    border: 1px solid red !important;
  }

  .redData1{
    border: 3px solid red !important;
  }

  .det-footer{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}


.det-footer span {
    min-width: 200px;
    font-size: 14px;
    font-weight: bolder;
}

.det-footer .lists {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.filter-grey{
    filter: grayscale(100%);
}


.footer-menu{
    color:white;
    cursor:pointer;
    font-size: 13px;
}

#onhover {
    display: none;
  }
  #surround:hover a[id="initial"] {
    display: none;
  }
  #surround:hover a[id="onhover"] {
    display: block;
  }


  .underline_click{
    color: white;
    cursor: pointer;
    text-decoration: underline !important;
  }

  .foot_data
  {
    position: fixed;
    left: 0;
    bottom: 0;
  }


  .dropdown6 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content6 {
    display: none;
    position: absolute;
    background-color: white;
    width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 3;
    margin-left: -15px;  
  }

  

  .dropdown6:hover .dropdown-content6 {
    display: block;
  }


  .dropdown7 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content7 {
    display: none;
    position: absolute;
    background-color: white;
    width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 3;
    margin-left: 40%;
  
  }

  .dropdown7:hover .dropdown-content7 {
    display: block;
  }


  .dropdown8 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content8 {
    display: none;
    position: absolute;
    background-color: white;
    width: 300px;
    top: -216px;
    left: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 3;
  
  }

  .dropdown8:hover .dropdown-content8{
    display: block;
  }


  .mytooltip .mytext {
    visibility: hidden;
    width: 140px;
    background-color: blue;
    color: #fff;
    z-index: 1;
    bottom: 100%;
    left: 60%;
    margin-left: -90px;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
 }
 .mytooltip {
    position: relative;
    display: inline-block;
    margin-top: 50px;
 }
 .mytooltip .mytext:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 7px;
    border-style: solid;
    border-color: blue transparent transparent transparent;
 }
 .mytooltip:hover .mytext {
    visibility: visible;
 }
  
.red-border{
    padding: 5px;
    width: 132px;
    border: 3px solid white;
  }

  .red-border-mobile{
    padding: 2px;
    width: 70px;
    height: 25px;
    font-size: 10px;
    border: 3px solid white;
  }

a:hover {
  color: #FFA41C !important;
  /*text-decoration: underline !important;*/
}

.grey-border{
    padding: 5px;
    width: 132px;
    border: 1px solid grey;
  }

  .react-datepicker__close-icon {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: 0;
    padding: 0;
    vertical-align: middle;
    position: absolute;
    height: 16px;
    width: 16px;
    top: 25%;
    right: 7px;
}

.react-datepicker__close-icon::after {
    background-color: grey;
    border-radius: 50%;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    content: "\00d7";
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    width: 16px;
    line-height: 1;
    margin: -8px auto 0;
    padding: 2px;
    position: absolute;
    right: 0px;
    text-align: center;
}

.image_resize{
    height:'230px';
    width:'230px';
}



.monial_content {
    padding: 20px;
    /* font-size: 18px; */
    /* font-family: sans-serif; */
    color: black;
    line-height: 1.5;
}

.modal-root {
    position: relative;
    z-index: 17;
}

._2RuXSn, ._3lxTWL {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
}

@media only screen and (min-width: 1024px)
{
._3lxTWL {
    /* padding: 1.38889vw 1.38889vw 1.38889vw 0; */
    width: 50vw;
}
}
._3iZGff {
    overflow-y: auto;
}

.S3OFRO {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    /* display: flex; */
    width: 100%;
}

._2oTHF7 {
    padding: .7em;
    width: 2.5em;
}

._1o9oVL {
    margin: 0 2.77778vw;
}

@media only screen and (min-width: 1024px)
{
._2oTHF7 {
    width: 2.5em;
}
}


.box_state {
    border-bottom: 1px solid #ddd;
}

._33E7Zx {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 50px;
}

._2FgJ1j {
    font-family: GillSans,Helvetica,Arial,sans-serif;
    line-height: 1em;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #666;
    -webkit-transition: color .6s cubic-bezier(.165,.84,.44,1);
    transition: color .6s cubic-bezier(.165,.84,.44,1);
}
  
._8rUS5i {
    width: 13px;
    height: auto;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    fill: #929292;
    -webkit-transition: fill .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
    transition: fill .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
    transition: fill .6s cubic-bezier(.165,.84,.44,1),transform .6s cubic-bezier(.165,.84,.44,1);
    transition: fill .6s cubic-bezier(.165,.84,.44,1),transform .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
}


._2X1NSl {    
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

._2G98bq, .UlovPR {
    -webkit-transition: opacity .2s cubic-bezier(.445,.05,.55,.95),background-color .6s cubic-bezier(.165,.84,.44,1);
    /* transition: opacity .2s cubic-bezier(.445,.05,.55,.95),background-color .6s cubic-bezier(.165,.84,.44,1); */
}

._1ln7gh {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

._1oLE-k input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0;
    z-index: -1;
    position: absolute;
}


.bubble{
    font-family: SangbleuSans,Helvetica,Arial,sans-serif;
    line-height: 1em;
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: capitalize;
    border: 1px solid grey;
    padding: 8px;
    border-radius: 36px;
    cursor: pointer;
    margin:10px;
}


._2aT659, ._24OSh7 {
    font-size: 16px;
    font-size: 1.06667vw;
    font-family: SangbleuSans,Helvetica,Arial,sans-serif;
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}

._2KScOi {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    fill: currentColor;
    height: 1em;
    width: auto;
    max-width: 1.2em;
    pointer-events: none;
}

svg {
    display: block;
    width: 100%;
}

.eYUDqF {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.light_grey_bubble{
    background-color: lightgrey;
}

.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  .icon-bar a:hover {
    background-color: #000;
  }


  .clearAll{
    cursor: pointer;
    border: 1px solid grey;
    padding: 3px;
    font-size: 13px;
    border-radius: 10px;
  }
  

  .bg_no_product{
    height: 400px;
    width: 500px;
  }

  .pad_10{
      padding-top: 10px;
      padding-bottom: 10px;
      font-size: 25px;
  }


  .info_div_top{
    background-color: white;
    border-right: 1px #636161;
    border-left: 1px #636161;
    border-top: 1px #636161;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    height: 178px;
}

.info_div_bottom
{
    height: 112px;
    border-bottom: 1px #636161;
    border-right: 1px #636161;
    border-left: 1px #636161;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.image_left_align
{
    margin-left:14px;
}

.font_weight_100
{
    font-weight: 100;
}

.save_add_but{
    
        background-color: rgb(138, 183, 125);
        color: white;
        height: 40px;
        width: 128px;
        border-radius: 24px;
        border: 1px solid;
}

@media (max-width: 767.98px)
{
.page-header__wrapper {
    position: relative;
}
.page-header__mobile-nav {
    color: #333333;
}
}

.page-header__wrapper {
    max-width: 1400px;
    height: 5rem;
    padding: 0 3%;
    background: #fff;
    transition: transform .2s ease-out;
}

.page-header__mobile-nav {
    float: left;
    padding: 1rem 0;
    color: #333;
    margin-top: 6px;
}

.icon {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-transform: none;
    background: 0 0;
    border: 0;
    vertical-align: middle;
}

.icon--menu:before {
    color: inherit;
    font-size: 44px;
}

.vertical-line
{
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 3px 0;  
}

.page-header__logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    width: 6.85rem;
    padding: .85rem 0;
    margin: 0 auto;
}

.page-header__logo-link {
    display: block;
    height: 0;
    padding: 50% 0 0;
    overflow: hidden;
    color: #333;
    background-image: url(http://arabellabouquets.com/images/2.png);
    background-size: cover;
}

.page-header__actions {
    float: right;
    text-align: right;
}

.col-1-5{
      width: 20%;
      float: left;
      position: relative;
      min-height: 1px;
    }

    .col-1-6{
        width: 16.66%;
        float: left;
        position: relative;
        min-height: 1px;
      }


      .mobile-nav{
        font-size: 14px;
        margin-top:50px;
      }

      .mobile-nav__nav-menu{
        line-height: 1;
      }

      .mobile-nav__menu-item {
        font-size: 20px;
        text-transform: uppercase;
    }
    .mobile-nav__item-node {
        /*display: block;*/
        padding: 15px;
        color: #333;
        transition: color .1s ease;
    }

    .mobile-nav__menu-item_child{
        font-size: 15px;
        text-transform: none;
        padding-left: 25px;
    }

    .margin-50px{
        margin-right: 54px;
    }

    .header_image_top{
        padding-top: 33px;
        padding-left: 78px;
    }


    .col4{
        width: 25%;
        position: relative;
        min-height: 1px;
      }

.green_border{
    border:'1px solid #8AB77D';
}

.carousel-image-size
{
    height:400px;
    width:300px;
}

 
.idle_modal_button{
    height: 40px;
    width: 200px;
    background-color: rgb(253, 223, 231);
    color: rgb(60, 107, 88);
    border: none;
    font-size: 23px;
}

.no_thanks{
    font-size: 20px;
    color: white;
    font-weight: lighter;
    text-decoration:underline !important;
    font-family: 'Helvetica Nueue';
}

/* The container */
.container1 {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container1:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container1 input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container1 input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container1 .checkmark:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  
  
  /* W3.CSS 4.13 June 2019 by Jan Egil and Borge Refsnes */
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent}a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
html,body{font-family:proxima-nova,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}
h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:serif}
h1,h2,h3,h4,h5,h6{font-family:proxima-nova,sans-serif;font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}
hr{border:0;border-top:1px solid #eee;margin:20px 0}
.w3-image{max-width:100%;height:auto}img{vertical-align:middle}a{color:inherit}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
.w3-btn,.w3-button{border:none;display:inline-block;padding:8px 16px;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}
.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-tooltip,.w3-display-container{position:relative}.w3-tooltip .w3-text{display:none}.w3-tooltip:hover .w3-text{display:inline-block}
.w3-ripple:active{opacity:0.5}.w3-ripple{transition:opacity 0s}
.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.w3-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}
.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.w3-dropdown-hover:hover .w3-dropdown-content{display:block}
.w3-dropdown-hover:first-child,.w3-dropdown-click:hover{background-color:#ccc;color:#000}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}
.w3-dropdown-content{cursor:auto;color:#000;background-color:#fff;display:none;position:absolute;min-width:160px;margin:0;padding:0;z-index:1}
.w3-check,.w3-radio{width:24px;height:24px;position:relative;top:6px}
.w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-main,#main{transition:margin-left .4s}
.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}
.w3-bar .w3-bar-item{padding:8px 16px;float:left;width:auto;border:none;display:block;outline:0}
.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click{position:static;float:left}
.w3-bar .w3-button{white-space:normal}
.w3-bar-block .w3-bar-item{width:100%;display:block;padding:8px 16px;text-align:left;border:none;white-space:normal;float:none;outline:0}
.w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}
.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;width:100%}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}
@media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
.w3-rest{overflow:hidden}.w3-stretch{margin-left:-16px;margin-right:-16px}
.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}
.w3-cell-row{display:table;width:100%}.w3-cell{display:table-cell}
.w3-cell-top{vertical-align:top}.w3-cell-middle{vertical-align:middle}.w3-cell-bottom{vertical-align:bottom}
.w3-hide{display:none!important}.w3-show-block,.w3-show{display:block!important}.w3-show-inline-block{display:inline-block!important}
@media (max-width:1205px){.w3-auto{max-width:95%}}
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}	
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
@media (max-width:992px) and (min-width:601px){.w3-hide-medium{display:none!important}}
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}.w3-auto{max-width:100%}}
.w3-top,.w3-bottom{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}
.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}
.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}
.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}
.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.w3-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.w3-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.w3-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-display-position{position:absolute}
.w3-circle{border-radius:50%}
.w3-round-small{border-radius:2px}.w3-round,.w3-round-medium{border-radius:4px}.w3-round-large{border-radius:8px}.w3-round-xlarge{border-radius:16px}.w3-round-xxlarge{border-radius:32px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 8px}
.w3-container,.w3-panel{padding:0.01em 16px}.w3-panel{margin-top:16px;margin-bottom:16px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.w3-card,.w3-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}
.w3-greyscale-max,.w3-grayscale-max,.w3-hover-greyscale:hover,.w3-hover-grayscale:hover{filter:grayscale(100%)}
.w3-greyscale,.w3-grayscale{filter:grayscale(75%)}.w3-greyscale-min,.w3-grayscale-min{filter:grayscale(50%)}
.w3-sepia{filter:sepia(75%)}.w3-sepia-max,.w3-hover-sepia:hover{filter:sepia(100%)}.w3-sepia-min{filter:sepia(50%)}
.w3-tiny{font-size:10px!important}.w3-small{font-size:12px!important}.w3-medium{font-size:15px!important}.w3-large{font-size:18px!important}
.w3-xlarge{font-size:24px!important}.w3-xxlarge{font-size:36px!important}.w3-xxxlarge{font-size:48px!important}.w3-jumbo{font-size:64px!important}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}
.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}
.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}
.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}
.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.w3-left{float:left!important}.w3-right{float:right!important}
.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-hover-none:hover{box-shadow:none!important}
/* Colors */
.w3-amber,.w3-hover-amber:hover{color:#000!important;background-color:#ffc107!important}
.w3-aqua,.w3-hover-aqua:hover{color:#000!important;background-color:#00ffff!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#2196F3!important}
.w3-light-blue,.w3-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.w3-brown,.w3-hover-brown:hover{color:#fff!important;background-color:#795548!important}
.w3-cyan,.w3-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}
.w3-blue-grey,.w3-hover-blue-grey:hover,.w3-blue-gray,.w3-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.w3-light-green,.w3-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}
.w3-indigo,.w3-hover-indigo:hover{color:#fff!important;background-color:#3f51b5!important}
.w3-khaki,.w3-hover-khaki:hover{color:#000!important;background-color:#f0e68c!important}
.w3-lime,.w3-hover-lime:hover{color:#000!important;background-color:#cddc39!important}
.w3-orange,.w3-hover-orange:hover{color:#000!important;background-color:#ff9800!important}
.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}
.w3-pink,.w3-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.w3-purple,.w3-hover-purple:hover{color:#fff!important;background-color:#9c27b0!important}
.w3-deep-purple,.w3-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}
.w3-red,.w3-hover-red:hover{color:#fff!important;background-color:#4B817B!important}
.w3-sand,.w3-hover-sand:hover{color:#000!important;background-color:#fdf5e6!important}
.w3-teal,.w3-hover-teal:hover{color:#fff!important;background-color:#009688!important}
.w3-yellow,.w3-hover-yellow:hover{color:#000!important;background-color:#ffeb3b!important}
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#c1c1c1!important}
.w3-grey,.w3-hover-grey:hover,.w3-gray,.w3-hover-gray:hover{color:#000!important;background-color:#9e9e9e!important}
.w3-light-grey,.w3-hover-light-grey:hover,.w3-light-gray,.w3-hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.w3-dark-grey,.w3-hover-dark-grey:hover,.w3-dark-gray,.w3-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}
.w3-pale-red,.w3-hover-pale-red:hover{color:#000!important;background-color:#ffdddd!important}
.w3-pale-green,.w3-hover-pale-green:hover{color:#000!important;background-color:#ddffdd!important}
.w3-pale-yellow,.w3-hover-pale-yellow:hover{color:#000!important;background-color:#ffffcc!important}
.w3-pale-blue,.w3-hover-pale-blue:hover{color:#000!important;background-color:#ddffff!important}
.w3-text-amber,.w3-hover-text-amber:hover{color:#ffc107!important}
.w3-text-aqua,.w3-hover-text-aqua:hover{color:#00ffff!important}
.w3-text-blue,.w3-hover-text-blue:hover{color:#2196F3!important}
.w3-text-light-blue,.w3-hover-text-light-blue:hover{color:#87CEEB!important}
.w3-text-brown,.w3-hover-text-brown:hover{color:#795548!important}
.w3-text-cyan,.w3-hover-text-cyan:hover{color:#00bcd4!important}
.w3-text-blue-grey,.w3-hover-text-blue-grey:hover,.w3-text-blue-gray,.w3-hover-text-blue-gray:hover{color:#607d8b!important}
.w3-text-green,.w3-hover-text-green:hover{color:#4CAF50!important}
.w3-text-light-green,.w3-hover-text-light-green:hover{color:#8bc34a!important}
.w3-text-indigo,.w3-hover-text-indigo:hover{color:#3f51b5!important}
.w3-text-khaki,.w3-hover-text-khaki:hover{color:#b4aa50!important}
.w3-text-lime,.w3-hover-text-lime:hover{color:#cddc39!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:#ff9800!important}
.w3-text-deep-orange,.w3-hover-text-deep-orange:hover{color:#ff5722!important}
.w3-text-pink,.w3-hover-text-pink:hover{color:#e91e63!important}
.w3-text-purple,.w3-hover-text-purple:hover{color:#9c27b0!important}
.w3-text-deep-purple,.w3-hover-text-deep-purple:hover{color:#673ab7!important}
.w3-text-red,.w3-hover-text-red:hover{color:#f44336!important}
.w3-text-sand,.w3-hover-text-sand:hover{color:#fdf5e6!important}
.w3-text-teal,.w3-hover-text-teal:hover{color:#009688!important}
.w3-text-yellow,.w3-hover-text-yellow:hover{color:#d2be0e!important}
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-grey,.w3-hover-text-grey:hover,.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-light-grey,.w3-hover-text-light-grey:hover,.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-dark-grey,.w3-hover-text-dark-grey:hover,.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#3a3a3a!important}
.w3-border-amber,.w3-hover-border-amber:hover{border-color:#ffc107!important}
.w3-border-aqua,.w3-hover-border-aqua:hover{border-color:#00ffff!important}
.w3-border-blue,.w3-hover-border-blue:hover{border-color:#2196F3!important}
.w3-border-light-blue,.w3-hover-border-light-blue:hover{border-color:#87CEEB!important}
.w3-border-brown,.w3-hover-border-brown:hover{border-color:#795548!important}
.w3-border-cyan,.w3-hover-border-cyan:hover{border-color:#00bcd4!important}
.w3-border-blue-grey,.w3-hover-border-blue-grey:hover,.w3-border-blue-gray,.w3-hover-border-blue-gray:hover{border-color:#607d8b!important}
.w3-border-green,.w3-hover-border-green:hover{border-color:#4CAF50!important}
.w3-border-light-green,.w3-hover-border-light-green:hover{border-color:#8bc34a!important}
.w3-border-indigo,.w3-hover-border-indigo:hover{border-color:#3f51b5!important}
.w3-border-khaki,.w3-hover-border-khaki:hover{border-color:#f0e68c!important}
.w3-border-lime,.w3-hover-border-lime:hover{border-color:#cddc39!important}
.w3-border-orange,.w3-hover-border-orange:hover{border-color:#ff9800!important}
.w3-border-deep-orange,.w3-hover-border-deep-orange:hover{border-color:#ff5722!important}
.w3-border-pink,.w3-hover-border-pink:hover{border-color:#e91e63!important}
.w3-border-purple,.w3-hover-border-purple:hover{border-color:#9c27b0!important}
.w3-border-deep-purple,.w3-hover-border-deep-purple:hover{border-color:#673ab7!important}
.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}
.w3-border-sand,.w3-hover-border-sand:hover{border-color:#fdf5e6!important}
.w3-border-teal,.w3-hover-border-teal:hover{border-color:#009688!important}
.w3-border-yellow,.w3-hover-border-yellow:hover{border-color:#ffeb3b!important}
.w3-border-white,.w3-hover-border-white:hover{border-color:#fff!important}
.w3-border-black,.w3-hover-border-black:hover{border-color:#000!important}
.w3-border-grey,.w3-hover-border-grey:hover,.w3-border-gray,.w3-hover-border-gray:hover{border-color:#9e9e9e!important}
.w3-border-light-grey,.w3-hover-border-light-grey:hover,.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.w3-border-dark-grey,.w3-hover-border-dark-grey:hover,.w3-border-dark-gray,.w3-hover-border-dark-gray:hover{border-color:#616161!important}
.w3-border-pale-red,.w3-hover-border-pale-red:hover{border-color:#ffe7e7!important}.w3-border-pale-green,.w3-hover-border-pale-green:hover{border-color:#e7ffe7!important}
.w3-border-pale-yellow,.w3-hover-border-pale-yellow:hover{border-color:#ffffcc!important}.w3-border-pale-blue,.w3-hover-border-pale-blue:hover{border-color:#e7ffff!important}/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Medium_Regular';
  src: url(/fonts/Gotham_Medium_Regular.eot);
  src: local('☺'),
  url(/fonts/Gotham_Medium_Regular.woff) format('woff'),
  url(/fonts/Gotham_Medium_Regular.ttf) format('truetype'),
  url(/svg/Gotham_Medium_Regular.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Book';
  src: url(/fonts/Gotham_Book.eot);
  src: local('☺'),
  url(/fonts/Gotham_Book.woff) format('woff'),
  url(/fonts/Gotham_Book.ttf) format('truetype'),
  url(/svg/Gotham_Book.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: 'New_BaskervilleStd_Italic';
  src: url(/fonts/New_BaskervilleStd_Italic.eot);
  src: local('☺'),
  url(/fonts/New_BaskervilleStd_Italic.woff) format('woff'),
  url(/fonts/New_BaskervilleStd_Italic.ttf) format('truetype'),
  url(/svg/New_BaskervilleStd_Italic.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}


/** Generated by FG **/
@font-face {
  font-family: 'Gotham_Book_Regular';
  src: url(/fonts/Gotham_Book_Regular.eot);
  src: local('☺'),
  url(/fonts/Gotham_Book_Regular.woff) format('woff'),
  url(/fonts/Gotham_Book_Regular.ttf) format('truetype'),
  url(/svg/Gotham_Book_Regular.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}
/** Generated by FG **/
@font-face {
	font-family: 'Gotham-Bold';
	src: url(/fonts/Gotham-Bold.eot);
  src: local('☺'),
  url(/fonts/Gotham-Bold.woff) format('woff'),
  url(/fonts/Gotham-Bold.ttf) format('truetype'),
  url(/svg/Gotham-Bold.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}


@media (min-width:768px){
  /* .container{width:750px} */
}
@media (min-width:992px){
  /* .container{width:970px} */
}
@media (min-width:1200px){
  /* .container{width:1250px} */
}

  /* Smartphones (portrait and landscape) ----------- */
  @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
   
  }

@media only screen and (min-device-width : 781px) and (max-device-width : 991px) {

}

/* custom - header mobile start */
  @media (max-width: 767px) {

  }
  @media (min-width: 768px) {
    
  }

  hr{
    border-top: 1px solid #141414;
  }

  /* Footer CSS starts */

  .footer-section-custom hr{
    border-top: 2px solid #143d59;
  }

    /* Footer CSS ends */

    body{
      background-color: #fff;
    }

    /* header layout css */
    .cust-margin-login{
      margin: 20px 0;
    }

    .cust-margin-login button{
      margin: 0 10px;
    }
    /* header layout css */

     /* Home page CSS starts */

  /* .artist-banner img{
    width: 100%;
  } */

  .color-link-head a{
    color: white;
  }

  .artist-header{
    padding: 25px;
    padding-bottom: 0;
  }

  .artist-header span{
    color: white;
    font-size: 30px;
  }

  .artist-header .white-color-head{
    color: #141414;
    font-size: 30px;
  }

  .artist-header button{
    float: right;
    color: white;
    /* border-color: white; */
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px;
  }

  .artist-header .white-color-head-button button{
    color: #141414;
    border: 2px solid #141414;
  }

  .artist-banner{
    /* background-image: url('../images/artist_banner.png'); */
    background-size: cover;/* 100% 100%;  */
    height: 80vh;
    background-repeat: no-repeat;
    margin-top: -136px;
  }

  .artist-banner .banner-text{
    text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      color: white;
      font-size: 25px;
  }

  .artist-banner .banner-text span, .artist-header .span-orange{
    color: #f06530;
  }

  .custom-class-button, .custom-class-button:hover{
    color: white;
    background-color: #f06530;
  }

  .searchbar-artist{
    /* background-image: url('../images/Banner-2.png'); */
    background-size: 50% 100%;
    max-height: 60vh;
    height: 60vh;
    background-repeat: no-repeat;
  }

  .search-input-artist{
    display: block;
    margin: auto;
  }
  .search-input-artist input{ 
      margin-right: 10px;
      line-height: 4;
      width: 50%;
  }

  .search-input-artist button{ 
    line-height: 4;
    width: 20%;
}

.search-artist-span{
  color: #fff;
}

.search-artist-span-size{
  font-size: 50px;
  letter-spacing: 5px;
}

.search-artist-span-size u{
  text-decoration-color: #f06530;
}

.center-search-div{
    position:relative;
    transform: translate(-50%, -50%);
    top:50%;
    left:50%;
}

.hr-color{
  border-color: #141414;
}

.hr-td-content{
  width:1px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 700;
}

.category-img-custom{
    background-size: 100% 100%;
    height: 410px;
    background-repeat: no-repeat;
}

.buy-banner{
  /* background-image: url('../images/Banner-3.png'); */
}

.rent-banner{
  /* background-image: url('../images/Banner-4.png'); */
}

.exchange-banner{
  /* background-image: url('../images/Banner-5.png'); */
}

.surprise-banner{
  /* background-image: url('../images/Banner-6.png'); */
}

.train-banner{
  /* background-image: url('../images/Banner-7.png'); */
}

.cat-custom-div{
  background-color: rgba(0,0,0,.30);
  margin: 30px;
  height: 350px;
  text-align: right;
  justify-content: right;
  display: flex;
}

.bottom-alignment-custom{
  align-self: flex-end; 
  width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
}

.cat-custom-div div{ 
  color: #fff;
  font-weight: 700;
  font-size: 35px;
}

.join-hands{
  background-color: #dddddd;
}

.join-hands span{
  color: #f06530;
}

.join-hands .partner-with-us{
  font-size: 50px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.hr-td-content span{
  color: #f06530;
}

.see-more-img img{
  border: 1px solid black;
    padding: 5px;
}

.stay-touch{
  background-size: 100% 100%;
    /* height: 727px; @todo */
    background-repeat: no-repeat;
    /* background-image: url('../images/Banner-15.png'); */
}

.stay-touch-right{
  background-color: #143d59;
  color: #fff;
  padding: 30px;
}

.stay-touch-div{
  text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      background-color: white;
      font-size: 30px;
      width: 50%;
      padding: 50px 0;
      letter-spacing: 2px;
}

.stay-touch-div span{
  color: #f06530;
}

.stay-touch-right span{
  color: #f06530;
}

.stay-touch-right button{
  float: right;
}

.stay-touch-right input{
  width: 100%;
  line-height: 3;
}

.stay-touch-right textarea{
  width: 100%;
  resize: none;
}

.stay-touch-right div:first-child{
  font-size: 16px;
}

.see-more-hr hr{
  width: 5%;
  border-top: 3px solid #f06530;
}

.see-more-hr{
  font-size: 24px;
}

    /* Home page CSS ends */

    /* Artist Registraton css starts */

  .artist-reg-page input{
    float: right;
  }

    /* Artist Registraton css ends */

    /* Breadcrumb starts */
      .breadCrumb{
        background-color: white;
      }

      .breadCrumb li{
          padding-left: 10px;
          padding-right: 10px;
       }
    /* Breadcrumb ends */


    /* listing page css starts */

    .listing-sort-by{
      float: right;
      color: #f06530;
    }

    .carouselImgDiv{
      width: 100%;
    }

    .product-grid-view{
      border: 1px solid #141414;
      /* margin: 2px; */
      padding: 5px;
      height: 420px;
      margin-bottom: 10px;
    }

    .artifact-section img{
      width: 100%;
    }

    .our-story-section{
      background-size: 100% 100%;
    height: 519px;
    background-repeat: no-repeat;
    /* background-image: url('../images/9.png'); */
    }

    .our-story-div{
      text-align:center;
			position:absolute;
			transform: translate(-50%, -50%);
			top:50%;
      left:50%;
      background-color: white;
      font-size: 16px;
      width: 70%;
      padding: 30px 50px;
      letter-spacing: 2px;
    }

    .the-funkar-way-right{
      background-color: #143d59;
      color: #fff;
      font-size: 16px;
    }

    .the-funkar-way-right ol li{
      padding: 5px 10px;
    }

    .the-funkar-way-right1 .faq-funkar-desc{
      color: #f06530;
    }
    .the-funkar-way-right1 {
      padding: 10px;
    }
    .the-funkar-way-right1 hr{
      border-top: 2px solid #f06530;
    }
    /* listing page css ends */

    /* Details page css starts */

    .detail-you-might-like img{
      width: 100%;
      border: 1px solid black;
      padding: 5px;
    }

    .detail-page-add span{
        float: right;
        /* display:block;s */
    }

    .price-tag{
      font-size: 30px;
    }
    /* Details page css stops */

    .float-right{
      float: right;
    }

    /* checkout page css starts */

.order-summary{
  color: #fff;
  padding: 20px;
  background-color: #143d59;
}

.bordered-summary{
  border: 1px solid black;
}
.bordered-summary-top{
  border-top: 1px solid black;
  padding: 20px;
}

.checkout-steps{
  background-color: #dddddd;
  padding: 10px;
}

.step-2-section textarea{
  width: 100%;
}
.payment-type{
  margin: 10px 0;
}
.address-block{
  padding: 10px 0;
}
.address-block .firstname{
  /* width: 45%; */
  float:left;
}

.address-block .lastname{
  /* width: 45%; */
  float: right;
}
.address-block .company input, .address-block .address input{
  width: 100%;
  /* float:left; */
}
.address-block .city, .address-block .state, .address-block .zipcode{
  width: 30%;
  float: left;
}
.address-block .state{
  margin-left: 20px;
}
.address-block .zipcode{
  float: right;
}
.address-block .city input, .address-block .state select, .address-block .zipcode input{
  width: 100%;
  /* float: left; */
}
.process-btn{
  text-align: center;
}
.creditnumber input{
  width: 100%;
  margin-bottom: 5px;
}
.creditcard-expiry, .creditcard-expiry-year{
  width: 30%;
  float: left;
}


    /* checkout page css ends */


/* ---------- VENDOR CSS ------------ */

.amp-artist-logo {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.amp-artist-link {
  color: #FFFFFF;
  font-weight: 300 !important;
}

.artist-active-link,
.amp-artist-link:hover {
  color: #F06530;
  font-weight: bold !important;
  font-size: normal !important;
}

.container-spacing {
  margin-top: 15px;
}

.container-spacing-lg {
  margin-top: 30px;
}

.artist-checkbox,
.artist-checkbox:hover {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.artist-pu-container {
  width: 50%;
  margin: 20px auto
}

.loading-div {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .30);
  z-index: 999;
  width: 100%;
  height: 100%;
}

.artist-loader {
  position: absolute;
  top: 45%;
  left: 47%
}

.location-carousel-item {
  height: 150px;
  border: 2px solid #6f8992;
  padding: 10px;
  padding-left: 25px;
  margin: 10px;
}

.location-item-name {
  color: #6f8992;
  font-weight: bold;
}

.amp-responsive {
  max-width: 100%;
  overflow-x: scroll;
}

.artist-align-center {
  text-align: center;
}

.no-margin-custom{
  margin-left: -15px;
  margin-right: -15px;
}

.search-bar-artist{
  margin-left: -15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .searchbar-artist{
    max-height: 40vh;
    height: 40vh;
  }
  .artist-banner{
    height: 40vh;
    }
}

@media (min-width: 992px) and (max-width: 1199px) { 
  .searchbar-artist{
    max-height: 50vh;
    height: 50vh;
  }
  .artist-banner{
    height: 60vh;
    }
}

@media (min-width: 1200px) { 
  .artist-banner{
    height: 80vh;
    }
}@charset "UTF-8";
/**
 * Utility classes for spacing:
 * A wide range of shorthand margin and padding utility classes to modify an
 * an element’s appearance.
 * Prefix understanding: u means utility which is a prefix for root namespace,
 * s means spacing which is a prefix for sub namespace, m means margin,
 * p means padding. e.g. `u-s-m-t-22` means apply top margin 22 pixels that by default converted to rem unit.
 */
/* Margin with value `auto`. */
.u-s-m-t-auto {
  margin-top: auto; }

.u-s-m-r-auto {
  margin-right: auto; }

.u-s-m-b-auto {
  margin-bottom: auto; }

.u-s-m-l-auto {
  margin-left: auto; }

.u-s-m-x-auto {
  margin-left: auto;
  margin-right: auto; }

.u-s-m-y-auto {
  margin-top: auto;
  margin-bottom: auto; }

.u-s-m-xy-auto {
  margin: auto; }

/* Margin with value `0`. */
.u-s-m-t-0 {
  margin-top: 0; }

.u-s-m-r-0 {
  margin-right: 0; }

.u-s-m-b-0 {
  margin-bottom: 0; }

.u-s-m-l-0 {
  margin-left: 0; }

.u-s-m-x-0 {
  margin-left: 0;
  margin-right: 0; }

.u-s-m-y-0 {
  margin-top: 0;
  margin-bottom: 0; }

.u-s-m-xy-0 {
  margin: 0; }

/* Padding with value `0`. */
.u-s-p-t-0 {
  padding-top: 0; }

.u-s-p-r-0 {
  padding-right: 0; }

.u-s-p-b-0 {
  padding-bottom: 0; }

.u-s-p-l-0 {
  padding-left: 0; }

.u-s-p-x-0 {
  padding-left: 0;
  padding-right: 0; }

.u-s-p-y-0 {
  padding-top: 0;
  padding-bottom: 0; }

.u-s-p-xy-0 {
  padding: 0; }

/* Margin with value `1`. */
.u-s-m-t-1 {
  margin-top: 0.0625rem; }

.u-s-m-r-1 {
  margin-right: 0.0625rem; }

.u-s-m-b-1 {
  margin-bottom: 0.0625rem; }

.u-s-m-l-1 {
  margin-left: 0.0625rem; }

.u-s-m-x-1 {
  margin-left: 0.0625rem;
  margin-right: 0.0625rem; }

.u-s-m-y-1 {
  margin-top: 0.0625rem;
  margin-bottom: 0.0625rem; }

.u-s-m-xy-1 {
  margin: 0.0625rem; }

/* Padding with value `1`. */
.u-s-p-t-1 {
  padding-top: 0.0625rem; }

.u-s-p-r-1 {
  padding-right: 0.0625rem; }

.u-s-p-b-1 {
  padding-bottom: 0.0625rem; }

.u-s-p-l-1 {
  padding-left: 0.0625rem; }

.u-s-p-x-1 {
  padding-left: 0.0625rem;
  padding-right: 0.0625rem; }

.u-s-p-y-1 {
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem; }

.u-s-p-xy-1 {
  padding: 0.0625rem; }

/* Margin with value `2`. */
.u-s-m-t-2 {
  margin-top: 0.125rem; }

.u-s-m-r-2 {
  margin-right: 0.125rem; }

.u-s-m-b-2 {
  margin-bottom: 0.125rem; }

.u-s-m-l-2 {
  margin-left: 0.125rem; }

.u-s-m-x-2 {
  margin-left: 0.125rem;
  margin-right: 0.125rem; }

.u-s-m-y-2 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem; }

.u-s-m-xy-2 {
  margin: 0.125rem; }

/* Padding with value `2`. */
.u-s-p-t-2 {
  padding-top: 0.125rem; }

.u-s-p-r-2 {
  padding-right: 0.125rem; }

.u-s-p-b-2 {
  padding-bottom: 0.125rem; }

.u-s-p-l-2 {
  padding-left: 0.125rem; }

.u-s-p-x-2 {
  padding-left: 0.125rem;
  padding-right: 0.125rem; }

.u-s-p-y-2 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem; }

.u-s-p-xy-2 {
  padding: 0.125rem; }

/* Margin with value `3`. */
.u-s-m-t-3 {
  margin-top: 0.1875rem; }

.u-s-m-r-3 {
  margin-right: 0.1875rem; }

.u-s-m-b-3 {
  margin-bottom: 0.1875rem; }

.u-s-m-l-3 {
  margin-left: 0.1875rem; }

.u-s-m-x-3 {
  margin-left: 0.1875rem;
  margin-right: 0.1875rem; }

.u-s-m-y-3 {
  margin-top: 0.1875rem;
  margin-bottom: 0.1875rem; }

.u-s-m-xy-3 {
  margin: 0.1875rem; }

/* Padding with value `3`. */
.u-s-p-t-3 {
  padding-top: 0.1875rem; }

.u-s-p-r-3 {
  padding-right: 0.1875rem; }

.u-s-p-b-3 {
  padding-bottom: 0.1875rem; }

.u-s-p-l-3 {
  padding-left: 0.1875rem; }

.u-s-p-x-3 {
  padding-left: 0.1875rem;
  padding-right: 0.1875rem; }

.u-s-p-y-3 {
  padding-top: 0.1875rem;
  padding-bottom: 0.1875rem; }

.u-s-p-xy-3 {
  padding: 0.1875rem; }

/* Margin with value `4`. */
.u-s-m-t-4 {
  margin-top: 0.25rem; }

.u-s-m-r-4 {
  margin-right: 0.25rem; }

.u-s-m-b-4 {
  margin-bottom: 0.25rem; }

.u-s-m-l-4 {
  margin-left: 0.25rem; }

.u-s-m-x-4 {
  margin-left: 0.25rem;
  margin-right: 0.25rem; }

.u-s-m-y-4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem; }

.u-s-m-xy-4 {
  margin: 0.25rem; }

/* Padding with value `4`. */
.u-s-p-t-4 {
  padding-top: 0.25rem; }

.u-s-p-r-4 {
  padding-right: 0.25rem; }

.u-s-p-b-4 {
  padding-bottom: 0.25rem; }

.u-s-p-l-4 {
  padding-left: 0.25rem; }

.u-s-p-x-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem; }

.u-s-p-y-4 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem; }

.u-s-p-xy-4 {
  padding: 0.25rem; }

/* Margin with value `5`. */
.u-s-m-t-5 {
  margin-top: 0.3125rem; }

.u-s-m-r-5 {
  margin-right: 0.3125rem; }

.u-s-m-b-5 {
  margin-bottom: 0.3125rem; }

.u-s-m-l-5 {
  margin-left: 0.3125rem; }

.u-s-m-x-5 {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem; }

.u-s-m-y-5 {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem; }

.u-s-m-xy-5 {
  margin: 0.3125rem; }

/* Padding with value `5`. */
.u-s-p-t-5 {
  padding-top: 0.3125rem; }

.u-s-p-r-5 {
  padding-right: 0.3125rem; }

.u-s-p-b-5 {
  padding-bottom: 0.3125rem; }

.u-s-p-l-5 {
  padding-left: 0.3125rem; }

.u-s-p-x-5 {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem; }

.u-s-p-y-5 {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem; }

.u-s-p-xy-5 {
  padding: 0.3125rem; }

/* Margin with value `6`. */
.u-s-m-t-6 {
  margin-top: 0.375rem; }

.u-s-m-r-6 {
  margin-right: 0.375rem; }

.u-s-m-b-6 {
  margin-bottom: 0.375rem; }

.u-s-m-l-6 {
  margin-left: 0.375rem; }

.u-s-m-x-6 {
  margin-left: 0.375rem;
  margin-right: 0.375rem; }

.u-s-m-y-6 {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem; }

.u-s-m-xy-6 {
  margin: 0.375rem; }

/* Padding with value `6`. */
.u-s-p-t-6 {
  padding-top: 0.375rem; }

.u-s-p-r-6 {
  padding-right: 0.375rem; }

.u-s-p-b-6 {
  padding-bottom: 0.375rem; }

.u-s-p-l-6 {
  padding-left: 0.375rem; }

.u-s-p-x-6 {
  padding-left: 0.375rem;
  padding-right: 0.375rem; }

.u-s-p-y-6 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem; }

.u-s-p-xy-6 {
  padding: 0.375rem; }

/* Margin with value `7`. */
.u-s-m-t-7 {
  margin-top: 0.4375rem; }

.u-s-m-r-7 {
  margin-right: 0.4375rem; }

.u-s-m-b-7 {
  margin-bottom: 0.4375rem; }

.u-s-m-l-7 {
  margin-left: 0.4375rem; }

.u-s-m-x-7 {
  margin-left: 0.4375rem;
  margin-right: 0.4375rem; }

.u-s-m-y-7 {
  margin-top: 0.4375rem;
  margin-bottom: 0.4375rem; }

.u-s-m-xy-7 {
  margin: 0.4375rem; }

/* Padding with value `7`. */
.u-s-p-t-7 {
  padding-top: 0.4375rem; }

.u-s-p-r-7 {
  padding-right: 0.4375rem; }

.u-s-p-b-7 {
  padding-bottom: 0.4375rem; }

.u-s-p-l-7 {
  padding-left: 0.4375rem; }

.u-s-p-x-7 {
  padding-left: 0.4375rem;
  padding-right: 0.4375rem; }

.u-s-p-y-7 {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem; }

.u-s-p-xy-7 {
  padding: 0.4375rem; }

/* Margin with value `8`. */
.u-s-m-t-8 {
  margin-top: 0.5rem; }

.u-s-m-r-8 {
  margin-right: 0.5rem; }

.u-s-m-b-8 {
  margin-bottom: 0.5rem; }

.u-s-m-l-8 {
  margin-left: 0.5rem; }

.u-s-m-x-8 {
  margin-left: 0.5rem;
  margin-right: 0.5rem; }

.u-s-m-y-8 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.u-s-m-xy-8 {
  margin: 0.5rem; }

/* Padding with value `8`. */
.u-s-p-t-8 {
  padding-top: 0.5rem; }

.u-s-p-r-8 {
  padding-right: 0.5rem; }

.u-s-p-b-8 {
  padding-bottom: 0.5rem; }

.u-s-p-l-8 {
  padding-left: 0.5rem; }

.u-s-p-x-8 {
  padding-left: 0.5rem;
  padding-right: 0.5rem; }

.u-s-p-y-8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.u-s-p-xy-8 {
  padding: 0.5rem; }

/* Margin with value `9`. */
.u-s-m-t-9 {
  margin-top: 0.5625rem; }

.u-s-m-r-9 {
  margin-right: 0.5625rem; }

.u-s-m-b-9 {
  margin-bottom: 0.5625rem; }

.u-s-m-l-9 {
  margin-left: 0.5625rem; }

.u-s-m-x-9 {
  margin-left: 0.5625rem;
  margin-right: 0.5625rem; }

.u-s-m-y-9 {
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem; }

.u-s-m-xy-9 {
  margin: 0.5625rem; }

/* Padding with value `9`. */
.u-s-p-t-9 {
  padding-top: 0.5625rem; }

.u-s-p-r-9 {
  padding-right: 0.5625rem; }

.u-s-p-b-9 {
  padding-bottom: 0.5625rem; }

.u-s-p-l-9 {
  padding-left: 0.5625rem; }

.u-s-p-x-9 {
  padding-left: 0.5625rem;
  padding-right: 0.5625rem; }

.u-s-p-y-9 {
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem; }

.u-s-p-xy-9 {
  padding: 0.5625rem; }

/* Margin with value `10`. */
.u-s-m-t-10 {
  margin-top: 0.625rem; }

.u-s-m-r-10 {
  margin-right: 0.625rem; }

.u-s-m-b-10 {
  margin-bottom: 0.625rem; }

.u-s-m-l-10 {
  margin-left: 0.625rem; }

.u-s-m-x-10 {
  margin-left: 0.625rem;
  margin-right: 0.625rem; }

.u-s-m-y-10 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem; }

.u-s-m-xy-10 {
  margin: 0.625rem; }

/* Padding with value `10`. */
.u-s-p-t-10 {
  padding-top: 0.625rem; }

.u-s-p-r-10 {
  padding-right: 0.625rem; }

.u-s-p-b-10 {
  padding-bottom: 0.625rem; }

.u-s-p-l-10 {
  padding-left: 0.625rem; }

.u-s-p-x-10 {
  padding-left: 0.625rem;
  padding-right: 0.625rem; }

.u-s-p-y-10 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem; }

.u-s-p-xy-10 {
  padding: 0.625rem; }

/* Margin with value `11`. */
.u-s-m-t-11 {
  margin-top: 0.6875rem; }

.u-s-m-r-11 {
  margin-right: 0.6875rem; }

.u-s-m-b-11 {
  margin-bottom: 0.6875rem; }

.u-s-m-l-11 {
  margin-left: 0.6875rem; }

.u-s-m-x-11 {
  margin-left: 0.6875rem;
  margin-right: 0.6875rem; }

.u-s-m-y-11 {
  margin-top: 0.6875rem;
  margin-bottom: 0.6875rem; }

.u-s-m-xy-11 {
  margin: 0.6875rem; }

/* Padding with value `11`. */
.u-s-p-t-11 {
  padding-top: 0.6875rem; }

.u-s-p-r-11 {
  padding-right: 0.6875rem; }

.u-s-p-b-11 {
  padding-bottom: 0.6875rem; }

.u-s-p-l-11 {
  padding-left: 0.6875rem; }

.u-s-p-x-11 {
  padding-left: 0.6875rem;
  padding-right: 0.6875rem; }

.u-s-p-y-11 {
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem; }

.u-s-p-xy-11 {
  padding: 0.6875rem; }

/* Margin with value `12`. */
.u-s-m-t-12 {
  margin-top: 0.75rem; }

.u-s-m-r-12 {
  margin-right: 0.75rem; }

.u-s-m-b-12 {
  margin-bottom: 0.75rem; }

.u-s-m-l-12 {
  margin-left: 0.75rem; }

.u-s-m-x-12 {
  margin-left: 0.75rem;
  margin-right: 0.75rem; }

.u-s-m-y-12 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem; }

.u-s-m-xy-12 {
  margin: 0.75rem; }

/* Padding with value `12`. */
.u-s-p-t-12 {
  padding-top: 0.75rem; }

.u-s-p-r-12 {
  padding-right: 0.75rem; }

.u-s-p-b-12 {
  padding-bottom: 0.75rem; }

.u-s-p-l-12 {
  padding-left: 0.75rem; }

.u-s-p-x-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem; }

.u-s-p-y-12 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }

.u-s-p-xy-12 {
  padding: 0.75rem; }

/* Margin with value `13`. */
.u-s-m-t-13 {
  margin-top: 0.8125rem; }

.u-s-m-r-13 {
  margin-right: 0.8125rem; }

.u-s-m-b-13 {
  margin-bottom: 0.8125rem; }

.u-s-m-l-13 {
  margin-left: 0.8125rem; }

.u-s-m-x-13 {
  margin-left: 0.8125rem;
  margin-right: 0.8125rem; }

.u-s-m-y-13 {
  margin-top: 0.8125rem;
  margin-bottom: 0.8125rem; }

.u-s-m-xy-13 {
  margin: 0.8125rem; }

/* Padding with value `13`. */
.u-s-p-t-13 {
  padding-top: 0.8125rem; }

.u-s-p-r-13 {
  padding-right: 0.8125rem; }

.u-s-p-b-13 {
  padding-bottom: 0.8125rem; }

.u-s-p-l-13 {
  padding-left: 0.8125rem; }

.u-s-p-x-13 {
  padding-left: 0.8125rem;
  padding-right: 0.8125rem; }

.u-s-p-y-13 {
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem; }

.u-s-p-xy-13 {
  padding: 0.8125rem; }

/* Margin with value `14`. */
.u-s-m-t-14 {
  margin-top: 0.875rem; }

.u-s-m-r-14 {
  margin-right: 0.875rem; }

.u-s-m-b-14 {
  margin-bottom: 0.875rem; }

.u-s-m-l-14 {
  margin-left: 0.875rem; }

.u-s-m-x-14 {
  margin-left: 0.875rem;
  margin-right: 0.875rem; }

.u-s-m-y-14 {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem; }

.u-s-m-xy-14 {
  margin: 0.875rem; }

/* Padding with value `14`. */
.u-s-p-t-14 {
  padding-top: 0.875rem; }

.u-s-p-r-14 {
  padding-right: 0.875rem; }

.u-s-p-b-14 {
  padding-bottom: 0.875rem; }

.u-s-p-l-14 {
  padding-left: 0.875rem; }

.u-s-p-x-14 {
  padding-left: 0.875rem;
  padding-right: 0.875rem; }

.u-s-p-y-14 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem; }

.u-s-p-xy-14 {
  padding: 0.875rem; }

/* Margin with value `15`. */
.u-s-m-t-15 {
  margin-top: 0.9375rem; }

.u-s-m-r-15 {
  margin-right: 0.9375rem; }

.u-s-m-b-15 {
  margin-bottom: 0.9375rem; }

.u-s-m-l-15 {
  margin-left: 0.9375rem; }

.u-s-m-x-15 {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem; }

.u-s-m-y-15 {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }

.u-s-m-xy-15 {
  margin: 0.9375rem; }

/* Padding with value `15`. */
.u-s-p-t-15 {
  padding-top: 0.9375rem; }

.u-s-p-r-15 {
  padding-right: 0.9375rem; }

.u-s-p-b-15 {
  padding-bottom: 0.9375rem; }

.u-s-p-l-15 {
  padding-left: 0.9375rem; }

.u-s-p-x-15 {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.u-s-p-y-15 {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }

.u-s-p-xy-15 {
  padding: 0.9375rem; }

/* Margin with value `16`. */
.u-s-m-t-16 {
  margin-top: 1rem; }

.u-s-m-r-16 {
  margin-right: 1rem; }

.u-s-m-b-16 {
  margin-bottom: 1rem; }

.u-s-m-l-16 {
  margin-left: 1rem; }

.u-s-m-x-16 {
  margin-left: 1rem;
  margin-right: 1rem; }

.u-s-m-y-16 {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.u-s-m-xy-16 {
  margin: 1rem; }

/* Padding with value `16`. */
.u-s-p-t-16 {
  padding-top: 1rem; }

.u-s-p-r-16 {
  padding-right: 1rem; }

.u-s-p-b-16 {
  padding-bottom: 1rem; }

.u-s-p-l-16 {
  padding-left: 1rem; }

.u-s-p-x-16 {
  padding-left: 1rem;
  padding-right: 1rem; }

.u-s-p-y-16 {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.u-s-p-xy-16 {
  padding: 1rem; }

/* Margin with value `17`. */
.u-s-m-t-17 {
  margin-top: 1.0625rem; }

.u-s-m-r-17 {
  margin-right: 1.0625rem; }

.u-s-m-b-17 {
  margin-bottom: 1.0625rem; }

.u-s-m-l-17 {
  margin-left: 1.0625rem; }

.u-s-m-x-17 {
  margin-left: 1.0625rem;
  margin-right: 1.0625rem; }

.u-s-m-y-17 {
  margin-top: 1.0625rem;
  margin-bottom: 1.0625rem; }

.u-s-m-xy-17 {
  margin: 1.0625rem; }

/* Padding with value `17`. */
.u-s-p-t-17 {
  padding-top: 1.0625rem; }

.u-s-p-r-17 {
  padding-right: 1.0625rem; }

.u-s-p-b-17 {
  padding-bottom: 1.0625rem; }

.u-s-p-l-17 {
  padding-left: 1.0625rem; }

.u-s-p-x-17 {
  padding-left: 1.0625rem;
  padding-right: 1.0625rem; }

.u-s-p-y-17 {
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem; }

.u-s-p-xy-17 {
  padding: 1.0625rem; }

/* Margin with value `18`. */
.u-s-m-t-18 {
  margin-top: 1.125rem; }

.u-s-m-r-18 {
  margin-right: 1.125rem; }

.u-s-m-b-18 {
  margin-bottom: 1.125rem; }

.u-s-m-l-18 {
  margin-left: 1.125rem; }

.u-s-m-x-18 {
  margin-left: 1.125rem;
  margin-right: 1.125rem; }

.u-s-m-y-18 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem; }

.u-s-m-xy-18 {
  margin: 1.125rem; }

/* Padding with value `18`. */
.u-s-p-t-18 {
  padding-top: 1.125rem; }

.u-s-p-r-18 {
  padding-right: 1.125rem; }

.u-s-p-b-18 {
  padding-bottom: 1.125rem; }

.u-s-p-l-18 {
  padding-left: 1.125rem; }

.u-s-p-x-18 {
  padding-left: 1.125rem;
  padding-right: 1.125rem; }

.u-s-p-y-18 {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem; }

.u-s-p-xy-18 {
  padding: 1.125rem; }

/* Margin with value `19`. */
.u-s-m-t-19 {
  margin-top: 1.1875rem; }

.u-s-m-r-19 {
  margin-right: 1.1875rem; }

.u-s-m-b-19 {
  margin-bottom: 1.1875rem; }

.u-s-m-l-19 {
  margin-left: 1.1875rem; }

.u-s-m-x-19 {
  margin-left: 1.1875rem;
  margin-right: 1.1875rem; }

.u-s-m-y-19 {
  margin-top: 1.1875rem;
  margin-bottom: 1.1875rem; }

.u-s-m-xy-19 {
  margin: 1.1875rem; }

/* Padding with value `19`. */
.u-s-p-t-19 {
  padding-top: 1.1875rem; }

.u-s-p-r-19 {
  padding-right: 1.1875rem; }

.u-s-p-b-19 {
  padding-bottom: 1.1875rem; }

.u-s-p-l-19 {
  padding-left: 1.1875rem; }

.u-s-p-x-19 {
  padding-left: 1.1875rem;
  padding-right: 1.1875rem; }

.u-s-p-y-19 {
  padding-top: 1.1875rem;
  padding-bottom: 1.1875rem; }

.u-s-p-xy-19 {
  padding: 1.1875rem; }

/* Margin with value `20`. */
.u-s-m-t-20 {
  margin-top: 1.25rem; }

.u-s-m-r-20 {
  margin-right: 1.25rem; }

.u-s-m-b-20 {
  margin-bottom: 1.25rem; }

.u-s-m-l-20 {
  margin-left: 1.25rem; }

.u-s-m-x-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem; }

.u-s-m-y-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem; }

.u-s-m-xy-20 {
  margin: 1.25rem; }

/* Padding with value `20`. */
.u-s-p-t-20 {
  padding-top: 1.25rem; }

.u-s-p-r-20 {
  padding-right: 1.25rem; }

.u-s-p-b-20 {
  padding-bottom: 1.25rem; }

.u-s-p-l-20 {
  padding-left: 1.25rem; }

.u-s-p-x-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem; }

.u-s-p-y-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem; }

.u-s-p-xy-20 {
  padding: 1.25rem; }

/* Margin with value `21`. */
.u-s-m-t-21 {
  margin-top: 1.3125rem; }

.u-s-m-r-21 {
  margin-right: 1.3125rem; }

.u-s-m-b-21 {
  margin-bottom: 1.3125rem; }

.u-s-m-l-21 {
  margin-left: 1.3125rem; }

.u-s-m-x-21 {
  margin-left: 1.3125rem;
  margin-right: 1.3125rem; }

.u-s-m-y-21 {
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem; }

.u-s-m-xy-21 {
  margin: 1.3125rem; }

/* Padding with value `21`. */
.u-s-p-t-21 {
  padding-top: 1.3125rem; }

.u-s-p-r-21 {
  padding-right: 1.3125rem; }

.u-s-p-b-21 {
  padding-bottom: 1.3125rem; }

.u-s-p-l-21 {
  padding-left: 1.3125rem; }

.u-s-p-x-21 {
  padding-left: 1.3125rem;
  padding-right: 1.3125rem; }

.u-s-p-y-21 {
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem; }

.u-s-p-xy-21 {
  padding: 1.3125rem; }

/* Margin with value `22`. */
.u-s-m-t-22 {
  margin-top: 1.375rem; }

.u-s-m-r-22 {
  margin-right: 1.375rem; }

.u-s-m-b-22 {
  margin-bottom: 1.375rem; }

.u-s-m-l-22 {
  margin-left: 1.375rem; }

.u-s-m-x-22 {
  margin-left: 1.375rem;
  margin-right: 1.375rem; }

.u-s-m-y-22 {
  margin-top: 1.375rem;
  margin-bottom: 1.375rem; }

.u-s-m-xy-22 {
  margin: 1.375rem; }

/* Padding with value `22`. */
.u-s-p-t-22 {
  padding-top: 1.375rem; }

.u-s-p-r-22 {
  padding-right: 1.375rem; }

.u-s-p-b-22 {
  padding-bottom: 1.375rem; }

.u-s-p-l-22 {
  padding-left: 1.375rem; }

.u-s-p-x-22 {
  padding-left: 1.375rem;
  padding-right: 1.375rem; }

.u-s-p-y-22 {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem; }

.u-s-p-xy-22 {
  padding: 1.375rem; }

/* Margin with value `23`. */
.u-s-m-t-23 {
  margin-top: 1.4375rem; }

.u-s-m-r-23 {
  margin-right: 1.4375rem; }

.u-s-m-b-23 {
  margin-bottom: 1.4375rem; }

.u-s-m-l-23 {
  margin-left: 1.4375rem; }

.u-s-m-x-23 {
  margin-left: 1.4375rem;
  margin-right: 1.4375rem; }

.u-s-m-y-23 {
  margin-top: 1.4375rem;
  margin-bottom: 1.4375rem; }

.u-s-m-xy-23 {
  margin: 1.4375rem; }

/* Padding with value `23`. */
.u-s-p-t-23 {
  padding-top: 1.4375rem; }

.u-s-p-r-23 {
  padding-right: 1.4375rem; }

.u-s-p-b-23 {
  padding-bottom: 1.4375rem; }

.u-s-p-l-23 {
  padding-left: 1.4375rem; }

.u-s-p-x-23 {
  padding-left: 1.4375rem;
  padding-right: 1.4375rem; }

.u-s-p-y-23 {
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem; }

.u-s-p-xy-23 {
  padding: 1.4375rem; }

/* Margin with value `24`. */
.u-s-m-t-24 {
  margin-top: 1.5rem; }

.u-s-m-r-24 {
  margin-right: 1.5rem; }

.u-s-m-b-24 {
  margin-bottom: 1.5rem; }

.u-s-m-l-24 {
  margin-left: 1.5rem; }

.u-s-m-x-24 {
  margin-left: 1.5rem;
  margin-right: 1.5rem; }

.u-s-m-y-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }

.u-s-m-xy-24 {
  margin: 1.5rem; }

/* Padding with value `24`. */
.u-s-p-t-24 {
  padding-top: 1.5rem; }

.u-s-p-r-24 {
  padding-right: 1.5rem; }

.u-s-p-b-24 {
  padding-bottom: 1.5rem; }

.u-s-p-l-24 {
  padding-left: 1.5rem; }

.u-s-p-x-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.u-s-p-y-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }

.u-s-p-xy-24 {
  padding: 1.5rem; }

/* Margin with value `25`. */
.u-s-m-t-25 {
  margin-top: 1.5625rem; }

.u-s-m-r-25 {
  margin-right: 1.5625rem; }

.u-s-m-b-25 {
  margin-bottom: 1.5625rem; }

.u-s-m-l-25 {
  margin-left: 1.5625rem; }

.u-s-m-x-25 {
  margin-left: 1.5625rem;
  margin-right: 1.5625rem; }

.u-s-m-y-25 {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem; }

.u-s-m-xy-25 {
  margin: 1.5625rem; }

/* Padding with value `25`. */
.u-s-p-t-25 {
  padding-top: 1.5625rem; }

.u-s-p-r-25 {
  padding-right: 1.5625rem; }

.u-s-p-b-25 {
  padding-bottom: 1.5625rem; }

.u-s-p-l-25 {
  padding-left: 1.5625rem; }

.u-s-p-x-25 {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem; }

.u-s-p-y-25 {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem; }

.u-s-p-xy-25 {
  padding: 1.5625rem; }

/* Margin with value `26`. */
.u-s-m-t-26 {
  margin-top: 1.625rem; }

.u-s-m-r-26 {
  margin-right: 1.625rem; }

.u-s-m-b-26 {
  margin-bottom: 1.625rem; }

.u-s-m-l-26 {
  margin-left: 1.625rem; }

.u-s-m-x-26 {
  margin-left: 1.625rem;
  margin-right: 1.625rem; }

.u-s-m-y-26 {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem; }

.u-s-m-xy-26 {
  margin: 1.625rem; }

/* Padding with value `26`. */
.u-s-p-t-26 {
  padding-top: 1.625rem; }

.u-s-p-r-26 {
  padding-right: 1.625rem; }

.u-s-p-b-26 {
  padding-bottom: 1.625rem; }

.u-s-p-l-26 {
  padding-left: 1.625rem; }

.u-s-p-x-26 {
  padding-left: 1.625rem;
  padding-right: 1.625rem; }

.u-s-p-y-26 {
  padding-top: 1.625rem;
  padding-bottom: 1.625rem; }

.u-s-p-xy-26 {
  padding: 1.625rem; }

/* Margin with value `27`. */
.u-s-m-t-27 {
  margin-top: 1.6875rem; }

.u-s-m-r-27 {
  margin-right: 1.6875rem; }

.u-s-m-b-27 {
  margin-bottom: 1.6875rem; }

.u-s-m-l-27 {
  margin-left: 1.6875rem; }

.u-s-m-x-27 {
  margin-left: 1.6875rem;
  margin-right: 1.6875rem; }

.u-s-m-y-27 {
  margin-top: 1.6875rem;
  margin-bottom: 1.6875rem; }

.u-s-m-xy-27 {
  margin: 1.6875rem; }

/* Padding with value `27`. */
.u-s-p-t-27 {
  padding-top: 1.6875rem; }

.u-s-p-r-27 {
  padding-right: 1.6875rem; }

.u-s-p-b-27 {
  padding-bottom: 1.6875rem; }

.u-s-p-l-27 {
  padding-left: 1.6875rem; }

.u-s-p-x-27 {
  padding-left: 1.6875rem;
  padding-right: 1.6875rem; }

.u-s-p-y-27 {
  padding-top: 1.6875rem;
  padding-bottom: 1.6875rem; }

.u-s-p-xy-27 {
  padding: 1.6875rem; }

/* Margin with value `28`. */
.u-s-m-t-28 {
  margin-top: 1.75rem; }

.u-s-m-r-28 {
  margin-right: 1.75rem; }

.u-s-m-b-28 {
  margin-bottom: 1.75rem; }

.u-s-m-l-28 {
  margin-left: 1.75rem; }

.u-s-m-x-28 {
  margin-left: 1.75rem;
  margin-right: 1.75rem; }

.u-s-m-y-28 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem; }

.u-s-m-xy-28 {
  margin: 1.75rem; }

/* Padding with value `28`. */
.u-s-p-t-28 {
  padding-top: 1.75rem; }

.u-s-p-r-28 {
  padding-right: 1.75rem; }

.u-s-p-b-28 {
  padding-bottom: 1.75rem; }

.u-s-p-l-28 {
  padding-left: 1.75rem; }

.u-s-p-x-28 {
  padding-left: 1.75rem;
  padding-right: 1.75rem; }

.u-s-p-y-28 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem; }

.u-s-p-xy-28 {
  padding: 1.75rem; }

/* Margin with value `29`. */
.u-s-m-t-29 {
  margin-top: 1.8125rem; }

.u-s-m-r-29 {
  margin-right: 1.8125rem; }

.u-s-m-b-29 {
  margin-bottom: 1.8125rem; }

.u-s-m-l-29 {
  margin-left: 1.8125rem; }

.u-s-m-x-29 {
  margin-left: 1.8125rem;
  margin-right: 1.8125rem; }

.u-s-m-y-29 {
  margin-top: 1.8125rem;
  margin-bottom: 1.8125rem; }

.u-s-m-xy-29 {
  margin: 1.8125rem; }

/* Padding with value `29`. */
.u-s-p-t-29 {
  padding-top: 1.8125rem; }

.u-s-p-r-29 {
  padding-right: 1.8125rem; }

.u-s-p-b-29 {
  padding-bottom: 1.8125rem; }

.u-s-p-l-29 {
  padding-left: 1.8125rem; }

.u-s-p-x-29 {
  padding-left: 1.8125rem;
  padding-right: 1.8125rem; }

.u-s-p-y-29 {
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem; }

.u-s-p-xy-29 {
  padding: 1.8125rem; }

/* Margin with value `30`. */
.u-s-m-t-30 {
  margin-top: 1.875rem; }

.u-s-m-r-30 {
  margin-right: 1.875rem; }

.u-s-m-b-30 {
  margin-bottom: 1.875rem; }

.u-s-m-l-30 {
  margin-left: 1.875rem; }

.u-s-m-x-30 {
  margin-left: 1.875rem;
  margin-right: 1.875rem; }

.u-s-m-y-30 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem; }

.u-s-m-xy-30 {
  margin: 1.875rem; }

/* Padding with value `30`. */
.u-s-p-t-30 {
  padding-top: 1.875rem; }

.u-s-p-r-30 {
  padding-right: 1.875rem; }

.u-s-p-b-30 {
  padding-bottom: 1.875rem; }

.u-s-p-l-30 {
  padding-left: 1.875rem; }

.u-s-p-x-30 {
  padding-left: 1.875rem;
  padding-right: 1.875rem; }

.u-s-p-y-30 {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem; }

.u-s-p-xy-30 {
  padding: 1.875rem; }

/* Margin with value `31`. */
.u-s-m-t-31 {
  margin-top: 1.9375rem; }

.u-s-m-r-31 {
  margin-right: 1.9375rem; }

.u-s-m-b-31 {
  margin-bottom: 1.9375rem; }

.u-s-m-l-31 {
  margin-left: 1.9375rem; }

.u-s-m-x-31 {
  margin-left: 1.9375rem;
  margin-right: 1.9375rem; }

.u-s-m-y-31 {
  margin-top: 1.9375rem;
  margin-bottom: 1.9375rem; }

.u-s-m-xy-31 {
  margin: 1.9375rem; }

/* Padding with value `31`. */
.u-s-p-t-31 {
  padding-top: 1.9375rem; }

.u-s-p-r-31 {
  padding-right: 1.9375rem; }

.u-s-p-b-31 {
  padding-bottom: 1.9375rem; }

.u-s-p-l-31 {
  padding-left: 1.9375rem; }

.u-s-p-x-31 {
  padding-left: 1.9375rem;
  padding-right: 1.9375rem; }

.u-s-p-y-31 {
  padding-top: 1.9375rem;
  padding-bottom: 1.9375rem; }

.u-s-p-xy-31 {
  padding: 1.9375rem; }

/* Margin with value `32`. */
.u-s-m-t-32 {
  margin-top: 2rem; }

.u-s-m-r-32 {
  margin-right: 2rem; }

.u-s-m-b-32 {
  margin-bottom: 2rem; }

.u-s-m-l-32 {
  margin-left: 2rem; }

.u-s-m-x-32 {
  margin-left: 2rem;
  margin-right: 2rem; }

.u-s-m-y-32 {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.u-s-m-xy-32 {
  margin: 2rem; }

/* Padding with value `32`. */
.u-s-p-t-32 {
  padding-top: 2rem; }

.u-s-p-r-32 {
  padding-right: 2rem; }

.u-s-p-b-32 {
  padding-bottom: 2rem; }

.u-s-p-l-32 {
  padding-left: 2rem; }

.u-s-p-x-32 {
  padding-left: 2rem;
  padding-right: 2rem; }

.u-s-p-y-32 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.u-s-p-xy-32 {
  padding: 2rem; }

/* Margin with value `33`. */
.u-s-m-t-33 {
  margin-top: 2.0625rem; }

.u-s-m-r-33 {
  margin-right: 2.0625rem; }

.u-s-m-b-33 {
  margin-bottom: 2.0625rem; }

.u-s-m-l-33 {
  margin-left: 2.0625rem; }

.u-s-m-x-33 {
  margin-left: 2.0625rem;
  margin-right: 2.0625rem; }

.u-s-m-y-33 {
  margin-top: 2.0625rem;
  margin-bottom: 2.0625rem; }

.u-s-m-xy-33 {
  margin: 2.0625rem; }

/* Padding with value `33`. */
.u-s-p-t-33 {
  padding-top: 2.0625rem; }

.u-s-p-r-33 {
  padding-right: 2.0625rem; }

.u-s-p-b-33 {
  padding-bottom: 2.0625rem; }

.u-s-p-l-33 {
  padding-left: 2.0625rem; }

.u-s-p-x-33 {
  padding-left: 2.0625rem;
  padding-right: 2.0625rem; }

.u-s-p-y-33 {
  padding-top: 2.0625rem;
  padding-bottom: 2.0625rem; }

.u-s-p-xy-33 {
  padding: 2.0625rem; }

/* Margin with value `34`. */
.u-s-m-t-34 {
  margin-top: 2.125rem; }

.u-s-m-r-34 {
  margin-right: 2.125rem; }

.u-s-m-b-34 {
  margin-bottom: 2.125rem; }

.u-s-m-l-34 {
  margin-left: 2.125rem; }

.u-s-m-x-34 {
  margin-left: 2.125rem;
  margin-right: 2.125rem; }

.u-s-m-y-34 {
  margin-top: 2.125rem;
  margin-bottom: 2.125rem; }

.u-s-m-xy-34 {
  margin: 2.125rem; }

/* Padding with value `34`. */
.u-s-p-t-34 {
  padding-top: 2.125rem; }

.u-s-p-r-34 {
  padding-right: 2.125rem; }

.u-s-p-b-34 {
  padding-bottom: 2.125rem; }

.u-s-p-l-34 {
  padding-left: 2.125rem; }

.u-s-p-x-34 {
  padding-left: 2.125rem;
  padding-right: 2.125rem; }

.u-s-p-y-34 {
  padding-top: 2.125rem;
  padding-bottom: 2.125rem; }

.u-s-p-xy-34 {
  padding: 2.125rem; }

/* Margin with value `35`. */
.u-s-m-t-35 {
  margin-top: 2.1875rem; }

.u-s-m-r-35 {
  margin-right: 2.1875rem; }

.u-s-m-b-35 {
  margin-bottom: 2.1875rem; }

.u-s-m-l-35 {
  margin-left: 2.1875rem; }

.u-s-m-x-35 {
  margin-left: 2.1875rem;
  margin-right: 2.1875rem; }

.u-s-m-y-35 {
  margin-top: 2.1875rem;
  margin-bottom: 2.1875rem; }

.u-s-m-xy-35 {
  margin: 2.1875rem; }

/* Padding with value `35`. */
.u-s-p-t-35 {
  padding-top: 2.1875rem; }

.u-s-p-r-35 {
  padding-right: 2.1875rem; }

.u-s-p-b-35 {
  padding-bottom: 2.1875rem; }

.u-s-p-l-35 {
  padding-left: 2.1875rem; }

.u-s-p-x-35 {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem; }

.u-s-p-y-35 {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem; }

.u-s-p-xy-35 {
  padding: 2.1875rem; }

/* Margin with value `36`. */
.u-s-m-t-36 {
  margin-top: 2.25rem; }

.u-s-m-r-36 {
  margin-right: 2.25rem; }

.u-s-m-b-36 {
  margin-bottom: 2.25rem; }

.u-s-m-l-36 {
  margin-left: 2.25rem; }

.u-s-m-x-36 {
  margin-left: 2.25rem;
  margin-right: 2.25rem; }

.u-s-m-y-36 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem; }

.u-s-m-xy-36 {
  margin: 2.25rem; }

/* Padding with value `36`. */
.u-s-p-t-36 {
  padding-top: 2.25rem; }

.u-s-p-r-36 {
  padding-right: 2.25rem; }

.u-s-p-b-36 {
  padding-bottom: 2.25rem; }

.u-s-p-l-36 {
  padding-left: 2.25rem; }

.u-s-p-x-36 {
  padding-left: 2.25rem;
  padding-right: 2.25rem; }

.u-s-p-y-36 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem; }

.u-s-p-xy-36 {
  padding: 2.25rem; }

/* Margin with value `37`. */
.u-s-m-t-37 {
  margin-top: 2.3125rem; }

.u-s-m-r-37 {
  margin-right: 2.3125rem; }

.u-s-m-b-37 {
  margin-bottom: 2.3125rem; }

.u-s-m-l-37 {
  margin-left: 2.3125rem; }

.u-s-m-x-37 {
  margin-left: 2.3125rem;
  margin-right: 2.3125rem; }

.u-s-m-y-37 {
  margin-top: 2.3125rem;
  margin-bottom: 2.3125rem; }

.u-s-m-xy-37 {
  margin: 2.3125rem; }

/* Padding with value `37`. */
.u-s-p-t-37 {
  padding-top: 2.3125rem; }

.u-s-p-r-37 {
  padding-right: 2.3125rem; }

.u-s-p-b-37 {
  padding-bottom: 2.3125rem; }

.u-s-p-l-37 {
  padding-left: 2.3125rem; }

.u-s-p-x-37 {
  padding-left: 2.3125rem;
  padding-right: 2.3125rem; }

.u-s-p-y-37 {
  padding-top: 2.3125rem;
  padding-bottom: 2.3125rem; }

.u-s-p-xy-37 {
  padding: 2.3125rem; }

/* Margin with value `38`. */
.u-s-m-t-38 {
  margin-top: 2.375rem; }

.u-s-m-r-38 {
  margin-right: 2.375rem; }

.u-s-m-b-38 {
  margin-bottom: 2.375rem; }

.u-s-m-l-38 {
  margin-left: 2.375rem; }

.u-s-m-x-38 {
  margin-left: 2.375rem;
  margin-right: 2.375rem; }

.u-s-m-y-38 {
  margin-top: 2.375rem;
  margin-bottom: 2.375rem; }

.u-s-m-xy-38 {
  margin: 2.375rem; }

/* Padding with value `38`. */
.u-s-p-t-38 {
  padding-top: 2.375rem; }

.u-s-p-r-38 {
  padding-right: 2.375rem; }

.u-s-p-b-38 {
  padding-bottom: 2.375rem; }

.u-s-p-l-38 {
  padding-left: 2.375rem; }

.u-s-p-x-38 {
  padding-left: 2.375rem;
  padding-right: 2.375rem; }

.u-s-p-y-38 {
  padding-top: 2.375rem;
  padding-bottom: 2.375rem; }

.u-s-p-xy-38 {
  padding: 2.375rem; }

/* Margin with value `39`. */
.u-s-m-t-39 {
  margin-top: 2.4375rem; }

.u-s-m-r-39 {
  margin-right: 2.4375rem; }

.u-s-m-b-39 {
  margin-bottom: 2.4375rem; }

.u-s-m-l-39 {
  margin-left: 2.4375rem; }

.u-s-m-x-39 {
  margin-left: 2.4375rem;
  margin-right: 2.4375rem; }

.u-s-m-y-39 {
  margin-top: 2.4375rem;
  margin-bottom: 2.4375rem; }

.u-s-m-xy-39 {
  margin: 2.4375rem; }

/* Padding with value `39`. */
.u-s-p-t-39 {
  padding-top: 2.4375rem; }

.u-s-p-r-39 {
  padding-right: 2.4375rem; }

.u-s-p-b-39 {
  padding-bottom: 2.4375rem; }

.u-s-p-l-39 {
  padding-left: 2.4375rem; }

.u-s-p-x-39 {
  padding-left: 2.4375rem;
  padding-right: 2.4375rem; }

.u-s-p-y-39 {
  padding-top: 2.4375rem;
  padding-bottom: 2.4375rem; }

.u-s-p-xy-39 {
  padding: 2.4375rem; }

/* Margin with value `40`. */
.u-s-m-t-40 {
  margin-top: 2.5rem; }

.u-s-m-r-40 {
  margin-right: 2.5rem; }

.u-s-m-b-40 {
  margin-bottom: 2.5rem; }

.u-s-m-l-40 {
  margin-left: 2.5rem; }

.u-s-m-x-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem; }

.u-s-m-y-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem; }

.u-s-m-xy-40 {
  margin: 2.5rem; }

/* Padding with value `40`. */
.u-s-p-t-40 {
  padding-top: 2.5rem; }

.u-s-p-r-40 {
  padding-right: 2.5rem; }

.u-s-p-b-40 {
  padding-bottom: 2.5rem; }

.u-s-p-l-40 {
  padding-left: 2.5rem; }

.u-s-p-x-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem; }

.u-s-p-y-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }

.u-s-p-xy-40 {
  padding: 2.5rem; }

/* Margin with value `41`. */
.u-s-m-t-41 {
  margin-top: 2.5625rem; }

.u-s-m-r-41 {
  margin-right: 2.5625rem; }

.u-s-m-b-41 {
  margin-bottom: 2.5625rem; }

.u-s-m-l-41 {
  margin-left: 2.5625rem; }

.u-s-m-x-41 {
  margin-left: 2.5625rem;
  margin-right: 2.5625rem; }

.u-s-m-y-41 {
  margin-top: 2.5625rem;
  margin-bottom: 2.5625rem; }

.u-s-m-xy-41 {
  margin: 2.5625rem; }

/* Padding with value `41`. */
.u-s-p-t-41 {
  padding-top: 2.5625rem; }

.u-s-p-r-41 {
  padding-right: 2.5625rem; }

.u-s-p-b-41 {
  padding-bottom: 2.5625rem; }

.u-s-p-l-41 {
  padding-left: 2.5625rem; }

.u-s-p-x-41 {
  padding-left: 2.5625rem;
  padding-right: 2.5625rem; }

.u-s-p-y-41 {
  padding-top: 2.5625rem;
  padding-bottom: 2.5625rem; }

.u-s-p-xy-41 {
  padding: 2.5625rem; }

/* Margin with value `42`. */
.u-s-m-t-42 {
  margin-top: 2.625rem; }

.u-s-m-r-42 {
  margin-right: 2.625rem; }

.u-s-m-b-42 {
  margin-bottom: 2.625rem; }

.u-s-m-l-42 {
  margin-left: 2.625rem; }

.u-s-m-x-42 {
  margin-left: 2.625rem;
  margin-right: 2.625rem; }

.u-s-m-y-42 {
  margin-top: 2.625rem;
  margin-bottom: 2.625rem; }

.u-s-m-xy-42 {
  margin: 2.625rem; }

/* Padding with value `42`. */
.u-s-p-t-42 {
  padding-top: 2.625rem; }

.u-s-p-r-42 {
  padding-right: 2.625rem; }

.u-s-p-b-42 {
  padding-bottom: 2.625rem; }

.u-s-p-l-42 {
  padding-left: 2.625rem; }

.u-s-p-x-42 {
  padding-left: 2.625rem;
  padding-right: 2.625rem; }

.u-s-p-y-42 {
  padding-top: 2.625rem;
  padding-bottom: 2.625rem; }

.u-s-p-xy-42 {
  padding: 2.625rem; }

/* Margin with value `43`. */
.u-s-m-t-43 {
  margin-top: 2.6875rem; }

.u-s-m-r-43 {
  margin-right: 2.6875rem; }

.u-s-m-b-43 {
  margin-bottom: 2.6875rem; }

.u-s-m-l-43 {
  margin-left: 2.6875rem; }

.u-s-m-x-43 {
  margin-left: 2.6875rem;
  margin-right: 2.6875rem; }

.u-s-m-y-43 {
  margin-top: 2.6875rem;
  margin-bottom: 2.6875rem; }

.u-s-m-xy-43 {
  margin: 2.6875rem; }

/* Padding with value `43`. */
.u-s-p-t-43 {
  padding-top: 2.6875rem; }

.u-s-p-r-43 {
  padding-right: 2.6875rem; }

.u-s-p-b-43 {
  padding-bottom: 2.6875rem; }

.u-s-p-l-43 {
  padding-left: 2.6875rem; }

.u-s-p-x-43 {
  padding-left: 2.6875rem;
  padding-right: 2.6875rem; }

.u-s-p-y-43 {
  padding-top: 2.6875rem;
  padding-bottom: 2.6875rem; }

.u-s-p-xy-43 {
  padding: 2.6875rem; }

/* Margin with value `44`. */
.u-s-m-t-44 {
  margin-top: 2.75rem; }

.u-s-m-r-44 {
  margin-right: 2.75rem; }

.u-s-m-b-44 {
  margin-bottom: 2.75rem; }

.u-s-m-l-44 {
  margin-left: 2.75rem; }

.u-s-m-x-44 {
  margin-left: 2.75rem;
  margin-right: 2.75rem; }

.u-s-m-y-44 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem; }

.u-s-m-xy-44 {
  margin: 2.75rem; }

/* Padding with value `44`. */
.u-s-p-t-44 {
  padding-top: 2.75rem; }

.u-s-p-r-44 {
  padding-right: 2.75rem; }

.u-s-p-b-44 {
  padding-bottom: 2.75rem; }

.u-s-p-l-44 {
  padding-left: 2.75rem; }

.u-s-p-x-44 {
  padding-left: 2.75rem;
  padding-right: 2.75rem; }

.u-s-p-y-44 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem; }

.u-s-p-xy-44 {
  padding: 2.75rem; }

/* Margin with value `45`. */
.u-s-m-t-45 {
  margin-top: 2.8125rem; }

.u-s-m-r-45 {
  margin-right: 2.8125rem; }

.u-s-m-b-45 {
  margin-bottom: 2.8125rem; }

.u-s-m-l-45 {
  margin-left: 2.8125rem; }

.u-s-m-x-45 {
  margin-left: 2.8125rem;
  margin-right: 2.8125rem; }

.u-s-m-y-45 {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem; }

.u-s-m-xy-45 {
  margin: 2.8125rem; }

/* Padding with value `45`. */
.u-s-p-t-45 {
  padding-top: 2.8125rem; }

.u-s-p-r-45 {
  padding-right: 2.8125rem; }

.u-s-p-b-45 {
  padding-bottom: 2.8125rem; }

.u-s-p-l-45 {
  padding-left: 2.8125rem; }

.u-s-p-x-45 {
  padding-left: 2.8125rem;
  padding-right: 2.8125rem; }

.u-s-p-y-45 {
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem; }

.u-s-p-xy-45 {
  padding: 2.8125rem; }

/* Margin with value `46`. */
.u-s-m-t-46 {
  margin-top: 2.875rem; }

.u-s-m-r-46 {
  margin-right: 2.875rem; }

.u-s-m-b-46 {
  margin-bottom: 2.875rem; }

.u-s-m-l-46 {
  margin-left: 2.875rem; }

.u-s-m-x-46 {
  margin-left: 2.875rem;
  margin-right: 2.875rem; }

.u-s-m-y-46 {
  margin-top: 2.875rem;
  margin-bottom: 2.875rem; }

.u-s-m-xy-46 {
  margin: 2.875rem; }

/* Padding with value `46`. */
.u-s-p-t-46 {
  padding-top: 2.875rem; }

.u-s-p-r-46 {
  padding-right: 2.875rem; }

.u-s-p-b-46 {
  padding-bottom: 2.875rem; }

.u-s-p-l-46 {
  padding-left: 2.875rem; }

.u-s-p-x-46 {
  padding-left: 2.875rem;
  padding-right: 2.875rem; }

.u-s-p-y-46 {
  padding-top: 2.875rem;
  padding-bottom: 2.875rem; }

.u-s-p-xy-46 {
  padding: 2.875rem; }

/* Margin with value `47`. */
.u-s-m-t-47 {
  margin-top: 2.9375rem; }

.u-s-m-r-47 {
  margin-right: 2.9375rem; }

.u-s-m-b-47 {
  margin-bottom: 2.9375rem; }

.u-s-m-l-47 {
  margin-left: 2.9375rem; }

.u-s-m-x-47 {
  margin-left: 2.9375rem;
  margin-right: 2.9375rem; }

.u-s-m-y-47 {
  margin-top: 2.9375rem;
  margin-bottom: 2.9375rem; }

.u-s-m-xy-47 {
  margin: 2.9375rem; }

/* Padding with value `47`. */
.u-s-p-t-47 {
  padding-top: 2.9375rem; }

.u-s-p-r-47 {
  padding-right: 2.9375rem; }

.u-s-p-b-47 {
  padding-bottom: 2.9375rem; }

.u-s-p-l-47 {
  padding-left: 2.9375rem; }

.u-s-p-x-47 {
  padding-left: 2.9375rem;
  padding-right: 2.9375rem; }

.u-s-p-y-47 {
  padding-top: 2.9375rem;
  padding-bottom: 2.9375rem; }

.u-s-p-xy-47 {
  padding: 2.9375rem; }

/* Margin with value `48`. */
.u-s-m-t-48 {
  margin-top: 3rem; }

.u-s-m-r-48 {
  margin-right: 3rem; }

.u-s-m-b-48 {
  margin-bottom: 3rem; }

.u-s-m-l-48 {
  margin-left: 3rem; }

.u-s-m-x-48 {
  margin-left: 3rem;
  margin-right: 3rem; }

.u-s-m-y-48 {
  margin-top: 3rem;
  margin-bottom: 3rem; }

.u-s-m-xy-48 {
  margin: 3rem; }

/* Padding with value `48`. */
.u-s-p-t-48 {
  padding-top: 3rem; }

.u-s-p-r-48 {
  padding-right: 3rem; }

.u-s-p-b-48 {
  padding-bottom: 3rem; }

.u-s-p-l-48 {
  padding-left: 3rem; }

.u-s-p-x-48 {
  padding-left: 3rem;
  padding-right: 3rem; }

.u-s-p-y-48 {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.u-s-p-xy-48 {
  padding: 3rem; }

/* Margin with value `49`. */
.u-s-m-t-49 {
  margin-top: 3.0625rem; }

.u-s-m-r-49 {
  margin-right: 3.0625rem; }

.u-s-m-b-49 {
  margin-bottom: 3.0625rem; }

.u-s-m-l-49 {
  margin-left: 3.0625rem; }

.u-s-m-x-49 {
  margin-left: 3.0625rem;
  margin-right: 3.0625rem; }

.u-s-m-y-49 {
  margin-top: 3.0625rem;
  margin-bottom: 3.0625rem; }

.u-s-m-xy-49 {
  margin: 3.0625rem; }

/* Padding with value `49`. */
.u-s-p-t-49 {
  padding-top: 3.0625rem; }

.u-s-p-r-49 {
  padding-right: 3.0625rem; }

.u-s-p-b-49 {
  padding-bottom: 3.0625rem; }

.u-s-p-l-49 {
  padding-left: 3.0625rem; }

.u-s-p-x-49 {
  padding-left: 3.0625rem;
  padding-right: 3.0625rem; }

.u-s-p-y-49 {
  padding-top: 3.0625rem;
  padding-bottom: 3.0625rem; }

.u-s-p-xy-49 {
  padding: 3.0625rem; }

/* Margin with value `50`. */
.u-s-m-t-50 {
  margin-top: 3.125rem; }

.u-s-m-r-50 {
  margin-right: 3.125rem; }

.u-s-m-b-50 {
  margin-bottom: 3.125rem; }

.u-s-m-l-50 {
  margin-left: 3.125rem; }

.u-s-m-x-50 {
  margin-left: 3.125rem;
  margin-right: 3.125rem; }

.u-s-m-y-50 {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem; }

.u-s-m-xy-50 {
  margin: 3.125rem; }

/* Padding with value `50`. */
.u-s-p-t-50 {
  padding-top: 3.125rem; }

.u-s-p-r-50 {
  padding-right: 3.125rem; }

.u-s-p-b-50 {
  padding-bottom: 3.125rem; }

.u-s-p-l-50 {
  padding-left: 3.125rem; }

.u-s-p-x-50 {
  padding-left: 3.125rem;
  padding-right: 3.125rem; }

.u-s-p-y-50 {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem; }

.u-s-p-xy-50 {
  padding: 3.125rem; }

/* Margin with value `51`. */
.u-s-m-t-51 {
  margin-top: 3.1875rem; }

.u-s-m-r-51 {
  margin-right: 3.1875rem; }

.u-s-m-b-51 {
  margin-bottom: 3.1875rem; }

.u-s-m-l-51 {
  margin-left: 3.1875rem; }

.u-s-m-x-51 {
  margin-left: 3.1875rem;
  margin-right: 3.1875rem; }

.u-s-m-y-51 {
  margin-top: 3.1875rem;
  margin-bottom: 3.1875rem; }

.u-s-m-xy-51 {
  margin: 3.1875rem; }

/* Padding with value `51`. */
.u-s-p-t-51 {
  padding-top: 3.1875rem; }

.u-s-p-r-51 {
  padding-right: 3.1875rem; }

.u-s-p-b-51 {
  padding-bottom: 3.1875rem; }

.u-s-p-l-51 {
  padding-left: 3.1875rem; }

.u-s-p-x-51 {
  padding-left: 3.1875rem;
  padding-right: 3.1875rem; }

.u-s-p-y-51 {
  padding-top: 3.1875rem;
  padding-bottom: 3.1875rem; }

.u-s-p-xy-51 {
  padding: 3.1875rem; }

/* Margin with value `52`. */
.u-s-m-t-52 {
  margin-top: 3.25rem; }

.u-s-m-r-52 {
  margin-right: 3.25rem; }

.u-s-m-b-52 {
  margin-bottom: 3.25rem; }

.u-s-m-l-52 {
  margin-left: 3.25rem; }

.u-s-m-x-52 {
  margin-left: 3.25rem;
  margin-right: 3.25rem; }

.u-s-m-y-52 {
  margin-top: 3.25rem;
  margin-bottom: 3.25rem; }

.u-s-m-xy-52 {
  margin: 3.25rem; }

/* Padding with value `52`. */
.u-s-p-t-52 {
  padding-top: 3.25rem; }

.u-s-p-r-52 {
  padding-right: 3.25rem; }

.u-s-p-b-52 {
  padding-bottom: 3.25rem; }

.u-s-p-l-52 {
  padding-left: 3.25rem; }

.u-s-p-x-52 {
  padding-left: 3.25rem;
  padding-right: 3.25rem; }

.u-s-p-y-52 {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem; }

.u-s-p-xy-52 {
  padding: 3.25rem; }

/* Margin with value `53`. */
.u-s-m-t-53 {
  margin-top: 3.3125rem; }

.u-s-m-r-53 {
  margin-right: 3.3125rem; }

.u-s-m-b-53 {
  margin-bottom: 3.3125rem; }

.u-s-m-l-53 {
  margin-left: 3.3125rem; }

.u-s-m-x-53 {
  margin-left: 3.3125rem;
  margin-right: 3.3125rem; }

.u-s-m-y-53 {
  margin-top: 3.3125rem;
  margin-bottom: 3.3125rem; }

.u-s-m-xy-53 {
  margin: 3.3125rem; }

/* Padding with value `53`. */
.u-s-p-t-53 {
  padding-top: 3.3125rem; }

.u-s-p-r-53 {
  padding-right: 3.3125rem; }

.u-s-p-b-53 {
  padding-bottom: 3.3125rem; }

.u-s-p-l-53 {
  padding-left: 3.3125rem; }

.u-s-p-x-53 {
  padding-left: 3.3125rem;
  padding-right: 3.3125rem; }

.u-s-p-y-53 {
  padding-top: 3.3125rem;
  padding-bottom: 3.3125rem; }

.u-s-p-xy-53 {
  padding: 3.3125rem; }

/* Margin with value `54`. */
.u-s-m-t-54 {
  margin-top: 3.375rem; }

.u-s-m-r-54 {
  margin-right: 3.375rem; }

.u-s-m-b-54 {
  margin-bottom: 3.375rem; }

.u-s-m-l-54 {
  margin-left: 3.375rem; }

.u-s-m-x-54 {
  margin-left: 3.375rem;
  margin-right: 3.375rem; }

.u-s-m-y-54 {
  margin-top: 3.375rem;
  margin-bottom: 3.375rem; }

.u-s-m-xy-54 {
  margin: 3.375rem; }

/* Padding with value `54`. */
.u-s-p-t-54 {
  padding-top: 3.375rem; }

.u-s-p-r-54 {
  padding-right: 3.375rem; }

.u-s-p-b-54 {
  padding-bottom: 3.375rem; }

.u-s-p-l-54 {
  padding-left: 3.375rem; }

.u-s-p-x-54 {
  padding-left: 3.375rem;
  padding-right: 3.375rem; }

.u-s-p-y-54 {
  padding-top: 3.375rem;
  padding-bottom: 3.375rem; }

.u-s-p-xy-54 {
  padding: 3.375rem; }

/* Margin with value `55`. */
.u-s-m-t-55 {
  margin-top: 3.4375rem; }

.u-s-m-r-55 {
  margin-right: 3.4375rem; }

.u-s-m-b-55 {
  margin-bottom: 3.4375rem; }

.u-s-m-l-55 {
  margin-left: 3.4375rem; }

.u-s-m-x-55 {
  margin-left: 3.4375rem;
  margin-right: 3.4375rem; }

.u-s-m-y-55 {
  margin-top: 3.4375rem;
  margin-bottom: 3.4375rem; }

.u-s-m-xy-55 {
  margin: 3.4375rem; }

/* Padding with value `55`. */
.u-s-p-t-55 {
  padding-top: 3.4375rem; }

.u-s-p-r-55 {
  padding-right: 3.4375rem; }

.u-s-p-b-55 {
  padding-bottom: 3.4375rem; }

.u-s-p-l-55 {
  padding-left: 3.4375rem; }

.u-s-p-x-55 {
  padding-left: 3.4375rem;
  padding-right: 3.4375rem; }

.u-s-p-y-55 {
  padding-top: 3.4375rem;
  padding-bottom: 3.4375rem; }

.u-s-p-xy-55 {
  padding: 3.4375rem; }

/* Margin with value `56`. */
.u-s-m-t-56 {
  margin-top: 3.5rem; }

.u-s-m-r-56 {
  margin-right: 3.5rem; }

.u-s-m-b-56 {
  margin-bottom: 3.5rem; }

.u-s-m-l-56 {
  margin-left: 3.5rem; }

.u-s-m-x-56 {
  margin-left: 3.5rem;
  margin-right: 3.5rem; }

.u-s-m-y-56 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem; }

.u-s-m-xy-56 {
  margin: 3.5rem; }

/* Padding with value `56`. */
.u-s-p-t-56 {
  padding-top: 3.5rem; }

.u-s-p-r-56 {
  padding-right: 3.5rem; }

.u-s-p-b-56 {
  padding-bottom: 3.5rem; }

.u-s-p-l-56 {
  padding-left: 3.5rem; }

.u-s-p-x-56 {
  padding-left: 3.5rem;
  padding-right: 3.5rem; }

.u-s-p-y-56 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem; }

.u-s-p-xy-56 {
  padding: 3.5rem; }

/* Margin with value `57`. */
.u-s-m-t-57 {
  margin-top: 3.5625rem; }

.u-s-m-r-57 {
  margin-right: 3.5625rem; }

.u-s-m-b-57 {
  margin-bottom: 3.5625rem; }

.u-s-m-l-57 {
  margin-left: 3.5625rem; }

.u-s-m-x-57 {
  margin-left: 3.5625rem;
  margin-right: 3.5625rem; }

.u-s-m-y-57 {
  margin-top: 3.5625rem;
  margin-bottom: 3.5625rem; }

.u-s-m-xy-57 {
  margin: 3.5625rem; }

/* Padding with value `57`. */
.u-s-p-t-57 {
  padding-top: 3.5625rem; }

.u-s-p-r-57 {
  padding-right: 3.5625rem; }

.u-s-p-b-57 {
  padding-bottom: 3.5625rem; }

.u-s-p-l-57 {
  padding-left: 3.5625rem; }

.u-s-p-x-57 {
  padding-left: 3.5625rem;
  padding-right: 3.5625rem; }

.u-s-p-y-57 {
  padding-top: 3.5625rem;
  padding-bottom: 3.5625rem; }

.u-s-p-xy-57 {
  padding: 3.5625rem; }

/* Margin with value `58`. */
.u-s-m-t-58 {
  margin-top: 3.625rem; }

.u-s-m-r-58 {
  margin-right: 3.625rem; }

.u-s-m-b-58 {
  margin-bottom: 3.625rem; }

.u-s-m-l-58 {
  margin-left: 3.625rem; }

.u-s-m-x-58 {
  margin-left: 3.625rem;
  margin-right: 3.625rem; }

.u-s-m-y-58 {
  margin-top: 3.625rem;
  margin-bottom: 3.625rem; }

.u-s-m-xy-58 {
  margin: 3.625rem; }

/* Padding with value `58`. */
.u-s-p-t-58 {
  padding-top: 3.625rem; }

.u-s-p-r-58 {
  padding-right: 3.625rem; }

.u-s-p-b-58 {
  padding-bottom: 3.625rem; }

.u-s-p-l-58 {
  padding-left: 3.625rem; }

.u-s-p-x-58 {
  padding-left: 3.625rem;
  padding-right: 3.625rem; }

.u-s-p-y-58 {
  padding-top: 3.625rem;
  padding-bottom: 3.625rem; }

.u-s-p-xy-58 {
  padding: 3.625rem; }

/* Margin with value `59`. */
.u-s-m-t-59 {
  margin-top: 3.6875rem; }

.u-s-m-r-59 {
  margin-right: 3.6875rem; }

.u-s-m-b-59 {
  margin-bottom: 3.6875rem; }

.u-s-m-l-59 {
  margin-left: 3.6875rem; }

.u-s-m-x-59 {
  margin-left: 3.6875rem;
  margin-right: 3.6875rem; }

.u-s-m-y-59 {
  margin-top: 3.6875rem;
  margin-bottom: 3.6875rem; }

.u-s-m-xy-59 {
  margin: 3.6875rem; }

/* Padding with value `59`. */
.u-s-p-t-59 {
  padding-top: 3.6875rem; }

.u-s-p-r-59 {
  padding-right: 3.6875rem; }

.u-s-p-b-59 {
  padding-bottom: 3.6875rem; }

.u-s-p-l-59 {
  padding-left: 3.6875rem; }

.u-s-p-x-59 {
  padding-left: 3.6875rem;
  padding-right: 3.6875rem; }

.u-s-p-y-59 {
  padding-top: 3.6875rem;
  padding-bottom: 3.6875rem; }

.u-s-p-xy-59 {
  padding: 3.6875rem; }

/* Margin with value `60`. */
.u-s-m-t-60 {
  margin-top: 3.75rem; }

.u-s-m-r-60 {
  margin-right: 3.75rem; }

.u-s-m-b-60 {
  margin-bottom: 3.75rem; }

.u-s-m-l-60 {
  margin-left: 3.75rem; }

.u-s-m-x-60 {
  margin-left: 3.75rem;
  margin-right: 3.75rem; }

.u-s-m-y-60 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem; }

.u-s-m-xy-60 {
  margin: 3.75rem; }

/* Padding with value `60`. */
.u-s-p-t-60 {
  padding-top: 3.75rem; }

.u-s-p-r-60 {
  padding-right: 3.75rem; }

.u-s-p-b-60 {
  padding-bottom: 3.75rem; }

.u-s-p-l-60 {
  padding-left: 3.75rem; }

.u-s-p-x-60 {
  padding-left: 3.75rem;
  padding-right: 3.75rem; }

.u-s-p-y-60 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem; }


  .u-s-p-y-30 {
    padding-top: 3.75rem;
    padding-bottom: 1.75rem; }

.u-s-p-xy-60 {
  padding: 3.75rem; }

/* Margin with value `61`. */
.u-s-m-t-61 {
  margin-top: 3.8125rem; }

.u-s-m-r-61 {
  margin-right: 3.8125rem; }

.u-s-m-b-61 {
  margin-bottom: 3.8125rem; }

.u-s-m-l-61 {
  margin-left: 3.8125rem; }

.u-s-m-x-61 {
  margin-left: 3.8125rem;
  margin-right: 3.8125rem; }

.u-s-m-y-61 {
  margin-top: 3.8125rem;
  margin-bottom: 3.8125rem; }

.u-s-m-xy-61 {
  margin: 3.8125rem; }

/* Padding with value `61`. */
.u-s-p-t-61 {
  padding-top: 3.8125rem; }

.u-s-p-r-61 {
  padding-right: 3.8125rem; }

.u-s-p-b-61 {
  padding-bottom: 3.8125rem; }

.u-s-p-l-61 {
  padding-left: 3.8125rem; }

.u-s-p-x-61 {
  padding-left: 3.8125rem;
  padding-right: 3.8125rem; }

.u-s-p-y-61 {
  padding-top: 3.8125rem;
  padding-bottom: 3.8125rem; }

.u-s-p-xy-61 {
  padding: 3.8125rem; }

/* Margin with value `62`. */
.u-s-m-t-62 {
  margin-top: 3.875rem; }

.u-s-m-r-62 {
  margin-right: 3.875rem; }

.u-s-m-b-62 {
  margin-bottom: 3.875rem; }

.u-s-m-l-62 {
  margin-left: 3.875rem; }

.u-s-m-x-62 {
  margin-left: 3.875rem;
  margin-right: 3.875rem; }

.u-s-m-y-62 {
  margin-top: 3.875rem;
  margin-bottom: 3.875rem; }

.u-s-m-xy-62 {
  margin: 3.875rem; }

/* Padding with value `62`. */
.u-s-p-t-62 {
  padding-top: 3.875rem; }

.u-s-p-r-62 {
  padding-right: 3.875rem; }

.u-s-p-b-62 {
  padding-bottom: 3.875rem; }

.u-s-p-l-62 {
  padding-left: 3.875rem; }

.u-s-p-x-62 {
  padding-left: 3.875rem;
  padding-right: 3.875rem; }

.u-s-p-y-62 {
  padding-top: 3.875rem;
  padding-bottom: 3.875rem; }

.u-s-p-xy-62 {
  padding: 3.875rem; }

/* Margin with value `63`. */
.u-s-m-t-63 {
  margin-top: 3.9375rem; }

.u-s-m-r-63 {
  margin-right: 3.9375rem; }

.u-s-m-b-63 {
  margin-bottom: 3.9375rem; }

.u-s-m-l-63 {
  margin-left: 3.9375rem; }

.u-s-m-x-63 {
  margin-left: 3.9375rem;
  margin-right: 3.9375rem; }

.u-s-m-y-63 {
  margin-top: 3.9375rem;
  margin-bottom: 3.9375rem; }

.u-s-m-xy-63 {
  margin: 3.9375rem; }

/* Padding with value `63`. */
.u-s-p-t-63 {
  padding-top: 3.9375rem; }

.u-s-p-r-63 {
  padding-right: 3.9375rem; }

.u-s-p-b-63 {
  padding-bottom: 3.9375rem; }

.u-s-p-l-63 {
  padding-left: 3.9375rem; }

.u-s-p-x-63 {
  padding-left: 3.9375rem;
  padding-right: 3.9375rem; }

.u-s-p-y-63 {
  padding-top: 3.9375rem;
  padding-bottom: 3.9375rem; }

.u-s-p-xy-63 {
  padding: 3.9375rem; }

/* Margin with value `64`. */
.u-s-m-t-64 {
  margin-top: 4rem; }

.u-s-m-r-64 {
  margin-right: 4rem; }

.u-s-m-b-64 {
  margin-bottom: 4rem; }

.u-s-m-l-64 {
  margin-left: 4rem; }

.u-s-m-x-64 {
  margin-left: 4rem;
  margin-right: 4rem; }

.u-s-m-y-64 {
  margin-top: 4rem;
  margin-bottom: 4rem; }

.u-s-m-xy-64 {
  margin: 4rem; }

/* Padding with value `64`. */
.u-s-p-t-64 {
  padding-top: 4rem; }

.u-s-p-r-64 {
  padding-right: 4rem; }

.u-s-p-b-64 {
  padding-bottom: 4rem; }

.u-s-p-l-64 {
  padding-left: 4rem; }

.u-s-p-x-64 {
  padding-left: 4rem;
  padding-right: 4rem; }

.u-s-p-y-64 {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.u-s-p-xy-64 {
  padding: 4rem; }

/* Margin with value `65`. */
.u-s-m-t-65 {
  margin-top: 4.0625rem; }

.u-s-m-r-65 {
  margin-right: 4.0625rem; }

.u-s-m-b-65 {
  margin-bottom: 4.0625rem; }

.u-s-m-l-65 {
  margin-left: 4.0625rem; }

.u-s-m-x-65 {
  margin-left: 4.0625rem;
  margin-right: 4.0625rem; }

.u-s-m-y-65 {
  margin-top: 4.0625rem;
  margin-bottom: 4.0625rem; }

.u-s-m-xy-65 {
  margin: 4.0625rem; }

/* Padding with value `65`. */
.u-s-p-t-65 {
  padding-top: 4.0625rem; }

.u-s-p-r-65 {
  padding-right: 4.0625rem; }

.u-s-p-b-65 {
  padding-bottom: 4.0625rem; }

.u-s-p-l-65 {
  padding-left: 4.0625rem; }

.u-s-p-x-65 {
  padding-left: 4.0625rem;
  padding-right: 4.0625rem; }

.u-s-p-y-65 {
  padding-top: 4.0625rem;
  padding-bottom: 4.0625rem; }

.u-s-p-xy-65 {
  padding: 4.0625rem; }

/* Margin with value `66`. */
.u-s-m-t-66 {
  margin-top: 4.125rem; }

.u-s-m-r-66 {
  margin-right: 4.125rem; }

.u-s-m-b-66 {
  margin-bottom: 4.125rem; }

.u-s-m-l-66 {
  margin-left: 4.125rem; }

.u-s-m-x-66 {
  margin-left: 4.125rem;
  margin-right: 4.125rem; }

.u-s-m-y-66 {
  margin-top: 4.125rem;
  margin-bottom: 4.125rem; }

.u-s-m-xy-66 {
  margin: 4.125rem; }

/* Padding with value `66`. */
.u-s-p-t-66 {
  padding-top: 4.125rem; }

.u-s-p-r-66 {
  padding-right: 4.125rem; }

.u-s-p-b-66 {
  padding-bottom: 4.125rem; }

.u-s-p-l-66 {
  padding-left: 4.125rem; }

.u-s-p-x-66 {
  padding-left: 4.125rem;
  padding-right: 4.125rem; }

.u-s-p-y-66 {
  padding-top: 4.125rem;
  padding-bottom: 4.125rem; }

.u-s-p-xy-66 {
  padding: 4.125rem; }

/* Margin with value `67`. */
.u-s-m-t-67 {
  margin-top: 4.1875rem; }

.u-s-m-r-67 {
  margin-right: 4.1875rem; }

.u-s-m-b-67 {
  margin-bottom: 4.1875rem; }

.u-s-m-l-67 {
  margin-left: 4.1875rem; }

.u-s-m-x-67 {
  margin-left: 4.1875rem;
  margin-right: 4.1875rem; }

.u-s-m-y-67 {
  margin-top: 4.1875rem;
  margin-bottom: 4.1875rem; }

.u-s-m-xy-67 {
  margin: 4.1875rem; }

/* Padding with value `67`. */
.u-s-p-t-67 {
  padding-top: 4.1875rem; }

.u-s-p-r-67 {
  padding-right: 4.1875rem; }

.u-s-p-b-67 {
  padding-bottom: 4.1875rem; }

.u-s-p-l-67 {
  padding-left: 4.1875rem; }

.u-s-p-x-67 {
  padding-left: 4.1875rem;
  padding-right: 4.1875rem; }

.u-s-p-y-67 {
  padding-top: 4.1875rem;
  padding-bottom: 4.1875rem; }

.u-s-p-xy-67 {
  padding: 4.1875rem; }

/* Margin with value `68`. */
.u-s-m-t-68 {
  margin-top: 4.25rem; }

.u-s-m-r-68 {
  margin-right: 4.25rem; }

.u-s-m-b-68 {
  margin-bottom: 4.25rem; }

.u-s-m-l-68 {
  margin-left: 4.25rem; }

.u-s-m-x-68 {
  margin-left: 4.25rem;
  margin-right: 4.25rem; }

.u-s-m-y-68 {
  margin-top: 4.25rem;
  margin-bottom: 4.25rem; }

.u-s-m-xy-68 {
  margin: 4.25rem; }

/* Padding with value `68`. */
.u-s-p-t-68 {
  padding-top: 4.25rem; }

.u-s-p-r-68 {
  padding-right: 4.25rem; }

.u-s-p-b-68 {
  padding-bottom: 4.25rem; }

.u-s-p-l-68 {
  padding-left: 4.25rem; }

.u-s-p-x-68 {
  padding-left: 4.25rem;
  padding-right: 4.25rem; }

.u-s-p-y-68 {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem; }

.u-s-p-xy-68 {
  padding: 4.25rem; }

/* Margin with value `69`. */
.u-s-m-t-69 {
  margin-top: 4.3125rem; }

.u-s-m-r-69 {
  margin-right: 4.3125rem; }

.u-s-m-b-69 {
  margin-bottom: 4.3125rem; }

.u-s-m-l-69 {
  margin-left: 4.3125rem; }

.u-s-m-x-69 {
  margin-left: 4.3125rem;
  margin-right: 4.3125rem; }

.u-s-m-y-69 {
  margin-top: 4.3125rem;
  margin-bottom: 4.3125rem; }

.u-s-m-xy-69 {
  margin: 4.3125rem; }

/* Padding with value `69`. */
.u-s-p-t-69 {
  padding-top: 4.3125rem; }

.u-s-p-r-69 {
  padding-right: 4.3125rem; }

.u-s-p-b-69 {
  padding-bottom: 4.3125rem; }

.u-s-p-l-69 {
  padding-left: 4.3125rem; }

.u-s-p-x-69 {
  padding-left: 4.3125rem;
  padding-right: 4.3125rem; }

.u-s-p-y-69 {
  padding-top: 4.3125rem;
  padding-bottom: 4.3125rem; }

.u-s-p-xy-69 {
  padding: 4.3125rem; }

/* Margin with value `70`. */
.u-s-m-t-70 {
  margin-top: 4.375rem; }

.u-s-m-r-70 {
  margin-right: 4.375rem; }

.u-s-m-b-70 {
  margin-bottom: 4.375rem; }

.u-s-m-l-70 {
  margin-left: 4.375rem; }

.u-s-m-x-70 {
  margin-left: 4.375rem;
  margin-right: 4.375rem; }

.u-s-m-y-70 {
  margin-top: 4.375rem;
  margin-bottom: 4.375rem; }

.u-s-m-xy-70 {
  margin: 4.375rem; }

/* Padding with value `70`. */
.u-s-p-t-70 {
  padding-top: 4.375rem; }

.u-s-p-r-70 {
  padding-right: 4.375rem; }

.u-s-p-b-70 {
  padding-bottom: 4.375rem; }

.u-s-p-l-70 {
  padding-left: 4.375rem; }

.u-s-p-x-70 {
  padding-left: 4.375rem;
  padding-right: 4.375rem; }

.u-s-p-y-70 {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem; }

.u-s-p-xy-70 {
  padding: 4.375rem; }

/* Margin with value `71`. */
.u-s-m-t-71 {
  margin-top: 4.4375rem; }

.u-s-m-r-71 {
  margin-right: 4.4375rem; }

.u-s-m-b-71 {
  margin-bottom: 4.4375rem; }

.u-s-m-l-71 {
  margin-left: 4.4375rem; }

.u-s-m-x-71 {
  margin-left: 4.4375rem;
  margin-right: 4.4375rem; }

.u-s-m-y-71 {
  margin-top: 4.4375rem;
  margin-bottom: 4.4375rem; }

.u-s-m-xy-71 {
  margin: 4.4375rem; }

/* Padding with value `71`. */
.u-s-p-t-71 {
  padding-top: 4.4375rem; }

.u-s-p-r-71 {
  padding-right: 4.4375rem; }

.u-s-p-b-71 {
  padding-bottom: 4.4375rem; }

.u-s-p-l-71 {
  padding-left: 4.4375rem; }

.u-s-p-x-71 {
  padding-left: 4.4375rem;
  padding-right: 4.4375rem; }

.u-s-p-y-71 {
  padding-top: 4.4375rem;
  padding-bottom: 4.4375rem; }

.u-s-p-xy-71 {
  padding: 4.4375rem; }

/* Margin with value `72`. */
.u-s-m-t-72 {
  margin-top: 4.5rem; }

.u-s-m-r-72 {
  margin-right: 4.5rem; }

.u-s-m-b-72 {
  margin-bottom: 4.5rem; }

.u-s-m-l-72 {
  margin-left: 4.5rem; }

.u-s-m-x-72 {
  margin-left: 4.5rem;
  margin-right: 4.5rem; }

.u-s-m-y-72 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem; }

.u-s-m-xy-72 {
  margin: 4.5rem; }

/* Padding with value `72`. */
.u-s-p-t-72 {
  padding-top: 4.5rem; }

.u-s-p-r-72 {
  padding-right: 4.5rem; }

.u-s-p-b-72 {
  padding-bottom: 4.5rem; }

.u-s-p-l-72 {
  padding-left: 4.5rem; }

.u-s-p-x-72 {
  padding-left: 4.5rem;
  padding-right: 4.5rem; }

.u-s-p-y-72 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem; }

.u-s-p-xy-72 {
  padding: 4.5rem; }

/* Margin with value `73`. */
.u-s-m-t-73 {
  margin-top: 4.5625rem; }

.u-s-m-r-73 {
  margin-right: 4.5625rem; }

.u-s-m-b-73 {
  margin-bottom: 4.5625rem; }

.u-s-m-l-73 {
  margin-left: 4.5625rem; }

.u-s-m-x-73 {
  margin-left: 4.5625rem;
  margin-right: 4.5625rem; }

.u-s-m-y-73 {
  margin-top: 4.5625rem;
  margin-bottom: 4.5625rem; }

.u-s-m-xy-73 {
  margin: 4.5625rem; }

/* Padding with value `73`. */
.u-s-p-t-73 {
  padding-top: 4.5625rem; }

.u-s-p-r-73 {
  padding-right: 4.5625rem; }

.u-s-p-b-73 {
  padding-bottom: 4.5625rem; }

.u-s-p-l-73 {
  padding-left: 4.5625rem; }

.u-s-p-x-73 {
  padding-left: 4.5625rem;
  padding-right: 4.5625rem; }

.u-s-p-y-73 {
  padding-top: 4.5625rem;
  padding-bottom: 4.5625rem; }

.u-s-p-xy-73 {
  padding: 4.5625rem; }

/* Margin with value `74`. */
.u-s-m-t-74 {
  margin-top: 4.625rem; }

.u-s-m-r-74 {
  margin-right: 4.625rem; }

.u-s-m-b-74 {
  margin-bottom: 4.625rem; }

.u-s-m-l-74 {
  margin-left: 4.625rem; }

.u-s-m-x-74 {
  margin-left: 4.625rem;
  margin-right: 4.625rem; }

.u-s-m-y-74 {
  margin-top: 4.625rem;
  margin-bottom: 4.625rem; }

.u-s-m-xy-74 {
  margin: 4.625rem; }

/* Padding with value `74`. */
.u-s-p-t-74 {
  padding-top: 4.625rem; }

.u-s-p-r-74 {
  padding-right: 4.625rem; }

.u-s-p-b-74 {
  padding-bottom: 4.625rem; }

.u-s-p-l-74 {
  padding-left: 4.625rem; }

.u-s-p-x-74 {
  padding-left: 4.625rem;
  padding-right: 4.625rem; }

.u-s-p-y-74 {
  padding-top: 4.625rem;
  padding-bottom: 4.625rem; }

.u-s-p-xy-74 {
  padding: 4.625rem; }

/* Margin with value `75`. */
.u-s-m-t-75 {
  margin-top: 4.6875rem; }

.u-s-m-r-75 {
  margin-right: 4.6875rem; }

.u-s-m-b-75 {
  margin-bottom: 4.6875rem; }

.u-s-m-l-75 {
  margin-left: 4.6875rem; }

.u-s-m-x-75 {
  margin-left: 4.6875rem;
  margin-right: 4.6875rem; }

.u-s-m-y-75 {
  margin-top: 4.6875rem;
  margin-bottom: 4.6875rem; }

.u-s-m-xy-75 {
  margin: 4.6875rem; }

/* Padding with value `75`. */
.u-s-p-t-75 {
  padding-top: 4.6875rem; }

.u-s-p-r-75 {
  padding-right: 4.6875rem; }

.u-s-p-b-75 {
  padding-bottom: 4.6875rem; }

.u-s-p-l-75 {
  padding-left: 4.6875rem; }

.u-s-p-x-75 {
  padding-left: 4.6875rem;
  padding-right: 4.6875rem; }

.u-s-p-y-75 {
  padding-top: 4.6875rem;
  padding-bottom: 4.6875rem; }

.u-s-p-xy-75 {
  padding: 4.6875rem; }

/* Margin with value `76`. */
.u-s-m-t-76 {
  margin-top: 4.75rem; }

.u-s-m-r-76 {
  margin-right: 4.75rem; }

.u-s-m-b-76 {
  margin-bottom: 4.75rem; }

.u-s-m-l-76 {
  margin-left: 4.75rem; }

.u-s-m-x-76 {
  margin-left: 4.75rem;
  margin-right: 4.75rem; }

.u-s-m-y-76 {
  margin-top: 4.75rem;
  margin-bottom: 4.75rem; }

.u-s-m-xy-76 {
  margin: 4.75rem; }

/* Padding with value `76`. */
.u-s-p-t-76 {
  padding-top: 4.75rem; }

.u-s-p-r-76 {
  padding-right: 4.75rem; }

.u-s-p-b-76 {
  padding-bottom: 4.75rem; }

.u-s-p-l-76 {
  padding-left: 4.75rem; }

.u-s-p-x-76 {
  padding-left: 4.75rem;
  padding-right: 4.75rem; }

.u-s-p-y-76 {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem; }

.u-s-p-xy-76 {
  padding: 4.75rem; }

/* Margin with value `77`. */
.u-s-m-t-77 {
  margin-top: 4.8125rem; }

.u-s-m-r-77 {
  margin-right: 4.8125rem; }

.u-s-m-b-77 {
  margin-bottom: 4.8125rem; }

.u-s-m-l-77 {
  margin-left: 4.8125rem; }

.u-s-m-x-77 {
  margin-left: 4.8125rem;
  margin-right: 4.8125rem; }

.u-s-m-y-77 {
  margin-top: 4.8125rem;
  margin-bottom: 4.8125rem; }

.u-s-m-xy-77 {
  margin: 4.8125rem; }

/* Padding with value `77`. */
.u-s-p-t-77 {
  padding-top: 4.8125rem; }

.u-s-p-r-77 {
  padding-right: 4.8125rem; }

.u-s-p-b-77 {
  padding-bottom: 4.8125rem; }

.u-s-p-l-77 {
  padding-left: 4.8125rem; }

.u-s-p-x-77 {
  padding-left: 4.8125rem;
  padding-right: 4.8125rem; }

.u-s-p-y-77 {
  padding-top: 4.8125rem;
  padding-bottom: 4.8125rem; }

.u-s-p-xy-77 {
  padding: 4.8125rem; }

/* Margin with value `78`. */
.u-s-m-t-78 {
  margin-top: 4.875rem; }

.u-s-m-r-78 {
  margin-right: 4.875rem; }

.u-s-m-b-78 {
  margin-bottom: 4.875rem; }

.u-s-m-l-78 {
  margin-left: 4.875rem; }

.u-s-m-x-78 {
  margin-left: 4.875rem;
  margin-right: 4.875rem; }

.u-s-m-y-78 {
  margin-top: 4.875rem;
  margin-bottom: 4.875rem; }

.u-s-m-xy-78 {
  margin: 4.875rem; }

/* Padding with value `78`. */
.u-s-p-t-78 {
  padding-top: 4.875rem; }

.u-s-p-r-78 {
  padding-right: 4.875rem; }

.u-s-p-b-78 {
  padding-bottom: 4.875rem; }

.u-s-p-l-78 {
  padding-left: 4.875rem; }

.u-s-p-x-78 {
  padding-left: 4.875rem;
  padding-right: 4.875rem; }

.u-s-p-y-78 {
  padding-top: 4.875rem;
  padding-bottom: 4.875rem; }

.u-s-p-xy-78 {
  padding: 4.875rem; }

/* Margin with value `79`. */
.u-s-m-t-79 {
  margin-top: 4.9375rem; }

.u-s-m-r-79 {
  margin-right: 4.9375rem; }

.u-s-m-b-79 {
  margin-bottom: 4.9375rem; }

.u-s-m-l-79 {
  margin-left: 4.9375rem; }

.u-s-m-x-79 {
  margin-left: 4.9375rem;
  margin-right: 4.9375rem; }

.u-s-m-y-79 {
  margin-top: 4.9375rem;
  margin-bottom: 4.9375rem; }

.u-s-m-xy-79 {
  margin: 4.9375rem; }

/* Padding with value `79`. */
.u-s-p-t-79 {
  padding-top: 4.9375rem; }

.u-s-p-r-79 {
  padding-right: 4.9375rem; }

.u-s-p-b-79 {
  padding-bottom: 4.9375rem; }

.u-s-p-l-79 {
  padding-left: 4.9375rem; }

.u-s-p-x-79 {
  padding-left: 4.9375rem;
  padding-right: 4.9375rem; }

.u-s-p-y-79 {
  padding-top: 4.9375rem;
  padding-bottom: 4.9375rem; }

.u-s-p-xy-79 {
  padding: 4.9375rem; }

/* Margin with value `80`. */
.u-s-m-t-80 {
  margin-top: 5rem; }

.u-s-m-r-80 {
  margin-right: 5rem; }

.u-s-m-b-80 {
  margin-bottom: 5rem; }

.u-s-m-l-80 {
  margin-left: 5rem; }

.u-s-m-x-80 {
  margin-left: 5rem;
  margin-right: 5rem; }

.u-s-m-y-80 {
  margin-top: 5rem;
  margin-bottom: 5rem; }

.u-s-m-xy-80 {
  margin: 5rem; }

/* Padding with value `80`. */
.u-s-p-t-80 {
  padding-top: 5rem; }

.u-s-p-r-80 {
  padding-right: 5rem; }

.u-s-p-b-80 {
  padding-bottom: 5rem; }

.u-s-p-l-80 {
  padding-left: 5rem; }

.u-s-p-x-80 {
  padding-left: 5rem;
  padding-right: 5rem; }

.u-s-p-y-80 {
  padding-top: 5rem;
  padding-bottom: 5rem; }

.u-s-p-xy-80 {
  padding: 5rem; }

/* Margin with value `81`. */
.u-s-m-t-81 {
  margin-top: 5.0625rem; }

.u-s-m-r-81 {
  margin-right: 5.0625rem; }

.u-s-m-b-81 {
  margin-bottom: 5.0625rem; }

.u-s-m-l-81 {
  margin-left: 5.0625rem; }

.u-s-m-x-81 {
  margin-left: 5.0625rem;
  margin-right: 5.0625rem; }

.u-s-m-y-81 {
  margin-top: 5.0625rem;
  margin-bottom: 5.0625rem; }

.u-s-m-xy-81 {
  margin: 5.0625rem; }

/* Padding with value `81`. */
.u-s-p-t-81 {
  padding-top: 5.0625rem; }

.u-s-p-r-81 {
  padding-right: 5.0625rem; }

.u-s-p-b-81 {
  padding-bottom: 5.0625rem; }

.u-s-p-l-81 {
  padding-left: 5.0625rem; }

.u-s-p-x-81 {
  padding-left: 5.0625rem;
  padding-right: 5.0625rem; }

.u-s-p-y-81 {
  padding-top: 5.0625rem;
  padding-bottom: 5.0625rem; }

.u-s-p-xy-81 {
  padding: 5.0625rem; }

/* Margin with value `82`. */
.u-s-m-t-82 {
  margin-top: 5.125rem; }

.u-s-m-r-82 {
  margin-right: 5.125rem; }

.u-s-m-b-82 {
  margin-bottom: 5.125rem; }

.u-s-m-l-82 {
  margin-left: 5.125rem; }

.u-s-m-x-82 {
  margin-left: 5.125rem;
  margin-right: 5.125rem; }

.u-s-m-y-82 {
  margin-top: 5.125rem;
  margin-bottom: 5.125rem; }

.u-s-m-xy-82 {
  margin: 5.125rem; }

/* Padding with value `82`. */
.u-s-p-t-82 {
  padding-top: 5.125rem; }

.u-s-p-r-82 {
  padding-right: 5.125rem; }

.u-s-p-b-82 {
  padding-bottom: 5.125rem; }

.u-s-p-l-82 {
  padding-left: 5.125rem; }

.u-s-p-x-82 {
  padding-left: 5.125rem;
  padding-right: 5.125rem; }

.u-s-p-y-82 {
  padding-top: 5.125rem;
  padding-bottom: 5.125rem; }

.u-s-p-xy-82 {
  padding: 5.125rem; }

/* Margin with value `83`. */
.u-s-m-t-83 {
  margin-top: 5.1875rem; }

.u-s-m-r-83 {
  margin-right: 5.1875rem; }

.u-s-m-b-83 {
  margin-bottom: 5.1875rem; }

.u-s-m-l-83 {
  margin-left: 5.1875rem; }

.u-s-m-x-83 {
  margin-left: 5.1875rem;
  margin-right: 5.1875rem; }

.u-s-m-y-83 {
  margin-top: 5.1875rem;
  margin-bottom: 5.1875rem; }

.u-s-m-xy-83 {
  margin: 5.1875rem; }

/* Padding with value `83`. */
.u-s-p-t-83 {
  padding-top: 5.1875rem; }

.u-s-p-r-83 {
  padding-right: 5.1875rem; }

.u-s-p-b-83 {
  padding-bottom: 5.1875rem; }

.u-s-p-l-83 {
  padding-left: 5.1875rem; }

.u-s-p-x-83 {
  padding-left: 5.1875rem;
  padding-right: 5.1875rem; }

.u-s-p-y-83 {
  padding-top: 5.1875rem;
  padding-bottom: 5.1875rem; }

.u-s-p-xy-83 {
  padding: 5.1875rem; }

/* Margin with value `84`. */
.u-s-m-t-84 {
  margin-top: 5.25rem; }

.u-s-m-r-84 {
  margin-right: 5.25rem; }

.u-s-m-b-84 {
  margin-bottom: 5.25rem; }

.u-s-m-l-84 {
  margin-left: 5.25rem; }

.u-s-m-x-84 {
  margin-left: 5.25rem;
  margin-right: 5.25rem; }

.u-s-m-y-84 {
  margin-top: 5.25rem;
  margin-bottom: 5.25rem; }

.u-s-m-xy-84 {
  margin: 5.25rem; }

/* Padding with value `84`. */
.u-s-p-t-84 {
  padding-top: 5.25rem; }

.u-s-p-r-84 {
  padding-right: 5.25rem; }

.u-s-p-b-84 {
  padding-bottom: 5.25rem; }

.u-s-p-l-84 {
  padding-left: 5.25rem; }

.u-s-p-x-84 {
  padding-left: 5.25rem;
  padding-right: 5.25rem; }

.u-s-p-y-84 {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem; }

.u-s-p-xy-84 {
  padding: 5.25rem; }

/* Margin with value `85`. */
.u-s-m-t-85 {
  margin-top: 5.3125rem; }

.u-s-m-r-85 {
  margin-right: 5.3125rem; }

.u-s-m-b-85 {
  margin-bottom: 5.3125rem; }

.u-s-m-l-85 {
  margin-left: 5.3125rem; }

.u-s-m-x-85 {
  margin-left: 5.3125rem;
  margin-right: 5.3125rem; }

.u-s-m-y-85 {
  margin-top: 5.3125rem;
  margin-bottom: 5.3125rem; }

.u-s-m-xy-85 {
  margin: 5.3125rem; }

/* Padding with value `85`. */
.u-s-p-t-85 {
  padding-top: 5.3125rem; }

.u-s-p-r-85 {
  padding-right: 5.3125rem; }

.u-s-p-b-85 {
  padding-bottom: 5.3125rem; }

.u-s-p-l-85 {
  padding-left: 5.3125rem; }

.u-s-p-x-85 {
  padding-left: 5.3125rem;
  padding-right: 5.3125rem; }

.u-s-p-y-85 {
  padding-top: 5.3125rem;
  padding-bottom: 5.3125rem; }

.u-s-p-xy-85 {
  padding: 5.3125rem; }

/* Margin with value `86`. */
.u-s-m-t-86 {
  margin-top: 5.375rem; }

.u-s-m-r-86 {
  margin-right: 5.375rem; }

.u-s-m-b-86 {
  margin-bottom: 5.375rem; }

.u-s-m-l-86 {
  margin-left: 5.375rem; }

.u-s-m-x-86 {
  margin-left: 5.375rem;
  margin-right: 5.375rem; }

.u-s-m-y-86 {
  margin-top: 5.375rem;
  margin-bottom: 5.375rem; }

.u-s-m-xy-86 {
  margin: 5.375rem; }

/* Padding with value `86`. */
.u-s-p-t-86 {
  padding-top: 5.375rem; }

.u-s-p-r-86 {
  padding-right: 5.375rem; }

.u-s-p-b-86 {
  padding-bottom: 5.375rem; }

.u-s-p-l-86 {
  padding-left: 5.375rem; }

.u-s-p-x-86 {
  padding-left: 5.375rem;
  padding-right: 5.375rem; }

.u-s-p-y-86 {
  padding-top: 5.375rem;
  padding-bottom: 5.375rem; }

.u-s-p-xy-86 {
  padding: 5.375rem; }

/* Margin with value `87`. */
.u-s-m-t-87 {
  margin-top: 5.4375rem; }

.u-s-m-r-87 {
  margin-right: 5.4375rem; }

.u-s-m-b-87 {
  margin-bottom: 5.4375rem; }

.u-s-m-l-87 {
  margin-left: 5.4375rem; }

.u-s-m-x-87 {
  margin-left: 5.4375rem;
  margin-right: 5.4375rem; }

.u-s-m-y-87 {
  margin-top: 5.4375rem;
  margin-bottom: 5.4375rem; }

.u-s-m-xy-87 {
  margin: 5.4375rem; }

/* Padding with value `87`. */
.u-s-p-t-87 {
  padding-top: 5.4375rem; }

.u-s-p-r-87 {
  padding-right: 5.4375rem; }

.u-s-p-b-87 {
  padding-bottom: 5.4375rem; }

.u-s-p-l-87 {
  padding-left: 5.4375rem; }

.u-s-p-x-87 {
  padding-left: 5.4375rem;
  padding-right: 5.4375rem; }

.u-s-p-y-87 {
  padding-top: 5.4375rem;
  padding-bottom: 5.4375rem; }

.u-s-p-xy-87 {
  padding: 5.4375rem; }

/* Margin with value `88`. */
.u-s-m-t-88 {
  margin-top: 5.5rem; }

.u-s-m-r-88 {
  margin-right: 5.5rem; }

.u-s-m-b-88 {
  margin-bottom: 5.5rem; }

.u-s-m-l-88 {
  margin-left: 5.5rem; }

.u-s-m-x-88 {
  margin-left: 5.5rem;
  margin-right: 5.5rem; }

.u-s-m-y-88 {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem; }

.u-s-m-xy-88 {
  margin: 5.5rem; }

/* Padding with value `88`. */
.u-s-p-t-88 {
  padding-top: 5.5rem; }

.u-s-p-r-88 {
  padding-right: 5.5rem; }

.u-s-p-b-88 {
  padding-bottom: 5.5rem; }

.u-s-p-l-88 {
  padding-left: 5.5rem; }

.u-s-p-x-88 {
  padding-left: 5.5rem;
  padding-right: 5.5rem; }

.u-s-p-y-88 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem; }

.u-s-p-xy-88 {
  padding: 5.5rem; }

/* Margin with value `89`. */
.u-s-m-t-89 {
  margin-top: 5.5625rem; }

.u-s-m-r-89 {
  margin-right: 5.5625rem; }

.u-s-m-b-89 {
  margin-bottom: 5.5625rem; }

.u-s-m-l-89 {
  margin-left: 5.5625rem; }

.u-s-m-x-89 {
  margin-left: 5.5625rem;
  margin-right: 5.5625rem; }

.u-s-m-y-89 {
  margin-top: 5.5625rem;
  margin-bottom: 5.5625rem; }

.u-s-m-xy-89 {
  margin: 5.5625rem; }

/* Padding with value `89`. */
.u-s-p-t-89 {
  padding-top: 5.5625rem; }

.u-s-p-r-89 {
  padding-right: 5.5625rem; }

.u-s-p-b-89 {
  padding-bottom: 5.5625rem; }

.u-s-p-l-89 {
  padding-left: 5.5625rem; }

.u-s-p-x-89 {
  padding-left: 5.5625rem;
  padding-right: 5.5625rem; }

.u-s-p-y-89 {
  padding-top: 5.5625rem;
  padding-bottom: 5.5625rem; }

.u-s-p-xy-89 {
  padding: 5.5625rem; }

/* Margin with value `90`. */
.u-s-m-t-90 {
  margin-top: 5.625rem; }

.u-s-m-r-90 {
  margin-right: 5.625rem; }

.u-s-m-b-90 {
  margin-bottom: 5.625rem; }

.u-s-m-l-90 {
  margin-left: 5.625rem; }

.u-s-m-x-90 {
  margin-left: 5.625rem;
  margin-right: 5.625rem; }

.u-s-m-y-90 {
  margin-top: 5.625rem;
  margin-bottom: 5.625rem; }

.u-s-m-xy-90 {
  margin: 5.625rem; }

/* Padding with value `90`. */
.u-s-p-t-90 {
  padding-top: 20px; }

.u-s-p-r-90 {
  padding-right: 5.625rem; }

.u-s-p-b-90 {
  padding-bottom: 5.625rem; }

.u-s-p-l-90 {
  padding-left: 5.625rem; }

.u-s-p-x-90 {
  padding-left: 5.625rem;
  padding-right: 5.625rem; }

.u-s-p-y-90 {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem; }

.u-s-p-xy-90 {
  padding: 5.625rem; }

/* Margin with value `91`. */
.u-s-m-t-91 {
  margin-top: 5.6875rem; }

.u-s-m-r-91 {
  margin-right: 5.6875rem; }

.u-s-m-b-91 {
  margin-bottom: 5.6875rem; }

.u-s-m-l-91 {
  margin-left: 5.6875rem; }

.u-s-m-x-91 {
  margin-left: 5.6875rem;
  margin-right: 5.6875rem; }

.u-s-m-y-91 {
  margin-top: 5.6875rem;
  margin-bottom: 5.6875rem; }

.u-s-m-xy-91 {
  margin: 5.6875rem; }

/* Padding with value `91`. */
.u-s-p-t-91 {
  padding-top: 5.6875rem; }

.u-s-p-r-91 {
  padding-right: 5.6875rem; }

.u-s-p-b-91 {
  padding-bottom: 5.6875rem; }

.u-s-p-l-91 {
  padding-left: 5.6875rem; }

.u-s-p-x-91 {
  padding-left: 5.6875rem;
  padding-right: 5.6875rem; }

.u-s-p-y-91 {
  padding-top: 5.6875rem;
  padding-bottom: 5.6875rem; }

.u-s-p-xy-91 {
  padding: 5.6875rem; }

/* Margin with value `92`. */
.u-s-m-t-92 {
  margin-top: 5.75rem; }

.u-s-m-r-92 {
  margin-right: 5.75rem; }

.u-s-m-b-92 {
  margin-bottom: 5.75rem; }

.u-s-m-l-92 {
  margin-left: 5.75rem; }

.u-s-m-x-92 {
  margin-left: 5.75rem;
  margin-right: 5.75rem; }

.u-s-m-y-92 {
  margin-top: 5.75rem;
  margin-bottom: 5.75rem; }

.u-s-m-xy-92 {
  margin: 5.75rem; }

/* Padding with value `92`. */
.u-s-p-t-92 {
  padding-top: 5.75rem; }

.u-s-p-r-92 {
  padding-right: 5.75rem; }

.u-s-p-b-92 {
  padding-bottom: 5.75rem; }

.u-s-p-l-92 {
  padding-left: 5.75rem; }

.u-s-p-x-92 {
  padding-left: 5.75rem;
  padding-right: 5.75rem; }

.u-s-p-y-92 {
  padding-top: 5.75rem;
  padding-bottom: 5.75rem; }

.u-s-p-xy-92 {
  padding: 5.75rem; }

/* Margin with value `93`. */
.u-s-m-t-93 {
  margin-top: 5.8125rem; }

.u-s-m-r-93 {
  margin-right: 5.8125rem; }

.u-s-m-b-93 {
  margin-bottom: 5.8125rem; }

.u-s-m-l-93 {
  margin-left: 5.8125rem; }

.u-s-m-x-93 {
  margin-left: 5.8125rem;
  margin-right: 5.8125rem; }

.u-s-m-y-93 {
  margin-top: 5.8125rem;
  margin-bottom: 5.8125rem; }

.u-s-m-xy-93 {
  margin: 5.8125rem; }

/* Padding with value `93`. */
.u-s-p-t-93 {
  padding-top: 5.8125rem; }

.u-s-p-r-93 {
  padding-right: 5.8125rem; }

.u-s-p-b-93 {
  padding-bottom: 5.8125rem; }

.u-s-p-l-93 {
  padding-left: 5.8125rem; }

.u-s-p-x-93 {
  padding-left: 5.8125rem;
  padding-right: 5.8125rem; }

.u-s-p-y-93 {
  padding-top: 5.8125rem;
  padding-bottom: 5.8125rem; }

.u-s-p-xy-93 {
  padding: 5.8125rem; }

/* Margin with value `94`. */
.u-s-m-t-94 {
  margin-top: 5.875rem; }

.u-s-m-r-94 {
  margin-right: 5.875rem; }

.u-s-m-b-94 {
  margin-bottom: 5.875rem; }

.u-s-m-l-94 {
  margin-left: 5.875rem; }

.u-s-m-x-94 {
  margin-left: 5.875rem;
  margin-right: 5.875rem; }

.u-s-m-y-94 {
  margin-top: 5.875rem;
  margin-bottom: 5.875rem; }

.u-s-m-xy-94 {
  margin: 5.875rem; }

/* Padding with value `94`. */
.u-s-p-t-94 {
  padding-top: 5.875rem; }

.u-s-p-r-94 {
  padding-right: 5.875rem; }

.u-s-p-b-94 {
  padding-bottom: 5.875rem; }

.u-s-p-l-94 {
  padding-left: 5.875rem; }

.u-s-p-x-94 {
  padding-left: 5.875rem;
  padding-right: 5.875rem; }

.u-s-p-y-94 {
  padding-top: 5.875rem;
  padding-bottom: 5.875rem; }

.u-s-p-xy-94 {
  padding: 5.875rem; }

/* Margin with value `95`. */
.u-s-m-t-95 {
  margin-top: 5.9375rem; }

.u-s-m-r-95 {
  margin-right: 5.9375rem; }

.u-s-m-b-95 {
  margin-bottom: 5.9375rem; }

.u-s-m-l-95 {
  margin-left: 5.9375rem; }

.u-s-m-x-95 {
  margin-left: 5.9375rem;
  margin-right: 5.9375rem; }

.u-s-m-y-95 {
  margin-top: 5.9375rem;
  margin-bottom: 5.9375rem; }

.u-s-m-xy-95 {
  margin: 5.9375rem; }

/* Padding with value `95`. */
.u-s-p-t-95 {
  padding-top: 5.9375rem; }

.u-s-p-r-95 {
  padding-right: 5.9375rem; }

.u-s-p-b-95 {
  padding-bottom: 5.9375rem; }

.u-s-p-l-95 {
  padding-left: 5.9375rem; }

.u-s-p-x-95 {
  padding-left: 5.9375rem;
  padding-right: 5.9375rem; }

.u-s-p-y-95 {
  padding-top: 5.9375rem;
  padding-bottom: 5.9375rem; }

.u-s-p-xy-95 {
  padding: 5.9375rem; }

/* Margin with value `96`. */
.u-s-m-t-96 {
  margin-top: 6rem; }

.u-s-m-r-96 {
  margin-right: 6rem; }

.u-s-m-b-96 {
  margin-bottom: 6rem; }

.u-s-m-l-96 {
  margin-left: 6rem; }

.u-s-m-x-96 {
  margin-left: 6rem;
  margin-right: 6rem; }

.u-s-m-y-96 {
  margin-top: 6rem;
  margin-bottom: 6rem; }

.u-s-m-xy-96 {
  margin: 6rem; }

/* Padding with value `96`. */
.u-s-p-t-96 {
  padding-top: 6rem; }

.u-s-p-r-96 {
  padding-right: 6rem; }

.u-s-p-b-96 {
  padding-bottom: 6rem; }

.u-s-p-l-96 {
  padding-left: 6rem; }

.u-s-p-x-96 {
  padding-left: 6rem;
  padding-right: 6rem; }

.u-s-p-y-96 {
  padding-top: 6rem;
  padding-bottom: 6rem; }

.u-s-p-xy-96 {
  padding: 6rem; }

/* Margin with value `97`. */
.u-s-m-t-97 {
  margin-top: 6.0625rem; }

.u-s-m-r-97 {
  margin-right: 6.0625rem; }

.u-s-m-b-97 {
  margin-bottom: 6.0625rem; }

.u-s-m-l-97 {
  margin-left: 6.0625rem; }

.u-s-m-x-97 {
  margin-left: 6.0625rem;
  margin-right: 6.0625rem; }

.u-s-m-y-97 {
  margin-top: 6.0625rem;
  margin-bottom: 6.0625rem; }

.u-s-m-xy-97 {
  margin: 6.0625rem; }

/* Padding with value `97`. */
.u-s-p-t-97 {
  padding-top: 6.0625rem; }

.u-s-p-r-97 {
  padding-right: 6.0625rem; }

.u-s-p-b-97 {
  padding-bottom: 6.0625rem; }

.u-s-p-l-97 {
  padding-left: 6.0625rem; }

.u-s-p-x-97 {
  padding-left: 6.0625rem;
  padding-right: 6.0625rem; }

.u-s-p-y-97 {
  padding-top: 6.0625rem;
  padding-bottom: 6.0625rem; }

.u-s-p-xy-97 {
  padding: 6.0625rem; }

/* Margin with value `98`. */
.u-s-m-t-98 {
  margin-top: 6.125rem; }

.u-s-m-r-98 {
  margin-right: 6.125rem; }

.u-s-m-b-98 {
  margin-bottom: 6.125rem; }

.u-s-m-l-98 {
  margin-left: 6.125rem; }

.u-s-m-x-98 {
  margin-left: 6.125rem;
  margin-right: 6.125rem; }

.u-s-m-y-98 {
  margin-top: 6.125rem;
  margin-bottom: 6.125rem; }

.u-s-m-xy-98 {
  margin: 6.125rem; }

/* Padding with value `98`. */
.u-s-p-t-98 {
  padding-top: 6.125rem; }

.u-s-p-r-98 {
  padding-right: 6.125rem; }

.u-s-p-b-98 {
  padding-bottom: 6.125rem; }

.u-s-p-l-98 {
  padding-left: 6.125rem; }

.u-s-p-x-98 {
  padding-left: 6.125rem;
  padding-right: 6.125rem; }

.u-s-p-y-98 {
  padding-top: 6.125rem;
  padding-bottom: 6.125rem; }

.u-s-p-xy-98 {
  padding: 6.125rem; }

/* Margin with value `99`. */
.u-s-m-t-99 {
  margin-top: 6.1875rem; }

.u-s-m-r-99 {
  margin-right: 6.1875rem; }

.u-s-m-b-99 {
  margin-bottom: 6.1875rem; }

.u-s-m-l-99 {
  margin-left: 6.1875rem; }

.u-s-m-x-99 {
  margin-left: 6.1875rem;
  margin-right: 6.1875rem; }

.u-s-m-y-99 {
  margin-top: 6.1875rem;
  margin-bottom: 6.1875rem; }

.u-s-m-xy-99 {
  margin: 6.1875rem; }

/* Padding with value `99`. */
.u-s-p-t-99 {
  padding-top: 6.1875rem; }

.u-s-p-r-99 {
  padding-right: 6.1875rem; }

.u-s-p-b-99 {
  padding-bottom: 6.1875rem; }

.u-s-p-l-99 {
  padding-left: 6.1875rem; }

.u-s-p-x-99 {
  padding-left: 6.1875rem;
  padding-right: 6.1875rem; }

.u-s-p-y-99 {
  padding-top: 6.1875rem;
  padding-bottom: 6.1875rem; }

.u-s-p-xy-99 {
  padding: 6.1875rem; }

/* Margin with value `100`. */
.u-s-m-t-100 {
  margin-top: 6.25rem; }

.u-s-m-r-100 {
  margin-right: 6.25rem; }

.u-s-m-b-100 {
  margin-bottom: 6.25rem; }

.u-s-m-l-100 {
  margin-left: 6.25rem; }

.u-s-m-x-100 {
  margin-left: 6.25rem;
  margin-right: 6.25rem; }

.u-s-m-y-100 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem; }

.u-s-m-xy-100 {
  margin: 6.25rem; }

/* Padding with value `100`. */
.u-s-p-t-100 {
  padding-top: 6.25rem; }

.u-s-p-r-100 {
  padding-right: 6.25rem; }

.u-s-p-b-100 {
  padding-bottom: 6.25rem; }

.u-s-p-l-100 {
  padding-left: 6.25rem; }

.u-s-p-x-100 {
  padding-left: 6.25rem;
  padding-right: 6.25rem; }

.u-s-p-y-100 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem; }

.u-s-p-xy-100 {
  padding: 6.25rem; }

/* Margin with value `101`. */
.u-s-m-t-101 {
  margin-top: 6.3125rem; }

.u-s-m-r-101 {
  margin-right: 6.3125rem; }

.u-s-m-b-101 {
  margin-bottom: 6.3125rem; }

.u-s-m-l-101 {
  margin-left: 6.3125rem; }

.u-s-m-x-101 {
  margin-left: 6.3125rem;
  margin-right: 6.3125rem; }

.u-s-m-y-101 {
  margin-top: 6.3125rem;
  margin-bottom: 6.3125rem; }

.u-s-m-xy-101 {
  margin: 6.3125rem; }

/* Padding with value `101`. */
.u-s-p-t-101 {
  padding-top: 6.3125rem; }

.u-s-p-r-101 {
  padding-right: 6.3125rem; }

.u-s-p-b-101 {
  padding-bottom: 6.3125rem; }

.u-s-p-l-101 {
  padding-left: 6.3125rem; }

.u-s-p-x-101 {
  padding-left: 6.3125rem;
  padding-right: 6.3125rem; }

.u-s-p-y-101 {
  padding-top: 6.3125rem;
  padding-bottom: 6.3125rem; }

.u-s-p-xy-101 {
  padding: 6.3125rem; }

/* Margin with value `102`. */
.u-s-m-t-102 {
  margin-top: 6.375rem; }

.u-s-m-r-102 {
  margin-right: 6.375rem; }

.u-s-m-b-102 {
  margin-bottom: 6.375rem; }

.u-s-m-l-102 {
  margin-left: 6.375rem; }

.u-s-m-x-102 {
  margin-left: 6.375rem;
  margin-right: 6.375rem; }

.u-s-m-y-102 {
  margin-top: 6.375rem;
  margin-bottom: 6.375rem; }

.u-s-m-xy-102 {
  margin: 6.375rem; }

/* Padding with value `102`. */
.u-s-p-t-102 {
  padding-top: 6.375rem; }

.u-s-p-r-102 {
  padding-right: 6.375rem; }

.u-s-p-b-102 {
  padding-bottom: 6.375rem; }

.u-s-p-l-102 {
  padding-left: 6.375rem; }

.u-s-p-x-102 {
  padding-left: 6.375rem;
  padding-right: 6.375rem; }

.u-s-p-y-102 {
  padding-top: 6.375rem;
  padding-bottom: 6.375rem; }

.u-s-p-xy-102 {
  padding: 6.375rem; }

/* Margin with value `103`. */
.u-s-m-t-103 {
  margin-top: 6.4375rem; }

.u-s-m-r-103 {
  margin-right: 6.4375rem; }

.u-s-m-b-103 {
  margin-bottom: 6.4375rem; }

.u-s-m-l-103 {
  margin-left: 6.4375rem; }

.u-s-m-x-103 {
  margin-left: 6.4375rem;
  margin-right: 6.4375rem; }

.u-s-m-y-103 {
  margin-top: 6.4375rem;
  margin-bottom: 6.4375rem; }

.u-s-m-xy-103 {
  margin: 6.4375rem; }

/* Padding with value `103`. */
.u-s-p-t-103 {
  padding-top: 6.4375rem; }

.u-s-p-r-103 {
  padding-right: 6.4375rem; }

.u-s-p-b-103 {
  padding-bottom: 6.4375rem; }

.u-s-p-l-103 {
  padding-left: 6.4375rem; }

.u-s-p-x-103 {
  padding-left: 6.4375rem;
  padding-right: 6.4375rem; }

.u-s-p-y-103 {
  padding-top: 6.4375rem;
  padding-bottom: 6.4375rem; }

.u-s-p-xy-103 {
  padding: 6.4375rem; }

/* Margin with value `104`. */
.u-s-m-t-104 {
  margin-top: 6.5rem; }

.u-s-m-r-104 {
  margin-right: 6.5rem; }

.u-s-m-b-104 {
  margin-bottom: 6.5rem; }

.u-s-m-l-104 {
  margin-left: 6.5rem; }

.u-s-m-x-104 {
  margin-left: 6.5rem;
  margin-right: 6.5rem; }

.u-s-m-y-104 {
  margin-top: 6.5rem;
  margin-bottom: 6.5rem; }

.u-s-m-xy-104 {
  margin: 6.5rem; }

/* Padding with value `104`. */
.u-s-p-t-104 {
  padding-top: 6.5rem; }

.u-s-p-r-104 {
  padding-right: 6.5rem; }

.u-s-p-b-104 {
  padding-bottom: 6.5rem; }

.u-s-p-l-104 {
  padding-left: 6.5rem; }

.u-s-p-x-104 {
  padding-left: 6.5rem;
  padding-right: 6.5rem; }

.u-s-p-y-104 {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem; }

.u-s-p-xy-104 {
  padding: 6.5rem; }

/* Margin with value `105`. */
.u-s-m-t-105 {
  margin-top: 6.5625rem; }

.u-s-m-r-105 {
  margin-right: 6.5625rem; }

.u-s-m-b-105 {
  margin-bottom: 6.5625rem; }

.u-s-m-l-105 {
  margin-left: 6.5625rem; }

.u-s-m-x-105 {
  margin-left: 6.5625rem;
  margin-right: 6.5625rem; }

.u-s-m-y-105 {
  margin-top: 6.5625rem;
  margin-bottom: 6.5625rem; }

.u-s-m-xy-105 {
  margin: 6.5625rem; }

/* Padding with value `105`. */
.u-s-p-t-105 {
  padding-top: 6.5625rem; }

.u-s-p-r-105 {
  padding-right: 6.5625rem; }

.u-s-p-b-105 {
  padding-bottom: 6.5625rem; }

.u-s-p-l-105 {
  padding-left: 6.5625rem; }

.u-s-p-x-105 {
  padding-left: 6.5625rem;
  padding-right: 6.5625rem; }

.u-s-p-y-105 {
  padding-top: 6.5625rem;
  padding-bottom: 6.5625rem; }

.u-s-p-xy-105 {
  padding: 6.5625rem; }

/* Margin with value `106`. */
.u-s-m-t-106 {
  margin-top: 6.625rem; }

.u-s-m-r-106 {
  margin-right: 6.625rem; }

.u-s-m-b-106 {
  margin-bottom: 6.625rem; }

.u-s-m-l-106 {
  margin-left: 6.625rem; }

.u-s-m-x-106 {
  margin-left: 6.625rem;
  margin-right: 6.625rem; }

.u-s-m-y-106 {
  margin-top: 6.625rem;
  margin-bottom: 6.625rem; }

.u-s-m-xy-106 {
  margin: 6.625rem; }

/* Padding with value `106`. */
.u-s-p-t-106 {
  padding-top: 6.625rem; }

.u-s-p-r-106 {
  padding-right: 6.625rem; }

.u-s-p-b-106 {
  padding-bottom: 6.625rem; }

.u-s-p-l-106 {
  padding-left: 6.625rem; }

.u-s-p-x-106 {
  padding-left: 6.625rem;
  padding-right: 6.625rem; }

.u-s-p-y-106 {
  padding-top: 6.625rem;
  padding-bottom: 6.625rem; }

.u-s-p-xy-106 {
  padding: 6.625rem; }

/* Margin with value `107`. */
.u-s-m-t-107 {
  margin-top: 6.6875rem; }

.u-s-m-r-107 {
  margin-right: 6.6875rem; }

.u-s-m-b-107 {
  margin-bottom: 6.6875rem; }

.u-s-m-l-107 {
  margin-left: 6.6875rem; }

.u-s-m-x-107 {
  margin-left: 6.6875rem;
  margin-right: 6.6875rem; }

.u-s-m-y-107 {
  margin-top: 6.6875rem;
  margin-bottom: 6.6875rem; }

.u-s-m-xy-107 {
  margin: 6.6875rem; }

/* Padding with value `107`. */
.u-s-p-t-107 {
  padding-top: 6.6875rem; }

.u-s-p-r-107 {
  padding-right: 6.6875rem; }

.u-s-p-b-107 {
  padding-bottom: 6.6875rem; }

.u-s-p-l-107 {
  padding-left: 6.6875rem; }

.u-s-p-x-107 {
  padding-left: 6.6875rem;
  padding-right: 6.6875rem; }

.u-s-p-y-107 {
  padding-top: 6.6875rem;
  padding-bottom: 6.6875rem; }

.u-s-p-xy-107 {
  padding: 6.6875rem; }

/* Margin with value `108`. */
.u-s-m-t-108 {
  margin-top: 6.75rem; }

.u-s-m-r-108 {
  margin-right: 6.75rem; }

.u-s-m-b-108 {
  margin-bottom: 6.75rem; }

.u-s-m-l-108 {
  margin-left: 6.75rem; }

.u-s-m-x-108 {
  margin-left: 6.75rem;
  margin-right: 6.75rem; }

.u-s-m-y-108 {
  margin-top: 6.75rem;
  margin-bottom: 6.75rem; }

.u-s-m-xy-108 {
  margin: 6.75rem; }

/* Padding with value `108`. */
.u-s-p-t-108 {
  padding-top: 6.75rem; }

.u-s-p-r-108 {
  padding-right: 6.75rem; }

.u-s-p-b-108 {
  padding-bottom: 6.75rem; }

.u-s-p-l-108 {
  padding-left: 6.75rem; }

.u-s-p-x-108 {
  padding-left: 6.75rem;
  padding-right: 6.75rem; }

.u-s-p-y-108 {
  padding-top: 6.75rem;
  padding-bottom: 6.75rem; }

.u-s-p-xy-108 {
  padding: 6.75rem; }

/* Margin with value `109`. */
.u-s-m-t-109 {
  margin-top: 6.8125rem; }

.u-s-m-r-109 {
  margin-right: 6.8125rem; }

.u-s-m-b-109 {
  margin-bottom: 6.8125rem; }

.u-s-m-l-109 {
  margin-left: 6.8125rem; }

.u-s-m-x-109 {
  margin-left: 6.8125rem;
  margin-right: 6.8125rem; }

.u-s-m-y-109 {
  margin-top: 6.8125rem;
  margin-bottom: 6.8125rem; }

.u-s-m-xy-109 {
  margin: 6.8125rem; }

/* Padding with value `109`. */
.u-s-p-t-109 {
  padding-top: 6.8125rem; }

.u-s-p-r-109 {
  padding-right: 6.8125rem; }

.u-s-p-b-109 {
  padding-bottom: 6.8125rem; }

.u-s-p-l-109 {
  padding-left: 6.8125rem; }

.u-s-p-x-109 {
  padding-left: 6.8125rem;
  padding-right: 6.8125rem; }

.u-s-p-y-109 {
  padding-top: 6.8125rem;
  padding-bottom: 6.8125rem; }

.u-s-p-xy-109 {
  padding: 6.8125rem; }

/* Margin with value `110`. */
.u-s-m-t-110 {
  margin-top: 6.875rem; }

.u-s-m-r-110 {
  margin-right: 6.875rem; }

.u-s-m-b-110 {
  margin-bottom: 6.875rem; }

.u-s-m-l-110 {
  margin-left: 6.875rem; }

.u-s-m-x-110 {
  margin-left: 6.875rem;
  margin-right: 6.875rem; }

.u-s-m-y-110 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem; }

.u-s-m-xy-110 {
  margin: 6.875rem; }

/* Padding with value `110`. */
.u-s-p-t-110 {
  padding-top: 6.875rem; }

.u-s-p-r-110 {
  padding-right: 6.875rem; }

.u-s-p-b-110 {
  padding-bottom: 6.875rem; }

.u-s-p-l-110 {
  padding-left: 6.875rem; }

.u-s-p-x-110 {
  padding-left: 6.875rem;
  padding-right: 6.875rem; }

.u-s-p-y-110 {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem; }

.u-s-p-xy-110 {
  padding: 6.875rem; }

/* Margin with value `111`. */
.u-s-m-t-111 {
  margin-top: 6.9375rem; }

.u-s-m-r-111 {
  margin-right: 6.9375rem; }

.u-s-m-b-111 {
  margin-bottom: 6.9375rem; }

.u-s-m-l-111 {
  margin-left: 6.9375rem; }

.u-s-m-x-111 {
  margin-left: 6.9375rem;
  margin-right: 6.9375rem; }

.u-s-m-y-111 {
  margin-top: 6.9375rem;
  margin-bottom: 6.9375rem; }

.u-s-m-xy-111 {
  margin: 6.9375rem; }

/* Padding with value `111`. */
.u-s-p-t-111 {
  padding-top: 6.9375rem; }

.u-s-p-r-111 {
  padding-right: 6.9375rem; }

.u-s-p-b-111 {
  padding-bottom: 6.9375rem; }

.u-s-p-l-111 {
  padding-left: 6.9375rem; }

.u-s-p-x-111 {
  padding-left: 6.9375rem;
  padding-right: 6.9375rem; }

.u-s-p-y-111 {
  padding-top: 6.9375rem;
  padding-bottom: 6.9375rem; }

.u-s-p-xy-111 {
  padding: 6.9375rem; }

/* Margin with value `112`. */
.u-s-m-t-112 {
  margin-top: 7rem; }

.u-s-m-r-112 {
  margin-right: 7rem; }

.u-s-m-b-112 {
  margin-bottom: 7rem; }

.u-s-m-l-112 {
  margin-left: 7rem; }

.u-s-m-x-112 {
  margin-left: 7rem;
  margin-right: 7rem; }

.u-s-m-y-112 {
  margin-top: 7rem;
  margin-bottom: 7rem; }

.u-s-m-xy-112 {
  margin: 7rem; }

/* Padding with value `112`. */
.u-s-p-t-112 {
  padding-top: 7rem; }

.u-s-p-r-112 {
  padding-right: 7rem; }

.u-s-p-b-112 {
  padding-bottom: 7rem; }

.u-s-p-l-112 {
  padding-left: 7rem; }

.u-s-p-x-112 {
  padding-left: 7rem;
  padding-right: 7rem; }

.u-s-p-y-112 {
  padding-top: 7rem;
  padding-bottom: 7rem; }

.u-s-p-xy-112 {
  padding: 7rem; }

/* Margin with value `113`. */
.u-s-m-t-113 {
  margin-top: 7.0625rem; }

.u-s-m-r-113 {
  margin-right: 7.0625rem; }

.u-s-m-b-113 {
  margin-bottom: 7.0625rem; }

.u-s-m-l-113 {
  margin-left: 7.0625rem; }

.u-s-m-x-113 {
  margin-left: 7.0625rem;
  margin-right: 7.0625rem; }

.u-s-m-y-113 {
  margin-top: 7.0625rem;
  margin-bottom: 7.0625rem; }

.u-s-m-xy-113 {
  margin: 7.0625rem; }

/* Padding with value `113`. */
.u-s-p-t-113 {
  padding-top: 7.0625rem; }

.u-s-p-r-113 {
  padding-right: 7.0625rem; }

.u-s-p-b-113 {
  padding-bottom: 7.0625rem; }

.u-s-p-l-113 {
  padding-left: 7.0625rem; }

.u-s-p-x-113 {
  padding-left: 7.0625rem;
  padding-right: 7.0625rem; }

.u-s-p-y-113 {
  padding-top: 7.0625rem;
  padding-bottom: 7.0625rem; }

.u-s-p-xy-113 {
  padding: 7.0625rem; }

/* Margin with value `114`. */
.u-s-m-t-114 {
  margin-top: 7.125rem; }

.u-s-m-r-114 {
  margin-right: 7.125rem; }

.u-s-m-b-114 {
  margin-bottom: 7.125rem; }

.u-s-m-l-114 {
  margin-left: 7.125rem; }

.u-s-m-x-114 {
  margin-left: 7.125rem;
  margin-right: 7.125rem; }

.u-s-m-y-114 {
  margin-top: 7.125rem;
  margin-bottom: 7.125rem; }

.u-s-m-xy-114 {
  margin: 7.125rem; }

/* Padding with value `114`. */
.u-s-p-t-114 {
  padding-top: 7.125rem; }

.u-s-p-r-114 {
  padding-right: 7.125rem; }

.u-s-p-b-114 {
  padding-bottom: 7.125rem; }

.u-s-p-l-114 {
  padding-left: 7.125rem; }

.u-s-p-x-114 {
  padding-left: 7.125rem;
  padding-right: 7.125rem; }

.u-s-p-y-114 {
  padding-top: 7.125rem;
  padding-bottom: 7.125rem; }

.u-s-p-xy-114 {
  padding: 7.125rem; }

/* Margin with value `115`. */
.u-s-m-t-115 {
  margin-top: 7.1875rem; }

.u-s-m-r-115 {
  margin-right: 7.1875rem; }

.u-s-m-b-115 {
  margin-bottom: 7.1875rem; }

.u-s-m-l-115 {
  margin-left: 7.1875rem; }

.u-s-m-x-115 {
  margin-left: 7.1875rem;
  margin-right: 7.1875rem; }

.u-s-m-y-115 {
  margin-top: 7.1875rem;
  margin-bottom: 7.1875rem; }

.u-s-m-xy-115 {
  margin: 7.1875rem; }

/* Padding with value `115`. */
.u-s-p-t-115 {
  padding-top: 7.1875rem; }

.u-s-p-r-115 {
  padding-right: 7.1875rem; }

.u-s-p-b-115 {
  padding-bottom: 7.1875rem; }

.u-s-p-l-115 {
  padding-left: 7.1875rem; }

.u-s-p-x-115 {
  padding-left: 7.1875rem;
  padding-right: 7.1875rem; }

.u-s-p-y-115 {
  padding-top: 7.1875rem;
  padding-bottom: 7.1875rem; }

.u-s-p-xy-115 {
  padding: 7.1875rem; }

/* Margin with value `116`. */
.u-s-m-t-116 {
  margin-top: 7.25rem; }

.u-s-m-r-116 {
  margin-right: 7.25rem; }

.u-s-m-b-116 {
  margin-bottom: 7.25rem; }

.u-s-m-l-116 {
  margin-left: 7.25rem; }

.u-s-m-x-116 {
  margin-left: 7.25rem;
  margin-right: 7.25rem; }

.u-s-m-y-116 {
  margin-top: 7.25rem;
  margin-bottom: 7.25rem; }

.u-s-m-xy-116 {
  margin: 7.25rem; }

/* Padding with value `116`. */
.u-s-p-t-116 {
  padding-top: 7.25rem; }

.u-s-p-r-116 {
  padding-right: 7.25rem; }

.u-s-p-b-116 {
  padding-bottom: 7.25rem; }

.u-s-p-l-116 {
  padding-left: 7.25rem; }

.u-s-p-x-116 {
  padding-left: 7.25rem;
  padding-right: 7.25rem; }

.u-s-p-y-116 {
  padding-top: 7.25rem;
  padding-bottom: 7.25rem; }

.u-s-p-xy-116 {
  padding: 7.25rem; }

/* Margin with value `117`. */
.u-s-m-t-117 {
  margin-top: 7.3125rem; }

.u-s-m-r-117 {
  margin-right: 7.3125rem; }

.u-s-m-b-117 {
  margin-bottom: 7.3125rem; }

.u-s-m-l-117 {
  margin-left: 7.3125rem; }

.u-s-m-x-117 {
  margin-left: 7.3125rem;
  margin-right: 7.3125rem; }

.u-s-m-y-117 {
  margin-top: 7.3125rem;
  margin-bottom: 7.3125rem; }

.u-s-m-xy-117 {
  margin: 7.3125rem; }

/* Padding with value `117`. */
.u-s-p-t-117 {
  padding-top: 7.3125rem; }

.u-s-p-r-117 {
  padding-right: 7.3125rem; }

.u-s-p-b-117 {
  padding-bottom: 7.3125rem; }

.u-s-p-l-117 {
  padding-left: 7.3125rem; }

.u-s-p-x-117 {
  padding-left: 7.3125rem;
  padding-right: 7.3125rem; }

.u-s-p-y-117 {
  padding-top: 7.3125rem;
  padding-bottom: 7.3125rem; }

.u-s-p-xy-117 {
  padding: 7.3125rem; }

/* Margin with value `118`. */
.u-s-m-t-118 {
  margin-top: 7.375rem; }

.u-s-m-r-118 {
  margin-right: 7.375rem; }

.u-s-m-b-118 {
  margin-bottom: 7.375rem; }

.u-s-m-l-118 {
  margin-left: 7.375rem; }

.u-s-m-x-118 {
  margin-left: 7.375rem;
  margin-right: 7.375rem; }

.u-s-m-y-118 {
  margin-top: 7.375rem;
  margin-bottom: 7.375rem; }

.u-s-m-xy-118 {
  margin: 7.375rem; }

/* Padding with value `118`. */
.u-s-p-t-118 {
  padding-top: 7.375rem; }

.u-s-p-r-118 {
  padding-right: 7.375rem; }

.u-s-p-b-118 {
  padding-bottom: 7.375rem; }

.u-s-p-l-118 {
  padding-left: 7.375rem; }

.u-s-p-x-118 {
  padding-left: 7.375rem;
  padding-right: 7.375rem; }

.u-s-p-y-118 {
  padding-top: 7.375rem;
  padding-bottom: 7.375rem; }

.u-s-p-xy-118 {
  padding: 7.375rem; }

/* Margin with value `119`. */
.u-s-m-t-119 {
  margin-top: 7.4375rem; }

.u-s-m-r-119 {
  margin-right: 7.4375rem; }

.u-s-m-b-119 {
  margin-bottom: 7.4375rem; }

.u-s-m-l-119 {
  margin-left: 7.4375rem; }

.u-s-m-x-119 {
  margin-left: 7.4375rem;
  margin-right: 7.4375rem; }

.u-s-m-y-119 {
  margin-top: 7.4375rem;
  margin-bottom: 7.4375rem; }

.u-s-m-xy-119 {
  margin: 7.4375rem; }

/* Padding with value `119`. */
.u-s-p-t-119 {
  padding-top: 7.4375rem; }

.u-s-p-r-119 {
  padding-right: 7.4375rem; }

.u-s-p-b-119 {
  padding-bottom: 7.4375rem; }

.u-s-p-l-119 {
  padding-left: 7.4375rem; }

.u-s-p-x-119 {
  padding-left: 7.4375rem;
  padding-right: 7.4375rem; }

.u-s-p-y-119 {
  padding-top: 7.4375rem;
  padding-bottom: 7.4375rem; }

.u-s-p-xy-119 {
  padding: 7.4375rem; }

/* Margin with value `120`. */
.u-s-m-t-120 {
  margin-top: 7.5rem; }

.u-s-m-r-120 {
  margin-right: 7.5rem; }

.u-s-m-b-120 {
  margin-bottom: 7.5rem; }

.u-s-m-l-120 {
  margin-left: 7.5rem; }

.u-s-m-x-120 {
  margin-left: 7.5rem;
  margin-right: 7.5rem; }

.u-s-m-y-120 {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem; }

.u-s-m-xy-120 {
  margin: 7.5rem; }

/* Padding with value `120`. */
.u-s-p-t-120 {
  padding-top: 7.5rem; }

.u-s-p-r-120 {
  padding-right: 7.5rem; }

.u-s-p-b-120 {
  padding-bottom: 7.5rem; }

.u-s-p-l-120 {
  padding-left: 7.5rem; }

.u-s-p-x-120 {
  padding-left: 7.5rem;
  padding-right: 7.5rem; }

.u-s-p-y-120 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem; }

.u-s-p-xy-120 {
  padding: 7.5rem; }

/*! normalize.css v8.0.1
 * Licensed under MIT License
 * github.com/necolas/normalize.css
 */
 html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}


 /*!
  * Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com
  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
  */
 @font-face{font-display: swap;font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;src:url(/fonts/fa-regular-400.eot);src:url(/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/fonts/fa-regular-400.woff2) format("woff2"),url(/fonts/fa-regular-400.woff) format("woff"),url(/fonts/fa-regular-400.ttf) format("truetype")}.far{font-weight:400}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;src:url(/fonts/fa-solid-900.eot);src:url(/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/fonts/fa-solid-900.woff2) format("woff2"),url(/fonts/fa-solid-900.woff) format("woff"),url(/fonts/fa-solid-900.ttf) format("truetype")}.fa,.far,.fas{font-family:Font Awesome\ 5 Free}.fa,.fas{font-weight:900}@font-face{font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;src:url(/fonts/fa-brands-400.eot);src:url(/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/fonts/fa-brands-400.woff2) format("woff2"),url(/fonts/fa-brands-400.woff) format("woff"),url(/fonts/fa-brands-400.ttf) format("truetype")}.fab{font-family:Font Awesome\ 5 Brands}.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s linear infinite}.fa-pulse{animation:fa-spin 1s steps(8) infinite}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
 
 
 /*!
  * Bootstrap v4.2.1 with components grid, nav, modal, tooltip & transitions. (https://getbootstrap.com/)
  * Copyright 2011-2018 The Bootstrap Authors
  * Copyright 2011-2018 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */
 .container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}
 
 
 /*!
  * animate.css -http://daneden.me/animate
  * Version - 3.7.0
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
  *
  * Copyright (c) 2018 Daniel Eden
  */
 @-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;-webkit-transform-origin:center bottom;animation-name:bounce;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-name:headShake;-webkit-animation-timing-function:ease-in-out;animation-name:headShake;animation-timing-function:ease-in-out}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-animation-name:swing;-webkit-transform-origin:top center;animation-name:swing;transform-origin:top center}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;-webkit-transform-origin:center;animation-name:jello;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-duration:1.3s;-webkit-animation-name:heartBeat;-webkit-animation-timing-function:ease-in-out;animation-duration:1.3s;animation-name:heartBeat;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{-webkit-transform:scale3d(1.03,1.03,1.03);opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{-webkit-transform:scaleX(1);opacity:1;transform:scaleX(1)}}.bounceIn{-webkit-animation-duration:.75s;-webkit-animation-name:bounceIn;animation-duration:.75s;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,-3000px,0);opacity:0;transform:translate3d(0,-3000px,0)}60%{-webkit-transform:translate3d(0,25px,0);opacity:1;transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(-3000px,0,0);opacity:0;transform:translate3d(-3000px,0,0)}60%{-webkit-transform:translate3d(25px,0,0);opacity:1;transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(3000px,0,0);opacity:0;transform:translate3d(3000px,0,0)}60%{-webkit-transform:translate3d(-25px,0,0);opacity:1;transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{-webkit-transform:translate3d(0,3000px,0);opacity:0;transform:translate3d(0,3000px,0)}60%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{-webkit-transform:scale3d(1.1,1.1,1.1);opacity:1;transform:scale3d(1.1,1.1,1.1)}to{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-duration:.75s;-webkit-animation-name:bounceOut;animation-duration:.75s;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{-webkit-transform:translate3d(0,-20px,0);opacity:1;transform:translate3d(0,-20px,0)}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{-webkit-transform:translate3d(20px,0,0);opacity:1;transform:translate3d(20px,0,0)}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{-webkit-transform:translate3d(-20px,0,0);opacity:1;transform:translate3d(-20px,0,0)}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{-webkit-transform:translate3d(0,20px,0);opacity:1;transform:translate3d(0,20px,0)}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDown{0%{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{-webkit-transform:translate3d(0,100%,0);opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{-webkit-transform:translate3d(0,2000px,0);opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0);opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{-webkit-transform:translate3d(-2000px,0,0);opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0);opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{-webkit-transform:translate3d(2000px,0,0);opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{-webkit-transform:translate3d(0,-100%,0);opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{-webkit-transform:translate3d(0,-2000px,0);opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}@keyframes flip{0%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}.animated.flip{-webkit-animation-name:flip;-webkit-backface-visibility:visible;animation-name:flip;backface-visibility:visible}@-webkit-keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1;transform:perspective(400px) rotateX(10deg)}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-animation-name:flipInX;-webkit-backface-visibility:visible!important;animation-name:flipInX;backface-visibility:visible!important}@-webkit-keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{-webkit-animation-timing-function:ease-in;-webkit-transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);opacity:1;transform:perspective(400px) rotateY(10deg)}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-animation-name:flipInY;-webkit-backface-visibility:visible!important;animation-name:flipInY;backface-visibility:visible!important}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);opacity:1;transform:perspective(400px) rotateX(-20deg)}to{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0;transform:perspective(400px) rotateX(90deg)}}.flipOutX{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutX;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutX;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);opacity:1;transform:perspective(400px) rotateY(-15deg)}to{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;transform:perspective(400px) rotateY(90deg)}}.flipOutY{-webkit-animation-duration:.75s;-webkit-animation-name:flipOutY;-webkit-backface-visibility:visible!important;animation-duration:.75s;animation-name:flipOutY;backface-visibility:visible!important}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);opacity:0;transform:translate3d(100%,0,0) skewX(-30deg)}60%{-webkit-transform:skewX(20deg);opacity:1;transform:skewX(20deg)}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-name:lightSpeedIn;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-name:lightSpeedOut;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(-200deg);transform-origin:center}to{-webkit-transform:translateZ(0);-webkit-transform-origin:center;opacity:1;transform:translateZ(0);transform-origin:center}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(45deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:left bottom;opacity:1;transform:translateZ(0);transform-origin:left bottom}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-90deg);transform-origin:right bottom}to{-webkit-transform:translateZ(0);-webkit-transform-origin:right bottom;opacity:1;transform:translateZ(0);transform-origin:right bottom}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}@keyframes rotateOut{0%{-webkit-transform-origin:center;opacity:1;transform-origin:center}to{-webkit-transform:rotate(200deg);-webkit-transform-origin:center;opacity:0;transform:rotate(200deg);transform-origin:center}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(45deg);transform-origin:left bottom}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(-45deg);transform-origin:right bottom}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;opacity:1;transform-origin:left bottom}to{-webkit-transform:rotate(-45deg);-webkit-transform-origin:left bottom;opacity:0;transform:rotate(-45deg);transform-origin:left bottom}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;opacity:1;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);-webkit-transform-origin:right bottom;opacity:0;transform:rotate(90deg);transform-origin:right bottom}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform-origin:top left}20%,60%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(80deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-animation-timing-function:ease-in-out;-webkit-transform:rotate(60deg);-webkit-transform-origin:top left;animation-timing-function:ease-in-out;opacity:1;transform:rotate(60deg);transform-origin:top left}to{-webkit-transform:translate3d(0,700px,0);opacity:0;transform:translate3d(0,700px,0)}}.hinge{-webkit-animation-duration:2s;-webkit-animation-name:hinge;animation-duration:2s;animation-name:hinge}@-webkit-keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}@keyframes jackInTheBox{0%{-webkit-transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{-webkit-transform:scale(1);opacity:1;transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}@keyframes rollIn{0%{-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{-webkit-transform:translateZ(0);opacity:1;transform:translateZ(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) rotate(120deg);opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoomInDown{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoomInLeft{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoomInRight{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}@keyframes zoomInUp{0%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}@keyframes zoomOutDown{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}@keyframes zoomOutLeft{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{-webkit-transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}@keyframes zoomOutRight{40%{-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{-webkit-transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}@keyframes zoomOutUp{40%{-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19);opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}to{-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1);opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:hidden}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:hidden}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:hidden}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:hidden}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;-webkit-animation-fill-mode:both;animation-duration:1s;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}.animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (prefers-reduced-motion){.animated{-webkit-animation:unset!important;-webkit-transition:none!important;animation:unset!important;transition:none!important}}
 
 
 /*!
  * Owl Carousel v2.3.4
  * Copyright 2013-2018 David Deutsch
  * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
  */
 .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
 
 
 /*!
  * Slick v1.8.1
  * Author: Ken Wheeler
  * Website: http://kenwheeler.github.io
  */
 .slick-slider{box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
 
 
 /*! lightgallery - v1.6.11 - 2018-05-22
  * http://sachinchoolur.github.io/lightGallery/
  * Copyright (c) 2018 Sachin N; Licensed GPLv3
  */
 .lg-sub-html,.lg-toolbar{background-color:rgba(0,0,0,.45)}@font-face{font-family:lg;src:url(/fonts/lg.eot);src:url(/fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),url(/fonts/lg.woff) format("woff"),url(/fonts/lg.ttf) format("truetype"),url(/svg/lg.svg#lg) format("svg");font-weight:400;font-style:normal}.lg-icon{font-family:lg;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-actions .lg-next,.lg-actions .lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080;border:none;outline:0}.lg-actions .lg-next.disabled,.lg-actions .lg-prev.disabled{pointer-events:none;opacity:.5}.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover{color:#FFF}.lg-actions .lg-next{right:20px}.lg-actions .lg-next:before{content:"\e095"}.lg-actions .lg-prev{left:20px}.lg-actions .lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-moz-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-ms-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-moz-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-ms-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:0;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-toolbar .lg-icon:hover{color:#FFF}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{bottom:0;color:#EEE;font-size:16px;left:0;padding:10px 40px;position:fixed;right:0;text-align:center;z-index:1080}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}#lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;vertical-align:middle}.lg-next,.lg-prev,.lg-toolbar{opacity:1;-webkit-transition:-webkit-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-moz-transition:-moz-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-o-transition:-o-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;transition:transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear}.lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.lg-outer .lg-thumb-outer{background-color:#0D0A0A;bottom:0;position:absolute;width:100%;z-index:1080;max-height:350px;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-thumb-open .lg-thumb-outer{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-thumb{padding:10px 0;height:100%;margin-bottom:-5px}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border:2px solid #FFF;border-radius:4px;margin-bottom:5px}@media (min-width:1025px){.lg-outer .lg-thumb-item{-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover}.lg-outer.lg-has-thumb .lg-item{padding-bottom:120px}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer.lg-pull-caption-up .lg-sub-html{-webkit-transition:bottom .25s ease;-o-transition:bottom .25s ease;transition:bottom .25s ease}.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{bottom:100px}.lg-outer .lg-toogle-thumb{background-color:#0D0A0A;border-radius:2px 2px 0 0;color:#999;cursor:pointer;font-size:24px;height:39px;line-height:27px;padding:5px 0;position:absolute;right:20px;text-align:center;top:-39px;width:50px}.lg-outer .lg-toogle-thumb:hover,.lg-outer.lg-dropdown-active #lg-share{color:#FFF}.lg-outer .lg-toogle-thumb:after{content:"\e1ff"}.lg-outer .lg-video-cont{display:inline-block;vertical-align:middle;max-width:1140px;max-height:100%;width:100%;padding:0 5px}.lg-outer .lg-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}.lg-outer .lg-video .lg-object{display:inline-block;position:absolute;top:0;left:0;width:100%!important;height:100%!important}.lg-outer .lg-video .lg-video-play{width:84px;height:59px;position:absolute;left:50%;top:50%;margin-left:-42px;margin-top:-30px;z-index:1080;cursor:pointer}.lg-outer .lg-has-iframe .lg-video{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-has-vimeo .lg-outer .lg-has-vimeo:hover.lg-outer .lg-has-html5 .lg-video-play{margin-left:-32px;margin-top:-32px;width:64px;opacity:.8}.lg-outer .lg-has-html5:hover .lg-video-play{opacity:1}.lg-outer .lg-has-youtube .lg-outer .lg-has-youtube:hover .lg-outer .lg-video-object{width:100%!important;height:100%!important;position:absolute;top:0;left:0}.lg-outer .lg-has-video .lg-video-object{visibility:hidden}.lg-outer .lg-has-video.lg-video-playing .lg-object,.lg-outer .lg-has-video.lg-video-playing .lg-video-play{display:none}.lg-outer .lg-has-video.lg-video-playing .lg-video-object{visibility:visible}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s;transition-duration:0s}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s;transition:transform .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;transition:transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}#lg-zoom-in:after{content:"\e311"}#lg-actual-size{font-size:20px}#lg-actual-size:after{content:"\e033"}#lg-zoom-out{opacity:.5;pointer-events:none}#lg-zoom-out:after{content:"\e312"}.lg-zoomed #lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer .lg-pager-outer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1080;height:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#FFF;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer #lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active #lg-dropdown-overlay,.lg-outer.lg-dropdown-active .lg-dropdown{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#FFF;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover .lg-icon,.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer,.lg-outer .lg,.lg-outer .lg-inner{width:100%;height:100%}.lg-outer #lg-share{position:relative}.lg-outer #lg-share:after{content:"\e80d"}.lg-outer #lg-share-facebook .lg-icon{color:#3b5998}.lg-outer #lg-share-facebook .lg-icon:after{content:"\e901"}.lg-outer #lg-share-twitter .lg-icon{color:#00aced}.lg-outer #lg-share-twitter .lg-icon:after{content:"\e904"}.lg-outer #lg-share-googleplus .lg-icon{color:#dd4b39}.lg-outer #lg-share-googleplus .lg-icon:after{content:"\e902"}.lg-outer #lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer #lg-share-pinterest .lg-icon:after{content:"\e903"}.lg-group:after{content:"";display:table;clear:both}.lg-outer{position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item.lg-current,.lg-outer.lg-css3 .lg-item.lg-next-slide,.lg-outer.lg-css3 .lg-item.lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%}.lg-outer .lg-inner{position:absolute;left:0;top:0;white-space:nowrap}.lg-outer .lg-item{display:none!important}.lg-outer.lg-css .lg-current,.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}.lg-outer .lg-img-wrap{position:absolute;padding:0 5px;left:0;right:0;top:0;bottom:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-image{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto!important;height:auto!important}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play{opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play{opacity:1}.lg-outer .lg-empty-html,.lg-outer.lg-hide-download #lg-download{display:none}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item,.lg-css3.lg-use-left .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-left .lg-item{opacity:0;position:absolute;left:0}.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{left:-100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide{left:100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current{left:0;opacity:1}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{-webkit-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}
 
 
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Base Styles
2.0 Typography
3.0 Pre-configured styles
4.0 Layout Utility Styles
5.0 Components
6.0 Header
  6.1 Primary Nav
  6.2 Secondary Nav
7.0 Footer
  7.1 Outer-Footer
  7.3 Lower-Footer
9.0 About-Page
10.0 Contact-Page
11.0 Cart-Wishlist-Pages
12.0 Empty-404-Pages
13.0 Checkout-Page
14.0 Signin Signup Lost Password-Page
15.0 FAQ-Page
16.0 Dashboard-Pages
17.0 Blog-Pages
18.0 Product-Detail-Pages
19.0 Shop-Pages
20.0 Vendor Extension Pages
  20.1 Bootstrap
  20.2 jquery.shopnav
  20.3 Owl-Carousel
  20.4 jquery.scrollUp
  20.5 Slick Carousel

--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Base Styles
--------------------------------------------------------------*/
/**
 * Setup box-sizing
 */
 html {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }
  html.boxed {
    background-color: #eee; }

*,
*::before,
*::after {
  box-sizing: inherit; }

/**
 * Set up a background-color and height on the root and body element.
 */

/**
 * Set up a background-color and height on the root and body element.
 */
body {
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased; }

.config {
  overflow: hidden; }

/**
 * Basic styles for headings and paragraph
 */
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0; }

h1 {
  font-size: 50px;
  line-height: 50px; }

h2 {
  font-size: 32px;
  line-height: 46px; }

h3 {
  font-size: 18px;
  line-height: 32px; 
  text-transform: none;
}

h4 {
  font-size: 16px;
  line-height: 30px; }

h5 {
  font-size: 15px;
  line-height: 30px; }

p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 24px; }

/**
 * Basic styles for links
 */
a, a:hover, a:focus {
  outline: none;
  text-decoration: none;
  cursor: pointer; }

/**
 * Basic style for image element
 */
img {
  border: 0; }
  img:focus {
    outline: none; }

/**
 * Basic style for iframe element
 */
iframe {
  border: none;
  overflow: hidden; }

iframe[src*="soundcloud"] {
  width: 100%; }

/*--------------------------------------------------------------
Box Module
--------------------------------------------------------------*/
/* Body Element */
@media (min-width: 576px) {
  html.boxed body {
    background-color: #ffffff;
    margin: 0 auto; } }

@media (min-width: 576px) {
  html.boxed body {
    max-width: 546px; } }

@media (min-width: 791px) {
  html.boxed body {
    max-width: 770px; } }

@media (min-width: 1025px) {
  html.boxed body {
    max-width: 990px; } }

@media (min-width: 1230px) {
  html.boxed body {
    max-width: 1200px; } }

/* Header with container Element */
@media (max-width: 1024px) {
  html.boxed header .container {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1025px) {
  html.boxed header .container {
    padding-left: 40px;
    padding-right: 40px; } }

/* Header & Footer Element */
@media (min-width: 576px) {
  html.boxed header, html.boxed footer {
    margin-right: auto;
    margin-left: auto;
    width: 100%; } }

@media (min-width: 576px) {
  html.boxed header, html.boxed footer {
    max-width: 456px; } }

@media (min-width: 791px) {
  html.boxed header, html.boxed footer {
    max-width: 770px; } }

@media (min-width: 1025px) {
  html.boxed header, html.boxed footer {
    max-width: 990px; } }

@media (min-width: 1230px) {
  html.boxed header, html.boxed footer {
    max-width: 1200px; } }

/* App Content exclude Header & Footer */
@media (min-width: 576px) {
  html.boxed .app-content {
    margin: 0 auto;
    overflow: hidden; } }

@media (min-width: 576px) {
  html.boxed .app-content {
    max-width: 546px; } }

@media (min-width: 791px) {
  html.boxed .app-content {
    max-width: 770px; } }

@media (min-width: 1025px) {
  html.boxed .app-content {
    max-width: 990px; } }

@media (min-width: 1230px) {
  html.boxed .app-content {
    max-width: 1200px; } }

/* App Content with container */
@media (max-width: 1024px) {
  html.boxed .app-content .container {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1025px) {
  html.boxed .app-content .container {
    padding-left: 40px;
    padding-right: 40px; } }

/* Footer with container Element */
@media (max-width: 1024px) {
  html.boxed footer .container {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1025px) {
  html.boxed footer .container {
    padding-left: 40px;
    padding-right: 40px; } }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
/**
 * Basic typography style for copy text
 */
body {
  color: #7f7f7f;
  font-family: "Helvetica Neue"; }

/*--------------------------------------------------------------
3.0 Pre-configured styles
--------------------------------------------------------------*/
/**
* JavaScript Disabled Page
*/
.no-js #app {
  display: none; }

.app-setting {
  background-color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100vh;
  position: fixed;
  z-index: 1000001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .app-setting__wrap {
    text-align: center;
    padding: 2.1875rem;
    background-color: #fbfbfb;
    border-left: 0.1875rem solid #4B817B; }
  .app-setting__h1 {
    font-size: 2.0625rem;
    font-weight: 700;
    line-height: 42px;
    color: #333333; }
  .app-setting__text {
    font-size: 0.8125rem;
    color: #ababab; }

/**
* Preloader
*/
.preloader.is-active {
  width: 100%;
  text-align: center;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  background: white;
  display: block; }

.preloader {
  display: none; }
  .preloader__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
  .preloader__img {
    display: block; }

/*
  * Row modifier class
 */
.row--center {
  -ms-flex-pack: center;
      justify-content: center; }

/*
  * Fitvids plugin modifier class
 */
.fluid-width-video-wrapper {
  background-color: #f5f5f5; }

/*
  * Social media classes with property background-color & color.
  * 's' is a prefix and represents a social media class.
 */
/* Facebook */
.s-fb--bgcolor-hover:hover {
  background-color: #4267b2; }

.s-fb--color-hover:hover {
  color: #4267b2; }

.s-fb--color {
  color: #4267b2; }

/* Twitter */
.s-tw--bgcolor-hover:hover {
  background-color: #38A1F3; }

.s-tw--color-hover:hover {
  color: #38A1F3; }

.s-tw--color {
  color: #38A1F3; }

/* instagram */
.s-insta--bgcolor-hover:hover {
  background-color: #f77737; }

.s-insta--color-hover:hover {
  color: #f77737; }

.s-insta--color {
  color: #f77737; }

/* youtube */
.s-youtube--bgcolor-hover:hover {
  background-color: #4B817B; }

.s-youtube--color-hover:hover {
  color: #4B817B; }

.s-youtube--color {
  color: #4B817B; }

/* linkedin */
.s-linked--bgcolor-hover:hover {
  background-color: #0077B5; }

.s-linked--color-hover:hover {
  color: #0077B5; }

.s-linked--color {
  color: #0077B5; }

/* googleplus */
.s-gplus--bgcolor-hover:hover {
  background-color: #dd4b39; }

.s-gplus--color-hover:hover {
  color: #dd4b39; }

.s-gplus--color {
  color: #dd4b39; }

/* Whats App */
.s-wa--color {
  color: #25d366; }

.s-wa--color-hover:hover {
  color: #25d366; }

/*
  * Global classes you can use these classes on elements and components of your application.
  * Remember: Don't confuse your mind with utility classes & Global classes.
  * Utility class has a prefix 'u' that represents root namespace also has a sub-namespace
  * prefix. These are low-level utility classes that make it easy to build complex user interfaces.
  * Global class has a prefix 'gl' and these classes are ready-made styles that you could
  * use on different elements like span, div, h1, h3 and components like button, selectbox. scrollbar etc.
 */
/*
  * Chrome Default Style for scrollbar
 */
.gl-scroll::-webkit-scrollbar {
  height: 8px;
  width: 8px; }

.gl-scroll::-webkit-scrollbar-track {
  background: #eee; }

.gl-scroll::-webkit-scrollbar-thumb {
  background: #888; }

.gl-scroll::-webkit-scrollbar-thumb:hover {
  background: #555; }

/*
  * Global Rating Style apply on any div that has `i` element as children
 */
.gl-rating-style > i {
  margin-left: 2px;
  color: #ff9600; }
  .gl-rating-style > i:first-child {
    margin-left: 0; }

.gl-rating-style-2 > i {
  margin-left: 2px;
  color: #4B817B; }
  .gl-rating-style-2 > i:first-child {
    margin-left: 0; }

/*
  * Signup, Login Social Buttons
 */
.gl-s-api {
  width: 80%;
  margin: 0 auto; }
  .gl-s-api__btn {
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.5s linear; }
    .gl-s-api__btn:focus {
      outline: 0; }
    .gl-s-api__btn span {
      margin-left: 10px; }
  .gl-s-api__btn--fb {
    background-color: #4267b2; }
    .gl-s-api__btn--fb:hover {
      background-color: #3b5c9f; }
  .gl-s-api__btn--gplus {
    background-color: #dd4b39; }
    .gl-s-api__btn--gplus:hover {
      background-color: #d73925; }

/*
 * Inline Maker 1
  */
.gl-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center; }
  .gl-inline div {
    -ms-flex: 1;
       /* flex: 1;*/
    margin-right: 14px; }
    .gl-inline div:last-child {
      margin-right: 0; }

      /*
 * Inline Maker 1
  */
.gl-inline-t {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center; }
  .gl-inline-t div {
  
    flex: 1;
    margin-right: 14px; }
    .gl-inline-t div:last-child {
      margin-right: 0; }

/*
* Inline Maker 2
 */
.gl-l-r {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

/**
  * DOB: Date of Birth Select Box
 */
.gl-dob {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .gl-dob .select-box {
    -ms-flex: 1;
        flex: 1;
    margin-right: 8px; }
    .gl-dob .select-box:last-child {
      margin-right: 0; }

.gl-link {
  font-size: 12px;
  font-weight: 600;
  color: #4B817B;
  transition: color 0.5s linear; }
  .gl-link:hover {
    color: #4B817B; }

.gl-h1 {
  color: #333333;
  font-size: 18px;

}

.gl-text {
  display: block;
  color: #a0a0a0;
  font-size: 13px; }

.gl-label {
  margin-bottom: 8px;
  display: block;
  color: #333333;
  font-size: 13px;
  font-weight: 600; }

/**
* Global Tag
 */
.gl-tag {
  margin-right: 8px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 22px; }
  .gl-tag:last-child {
    margin-right: 0; }

/*
* Global Modal Classes
 */
.gl-modal-h1 {
  margin-bottom: 8px;
  line-height: 1;
  display: block;
  color: #333333;
  font-size: 20px;
  font-weight: 600; }

.gl-modal-text {
  color: #a0a0a0;
  font-size: 13px; }

.gl-modal-btn-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .gl-modal-btn-group button {
    margin-right: 12px; }
    .gl-modal-btn-group button:last-child {
      margin-right: 0; }

@media (max-width: 575px) {
  .gl-inline {
    display: block; }
    .gl-inline div {
      display: block;
      margin-right: 0; }
  .gl-l-r {
    display: block; }
  .gl-dob {
    display: block; }
    .gl-dob .select-box {
      width: 100%;
      margin-bottom: 8px;
      margin-right: 0; }
      .gl-dob .select-box:last-child {
        margin: 0; } }

/**
  * Default Pulse Animation
 */
@-webkit-keyframes mypulse {
  0% {
    box-shadow: 0 0 0 0 #bdc3c7; }
  100% {
    box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0); } }
@keyframes mypulse {
  0% {
    box-shadow: 0 0 0 0 #bdc3c7; }
  100% {
    box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0); } }

/*--------------------------------------------------------------
4.0 Layout Utility Styles
--------------------------------------------------------------*/
/**
 * Utility classes for colors:
 * Convey meaning through color with a handful of color utility classes.
 * Includes support for styling links too.
 */
.u-c-brand {
  color: #4B817B !important; }

.u-c-secondary {
  color: #333333 !important; }

.u-c-white {
  color: #ffffff !important; }

.u-c-black {
  color: #000000 !important; }

.u-c-grey {
  color: #7f7f7f !important; }

.u-c-silver {
  color: #a0a0a0 !important; }

/*
  * Display Utility
 */
.u-d-block {
  display: block; }

/*
  * Sizing
  * Easily make an element as wide or as tall (relative to its parent) with our width and height utilities.
 */
.u-w-100 {
  width: 100%; }

.u-h-100 {
  height: 100%; }

/**
  * Image Responsive utility classes
 */
.u-img-fluid {
  width: 100%;
  max-width: 100%;
  height: 120px; }

  .u-img-fluid-signin {
    width: 100%;
    max-width: 100%;
    height: auto; }

/*--------------------------------------------------------------
5.0 Components
--------------------------------------------------------------*/
/* Breadcrumb Component */
.breadcrumb__wrap {
  background-color: #fbfbfb;
  padding: 1.125rem;
  border-radius: 0.1875rem; }

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  word-wrap: break-word; }
  .breadcrumb__list > li {
    display: inline-block; }
    .breadcrumb__list > li > a {
      color: #a0a0a0;
      font-size: 13px;
      font-weight: 700;
      transition: color 0.5s; }
      .breadcrumb__list > li > a:hover {
        color: #333333; }
    .breadcrumb__list > li.is-marked > a {
      color: #333333; }
    .breadcrumb__list > li.has-separator:after {
      content: '/';
      margin: 0 16px; }

/* Button Component */
.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-size: 14px; }
  .btn:focus {
    outline: none; }

.btn--icon {
  border: none;
  background-color: transparent;
  padding: 0; }

.btn--e-brand {
  color: #ffffff;
  border: 1px solid transparent;
  background-color: #4B817B;
  transition: background-color .5s ease-in; }
  .btn--e-brand:hover {
    background-color: #4B817B; }

.btn--e-brand-b-2 {
  color: #ffffff;
  background-color: #4B817B;
  border: 2px solid #4B817B;
  transition: background-color 0.5s ease-in, border-color 0.5s ease-in; }
  .btn--e-brand-b-2:hover {
    background-color: #4B817B;
    border-color: #4B817B; }

.btn--e-grey-b-2 {
  color: #333333;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  transition: background-color 0.5s ease-in, border-color 0.5s ease-in; }
  .btn--e-grey-b-2:hover {
    background-color: #f2f2f2;
    border-color: #f2f2f2; }

.btn--e-secondary {
  color: #ffffff;
  border: 1px solid transparent;
  background-color: #333333;
  transition: background-color .5s ease-in; }
  .btn--e-secondary:hover {
    background-color: #303030; }

.btn--e-white-brand {
  border: 1px solid transparent;
  color: #333333;
  background-color: #ffffff;
  transition: background-color .3s linear, color .3s linear; }
  .btn--e-white-brand:hover {
    background-color: #4B817B;
    color: #ffffff; }

.btn--e-transparent-brand-b-2 {
  background-color: #4B817B !important;
  color: #ffffff;  
  transition: border-color .5s ease-in;
  height:40px;
  width:100px;
}

.btn--e-transparent-brand-b-2:hover {
    color:white; }

.btn--e-transparent-hover-brand-b-2 {
  color: #4B817B;
  border: 2px solid #4B817B;
  background-color: transparent;
  transition: background-color .1s ease-in,border-color .1s ease-in; }
  .btn--e-transparent-hover-brand-b-2:hover {
    background-color: #4B817B;
    color: #ffffff; }

.btn--e-transparent-secondary-b-2 {
  color: #333333;
  border: 2px solid #333333;
  background-color: transparent;
  transition: border-color .5s ease-in; }
  .btn--e-transparent-secondary-b-2:hover {
    border-color: #303030; }

.btn--e-transparent-platinum-b-2 {
  color: #333333;
  border: 2px solid #e5e5e5;
  background-color: transparent;
  transition: border-color 0.5s linear; }
  .btn--e-transparent-platinum-b-2:hover {
    border-color: #4B817B; }

.btn--e-white-brand-shadow {
  border: 1px solid #eee;
  box-shadow: 1px 2px 8px 0 rgba(36, 37, 38, 0.08);
  background-color: #ffffff;
  color: #333333;
  transition: background-color .3s linear, border-color .3s linear,color .3s linear; }
  .btn--e-white-brand-shadow:hover {
    border-color: #4B817B;
    background-color: #4B817B;
    color: #ffffff; }

.btn--e-brand-shadow {
  border: 1px solid #4B817B;
  box-shadow: 1px 2px 8px 0 rgba(36, 37, 38, 0.08);
  background-color: #4B817B;
  color: #ffffff;
  transition: background-color .3s linear, border-color .3s linear; }
  .btn--e-brand-shadow:hover {
    border-color: #4B817B;
    background-color: #4B817B; }

/* Countdown Component */
.countdown--style-special {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center; }
  .countdown--style-special .countdown__content {
    margin: 0 6px 10px;
    text-align: center;
    padding: 5px 24px;
    background-color: rgba(255, 255, 255, 0.98); }
  .countdown--style-special .countdown__value {
    font-size: 35px;
    font-weight: 600;
    display: block;
    color: #333333; }
  .countdown--style-special .countdown__key {
    font-size: 12px;
    font-weight: 600;
    display: block;
    color: #4B817B; }

.countdown--style-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center; }
  .countdown--style-banner .countdown__content {
    margin: 0 10px 10px;
    text-align: center;
    padding: 5px 24px;
    background-color: #333333; }
  .countdown--style-banner .countdown__value {
    font-size: 48px;
    font-weight: 600;
    display: block;
    color: #ffffff; }
  .countdown--style-banner .countdown__key {
    font-size: 12px;
    font-weight: 600;
    display: block;
    color: #ffffff; }

.countdown--style-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .countdown--style-section .countdown__content {
    margin: 18px 20px 20px 0;
    padding: 8px 22px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.98); }
  .countdown--style-section .countdown__value {
    font-size: 26px;
    font-weight: 600;
    display: block;
    color: #333333; }
  .countdown--style-section .countdown__key {
    font-size: 10px;
    font-weight: 600;
    display: block;
    color: #4B817B; }

/* Input-Counter Component */
.input-counter {
  position: relative;
  display: inline-block;
  max-width: 132px;
  min-width: 132px; }
  .input-counter__text {
    border-radius: 25px;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center; }
    .input-counter__text:focus {
      outline: 0; }
  .input-counter--text-primary-style {
    color: #333333;
    transition: all 0.6s linear;
    border: 2px solid transparent;
    background-color: #f1f1f1; }
    .input-counter--text-primary-style:focus {
      background-color: transparent;
      border-color: #4B817B; }
  .input-counter__minus, .input-counter__plus {
    top: 0;
    display: inline-block;
    font-size: 10px;
    cursor: pointer;
    position: absolute;
    width: 50px;
    line-height: 50px;
    height: 100%;
    text-align: center;
    color: #7f7f7f;
    transition: color 0.5s; }
    .input-counter__minus:hover, .input-counter__plus:hover {
      color: #333333; }
  .input-counter__minus {
    left: 0; }
  .input-counter__plus {
    right: 0; }

/* Input Text Component */
.input-text {
  font-size: 12px;
  background-clip: padding-box;
  padding: 0 18px;
  height: 40px; }
  .input-text--border-radius {
    border-radius: 25px; }
  .input-text--primary-style {
    color: #333333;
    transition: all 0.6s linear;
    border: 1px solid #CCCCCC;
    /* border: 2px solid transparent;
    background-color: #f1f1f1; } */
  }
    .input-text--primary-style:focus {
     /* background-color: transparent;
      border-color: #4B817B;*/ } 
  .input-text--style-1 {
    color: #5c636c;
    transition: all 0.6s linear;
    border: 1px solid transparent;
    background-color: #f1f1f1; }
    .input-text--style-1:focus {
      box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
      background-color: transparent;
      border-color: #eee; }
  .input-text--style-2 {
    color: #5c636c;
    border: 1px solid transparent;
    background-color: #f1f1f1;
    transition: all 0.6s linear; }
    .input-text--style-2:focus {
      background-color: #ffffff; }
  .input-text--only-white {
    border: 1px solid transparent;
    color: #333333;
    background-color: #ffffff; }
  .input-text:focus {
    outline: 0; }

.input-text:disabled {
  background-color: #cecece; }

input::-ms-clear {
  display: none; }

/* Preload Aspect Ratio Component */
/*
  * Example 1 For Square: <a class="aspect aspect--bg-grey aspect--square u-d-block"><img src="a.jpg" class="aspect__img" alt=""></a>
  * Example 2 For Non Square: <div class="aspect aspect--bg-grey aspect--1286-890"><img src="a.jpg" class="aspect__img" alt=""></div>
 */
/*
  * Some Points to use Aspect Ratio Component classes:
  * Make sure the element on which it adds, it would be a block or inline-block element,
  * if it is not then you could add utility class 'u-d-block', 'u-d-inline-block' or you
  * could directly target that element with CSS to make inline or block.
  * By default '.aspect--square' or '.aspect--16:9: resolution' class takes height according to
  * the height of the child image element.
  * But if the parent element is a flex element then aspect ratio technique doesn't work because
  * '.aspect--square' or '.aspect--16:9: resolution' contains padding top/bottom property with a
  * percentage value.
  * There are also some cases you do not want to have '.aspect--square' or '.aspect--16:9: resolution'
  * class to take width & height that match with child image element.
  * Then you could append CSS class or directly target that parent element with CSS and
  * set your custom width & height.
  * If the image has aspect ratio square, i.e. 4:3 then you would add class '.aspect--square'
  * on the element. This class has a padding-bottom:100% property.
  * 100% means to take the entire height of the image.
  * If the image doesn't have aspect ratio square then to make a custom class
  * like '.aspect--imageWidth-imageHeight' and use ready-made sass function() nonsquare(imageWidth,imageHeight)
  * that returns padding-bottom property with the value calculated according to image resolution.
  * You could also change the background-color of placeholder according to your own choice.
  * By default, only 2 classes are generated.
 */
.aspect {
  position: relative; }

.aspect--bg-grey {
  background-color: #f5f5f5; }

.aspect--bg-grey-fb {
  background-color: #fbfbfb; }

.aspect--square {
  padding-bottom: 120%; }

/*
  * Add this class inside '.aspect' child image element. If you want to make an image responsive then
  * you can use utility u-img-fluid class.
 */
.aspect__img {
  position: absolute;
  width: 100%;
  height: 100%; }

/* Product Component */


.product-o--hover-off {
  box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.1); }

.product-o--radius {
  border-radius: 14px; }

.product-o--hover-on {
  transition: all 0.4s ease-in-out; }
  .product-o--hover-on:hover {
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.1); }

.product-o:hover .product-o__wrap:before {
  opacity: 1; }

.product-o:hover .product-o__action-wrap {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1); }

.product-o:hover .product-o__action-list > li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0); }

.product-o__wrap {
  position: relative; }
  .product-o__wrap:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.product-o__action-wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%) scale(0.8);
          transform: translateY(-50%) scale(0.8);
  transition: all 0.2s ease 0s; }

.product-o__action-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none; }
  .product-o__action-list > li {
    margin: 0 4px 6px;
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    transition: all 0.3s ease 0.1s; }
    .product-o__action-list > li > a {
      display: block;
      width: 35px;
      text-align: center;
      border-radius: 50%;
      height: 35px;
      line-height: 35px;
      background-color: rgba(255, 255, 255, 0.25);
      color: #ffffff;
      font-size: 12px;
      transition: all 0.3s ease 0s; }
      .product-o__action-list > li > a:hover {
        background-color: #333333;
        color: #ffffff; }

.product-o__category {
  display: block;
  margin-top: 4px; }
  .product-o__category > a {
    color: #a0a0a0;
    transition: color 0.5s;
    font-size: 12px; }
    .product-o__category > a:hover {
      color: #4B817B; }

.product-o__name > a {
  color: #000000;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  transition: color 0.5s;
  text-transform: capitalize;
  font-style: normal;
  
}
  .product-o__name > a:hover {
    color: #4B817B; }

.product-o__rating {
  margin-bottom: 4px; }
  .product-o__rating i {
    font-size: 12px; }

.product-o__review {
  margin-left: 4px;
  font-size: 12px;
  color: rgb(0, 113, 133)}

.product-o__price {
  display: block;
  color: #333333;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px; 
   font-style: normal;
}

  .product-o__free {
    display: block;
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px; 
    text-transform: capitalize;
    font-style: normal;
  }

.product-o__discount {
  font-weight: 600;
  margin-left: 30px;
  color: #333333;
  font-size: 14px;
  text-decoration: line-through; }

.product-o__countdown-wrap {
  margin-top: 16px; }

.product-o__special-count-wrap {
  position: absolute;
  width: 100%;
  bottom: 20px; }

.x-product {
  padding: 20px;
  border-radius: 6px;
  transition: -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06); }
  .x-product .row {
    -ms-flex-align: center;
        align-items: center; }
  .x-product__feature-list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .x-product:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }

.feature {
  margin-bottom: 20px; }
  .feature__name {
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    display: block; }
  .feature__value {
    color: #7f7f7f;
    font-size: 12px;
    display: block; }

.product-l {
  display: -ms-flexbox;
  display: flex; }
  .product-l__img-wrap {
    margin-right: 20px; }
  .product-l__rating i {
    font-size: 12px; }
  .product-l__link {
    width: 110px;
    height: 110px; }
  .product-l__category {
    display: block; }
    .product-l__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .product-l__category > a:hover {
        color: #4B817B; }
  .product-l__name {
    display: block;
    margin-bottom: 4px; }
    .product-l__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .product-l__name > a:hover {
        color: #4B817B; }
  .product-l__price {
    display: block;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .product-l__discount {
    font-weight: 600;
    margin-left: 15px;
    color: #4B817B;
    font-size: 14px;
    text-decoration: line-through; }

.product-o2 {
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06); }
  .product-o2__wrap {
    position: relative;
    overflow: hidden; }
  .product-o2__action-wrap {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: all 0.6s linear;
    left: 20px;
    top: 20px; }
  .product-o2__action-list {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none; }
    .product-o2__action-list > li {
      margin-bottom: 6px; }
      .product-o2__action-list > li > a {
        display: inline-block;
        width: 35px;
        text-align: center;
        border-radius: 50%;
        height: 35px;
        line-height: 35px;
        background-color: #4B817B;
        color: #ffffff;
        font-size: 12px;
        transition: all 0.3s ease 0.1s; }
        .product-o2__action-list > li > a:hover {
          background-color: #ffffff;
          color: #4B817B; }
      .product-o2__action-list > li:last-child {
        margin-bottom: 0; }
  .product-o2__countdown-wrap {
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 100%; }
  .product-o2__img {
    transition: all 0.6s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1); }
  .product-o2__content {
    padding: 10px; }
  .product-o2__category {
    display: block;
    margin-top: 4px; }
    .product-o2__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .product-o2__category > a:hover {
        color: #4B817B; }
  .product-o2__name {
    display: block; }
    .product-o2__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .product-o2__name > a:hover {
        color: #4B817B; }
  .product-o2__rating {
    margin-bottom: 4px; }
    .product-o2__rating i {
      font-size: 12px; }
  .product-o2__review {
    margin-left: 4px;
    font-size: 12px;
    color: #a0a0a0; }
  .product-o2__price {
    display: block;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .product-o2__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #333333;
    font-size: 14px;
    text-decoration: line-through; }

.product-o2:hover .product-o2__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.product-o2:hover .product-o2__action-wrap {
  opacity: 1; }

.product-r {
  border-radius: 15px;
  overflow: hidden;
  background-color: #ffffff;
  transition: -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 2px 2px 8px 3px rgba(36, 37, 38, 0.08); }
  .product-r__container {
    position: relative; }
  .product-r__ribbon-wrap {
    position: absolute;
    top: 0;
    right: 25px; }
  .product-r__action-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
    transition: all 0.2s ease 0s; }
  .product-r__action-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none; }
    .product-r__action-list > li {
      margin: 0 4px 6px;
      opacity: 0;
      -webkit-transform: translateY(50%);
              transform: translateY(50%);
      transition: all 0.3s ease 0.1s; }
      .product-r__action-list > li > a {
        display: block;
        width: 35px;
        text-align: center;
        border-radius: 50%;
        height: 35px;
        line-height: 35px;
        background-color: #ffffff;
        color: #4B817B;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
        font-size: 12px;
        transition: all 0.3s ease 0s; }
        .product-r__action-list > li > a:hover {
          background-color: #ffffff;
          color: #4B817B; }
  .product-r__info-wrap {
    padding: 14px; }
  .product-r__category {
    display: block;
    margin-bottom: 2px; }
    .product-r__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .product-r__category > a:hover {
        color: #4B817B; }
  .product-r__n-p-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 6px; }
  .product-r__name, .product-r__price {
    -ms-flex: 0 1 auto; }
  .product-r__name {
    display: block; }
    .product-r__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .product-r__name > a:hover {
        color: #4B817B; }
  .product-r__price {
    display: block;
    font-weight: 600;
    color: #4B817B;
    font-size: 16px; }
  .product-r__description {
    margin-bottom: 6px;
    display: block;
    color: #7f7f7f;
    font-size: 12px; }
  .product-r:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
    .product-r:hover .product-r__action-wrap {
      opacity: 1;
      -webkit-transform: translateY(-50%) scale(1);
              transform: translateY(-50%) scale(1); }
    .product-r:hover .product-r__action-list > li {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0); }

.product-bs {
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out; }
  .product-bs__container {
    padding: 20px; }
  .product-bs__wrap {
    position: relative;
    margin-bottom: 4px; }
  .product-bs__action-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
    transition: all 0.2s ease 0s; }
  .product-bs__action-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none; }
    .product-bs__action-list > li {
      margin: 0 4px 6px;
      opacity: 0;
      -webkit-transform: translateY(50%);
              transform: translateY(50%);
      transition: all 0.3s ease 0.1s; }
      .product-bs__action-list > li > a {
        display: block;
        width: 35px;
        text-align: center;
        border-radius: 50%;
        height: 35px;
        line-height: 35px;
        background-color: #4B817B;
        color: #ffffff;
        font-size: 12px;
        transition: all 0.3s ease 0s; }
        .product-bs__action-list > li > a:hover {
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
          background-color: #ffffff;
          color: #4B817B; }
  .product-bs__category {
    display: block; }
    .product-bs__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .product-bs__category > a:hover {
        color: #4B817B; }
  .product-bs__name {
    display: block; }
    .product-bs__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .product-bs__name > a:hover {
        color: #4B817B; }
  .product-bs__rating {
    margin-bottom: 4px; }
    .product-bs__rating i {
      font-size: 12px; }
  .product-bs__review {
    margin-left: 4px;
    font-size: 12px;
    color: #a0a0a0; }
  .product-bs__price {
    display: block;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .product-bs__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #333333;
    font-size: 14px;
    text-decoration: line-through; }

.product-bs:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px); }
  .product-bs:hover .product-bs__action-wrap {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1); }
  .product-bs:hover .product-bs__action-list > li {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

.product-short {
  background-color: #fbfbfb;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out; }
  .product-short:hover {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px); }
  .product-short__container {
    padding: 30px; }
  .product-short__info {
    margin-top: 14px; }
  .product-short__price {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4B817B; }
  .product-short__name {
    display: block; }
    .product-short__name > a {
      font-size: 14px;
      font-weight: 600;
      color: #333333;
      transition: color 0.5s; }
      .product-short__name > a:hover {
        color: #4B817B; }
  .product-short__category {
    display: block; }
    .product-short__category > a {
      font-size: 11px;
      color: #a0a0a0;
      transition: color 0.5s; }
      .product-short__category > a:hover {
        color: #4B817B; }

/* Checkbox, Radio Component */
/*
  * Remember these are very important styles and make sure input checkbox always has a greater z-index from label
  * and any other div's.
  * Remember these styles make checkbox horizontal center, and when you click out of the boundary region
  * Behind the scenes checkbox has a opacity 0 but it will be checked.
 */
.check-box [type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 16px;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer; }

.radio-box [type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 16px;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer; }

.check-box {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  line-height: 1; }
  .check-box__label {
    position: initial;
    display: inline-block;
    /* font-weight: 600; */
    font-size: 13px;
    color: #333333;
    margin-left: 24px;
    white-space: normal; }
    .check-box__label:before, .check-box__label:after {
      content: '';
      width: 18px;
      height: 18px;
      display: block;
      border: 2px solid transparent;
      z-index: 0;
      transition: all .5s ease;
      position: absolute;
      left: 0;
      top: 0; }
    .check-box__label:before {
      background-color: #f1f1f1; }
    .check-box__label:after {
      -webkit-transform: scale(0.6);
              transform: scale(0.6); }

.check-box input:checked ~ .check-box__state label:before {
  -webkit-animation: mypulse 1s;
          animation: mypulse 1s; }

.check-box input:checked ~ .check-box__state.check-box__state--primary label:before {
  border-color: #4B817B;
  background-color: #ffffff; }

.check-box input:checked ~ .check-box__state.check-box__state--primary label:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  background-color: #4B817B; }

.radio-box {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  line-height: 1; }
  .radio-box__label {
    position: initial;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #999;
    white-space: normal;
    margin-left: 24px; }
    .radio-box__label:before, .radio-box__label:after {
      content: '';
      width: 18px;
      height: 18px;
      display: block;
      border-radius: 50%;
      border: 2px solid transparent;
      z-index: 0;
      transition: all .5s ease;
      position: absolute;
      left: 0;
      top: 0; }
    .radio-box__label:before {
      background-color: #f1f1f1; }
    .radio-box__label:after {
      -webkit-transform: scale(0.6);
              transform: scale(0.6); }

.radio-box input:checked ~ .radio-box__state label:before {
  -webkit-animation: mypulse 1s;
          animation: mypulse 1s; }

.radio-box input:checked ~ .radio-box__state.radio-box__state--primary label:before {
  border-color: #4B817B;
  background-color: #ffffff; }

.radio-box input:checked ~ .radio-box__state.radio-box__state--primary label:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  background-color: #4B817B; }

/* Select-Box Component */
.select-box {
  display: block;
  max-width: 100%;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px 11px 15px;
  cursor: pointer;
  line-height: 1.2; }
  .select-box--primary-style {
    color: #333333;
    border: 1px solid #CCCCCC;
    /* border: 2px solid transparent;
    background-color: #f1f1f1; } */
  }
  .select-box--transparent-b-2 {
    color: #333333;
    border: 1px solid transparent;
    background-color: transparent; }
  .select-box:focus {
    outline: 0; }
  .select-box::-ms-expand {
    background-color: transparent;
    border: 0; }

.select-box:disabled {
  background-color: #cecece; }

.select-box--primary-style:focus::-ms-value {
  color: #333333;
  background-color: #f1f1f1; }

.select-box--transparent-b-2:focus::-ms-value {
  color: #333333;
  background-color: #ffffff; }

/* Textarea Component */
.text-area {
  height: 100%;
  font-size: 12px;
  font-weight: 600;
  padding: 18px;
  resize: vertical; }
  .text-area--border-radius {
    border-radius: 25px; }
  .text-area--primary-style {
    color: #5c636c;
    transition: all 0.6s linear;
    border: 2px solid transparent;
    background-color: #f1f1f1; }
    .text-area--primary-style:focus {
      background-color: transparent;
      border-color: #4B817B; }
  .text-area:focus {
    outline: 0; }

/* Modal Component */
.dismiss-button {
  z-index: 2;
  position: absolute;
  top: 0;
  right: -50px;
  background-color: transparent;
  padding: 8px;
  font-size: 24px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  transition: color 110ms ease-in-out; }
  .dismiss-button:hover {
    color: #4B817B; }

#dash-newsletter .modal-dialog {
  width: 100%;
  max-width: 450px; }

#dash-newsletter .modal-body {
  padding: 1.875rem; }

.d-modal__form {
  width: 100%; }
  .d-modal__form .btn {
    padding: 14px 46px;
    font-size: 12px;
    font-weight: 600; }
  .d-modal__form a {
    font-size: 15px;
    font-weight: 600;
    color: #4B817B;
    transition: color 110ms ease-in-out; }
    .d-modal__form a:hover {
      color: #7f7f7f; }

#edit-ship-address .modal-dialog, #add-ship-address .modal-dialog {
  width: 100%;
  max-width: 750px; }

#edit-ship-address .modal-body, #add-ship-address .modal-body {
  padding: 1.875rem; }

.checkout-modal1__form, .checkout-modal2__form {
  width: 100%; }
  .checkout-modal1__form .btn, .checkout-modal1__form .input-text, .checkout-modal1__form .select-box, .checkout-modal2__form .btn, .checkout-modal2__form .input-text, .checkout-modal2__form .select-box {
    border-radius: 6px; }
  .checkout-modal1__form .input-text, .checkout-modal1__form .select-box, .checkout-modal2__form .input-text, .checkout-modal2__form .select-box {
    width: 100%; }
  .checkout-modal1__form .btn, .checkout-modal2__form .btn {
    font-weight: 600;
    padding: 16px 46px; }

#add-to-cart .modal-dialog {
  width: 100%;
  max-width: 550px; }

#add-to-cart .row {
  -ms-flex-align: center;
      align-items: center; }

.success {
  text-align: center; }
  .success__text-wrap {
    margin-bottom: 18px; }
    .success__text-wrap i {
      margin-right: 8px;
      font-size: 16px;
      color: #4B817B; }
    .success__text-wrap span {
      font-weight: 700;
      font-size: 14px;
      color: #333333; }
  .success__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px; }
    .success__img-wrap img {
      min-width: 120px; }
  .success__name {
    display: block;
    margin: 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333333; }
  .success__quantity {
    margin-bottom: 4px;
    display: block;
    font-size: 12px;
    color: #a0a0a0; }
  .success__price {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #4B817B; }

.s-option {
  text-align: center; }
  .s-option__text {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    color: #a0a0a0; }
  .s-option__link-box {
    width: 85%;
    margin: 0 auto; }
  .s-option__link {
    margin-bottom: 20px;
    display: block;
    padding: 12px 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 13px; }

#quick-look .modal-dialog {
  width: 100%;
  max-width: 991px; }

#quick-look .modal-body {
  padding: 1.875rem; }

.new-l--center {
  text-align: center; }

#newsletter-modal .modal-dialog {
  width: 100%;
  max-width: 800px; }

#newsletter-modal .modal-body {
  padding: 0; }

#newsletter-modal .new-l__dismiss {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: transparent;
  padding: 8px;
  font-size: 16px;
  border: 0;
  color: #515151;
  cursor: pointer; }

#newsletter-modal .row {
  -ms-flex-align: center;
      align-items: center; }

.new-l__img-wrap {
  background-color: #f5f5f5;
  position: relative; }
  .new-l__img-wrap:before {
    transition: all 0.6s linear;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4); }

.new-l__img-wrap:hover:before {
  opacity: 1; }

.new-l__h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #333333; }

.new-l__p1 {
  font-size: 14px;
  line-height: 21px; }

.new-l__p2 {
  font-size: 12px;
  color: #a0a0a0; }

.new-l__link {
  font-size: 13px;
  color: #7f7f7f;
  transition: all .3s; }
  .new-l__link:hover {
    color: #4B817B;
    text-decoration: underline; }

.new-l__form {
  width: 100%; }
  .new-l__form .btn {
    width: 100%; }
  .new-l__form .btn {
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600; }

.news-l__input {
  width: 100%;
  font-size: 12px;
  padding: 0 18px;
  height: 40px;
  color: #333333;
  transition: all 0.6s linear;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background-color: #ffffff; }
  .news-l__input:focus {
    border-color: #4B817B; }
  .news-l__input:focus {
    outline: 0; }
  .news-l__input::-ms-clear {
    display: none; }

@media (max-width: 991px) {
  .new-l__col-1 {
    display: none; } }

/*--------------------------------------------------------------
6.0 Header
--------------------------------------------------------------*/
.header-wrapper {
  position: relative; }

.header--style-1 {
  background-color: #ffffff; }

.header--style-2 {
  background-color: #242424; }

.header--style-3 {
  position: absolute;
  width: 100%;
  background-color: transparent;
  z-index: 2; }

.header--box-shadow {
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.07); }

/* 6.1 Primary Nav */
.primary-nav-wrapper--border {
  border-bottom: 1px solid #f8f8f8; }

.primary-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  height: 80px;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }

.main-logo {
  display: inline-block;
  vertical-align: top; }
  .main-logo img {
    display: block; }

.main-form {
  position: relative;
  width: 90%; 
  padding: 12px;
}

#main-search {
  padding: 0 36px 0 40px;
  width: 100%; }

.main-search-button {
  position: absolute;
  top: 55%;
  left: 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px; 
  color: white;
}

.main-search-button-drawer {
  position: absolute;
  top: 55%;
  left: 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px; 
}

.main-search-button-drawer-cd {
  position: absolute;
  top: 33px;
  left: 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px; 
}

/* 6.2 Secondary Nav */
.secondary-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  /*height: 80px;*/
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }

.has-superscript {
  position: relative; }
  .has-superscript:before {
    display: block;
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 10px;
    padding: 1px 7px;
    color: #ffffff; }
  .has-superscript--discount20:before {
    content: '-20% OFF'; }
  .has-superscript--new:before {
    content: 'NEW'; }
  .has-superscript--hot:before {
    content: 'HOT'; }
  .has-superscript--sale:before {
    content: 'SALE'; }
  .has-superscript--purple:before {
    background-color: #8d54ec; }
  .has-superscript--orange:before {
    background-color: #4B817B; }
  .has-superscript--mud:before {
    background-color: #878a85; }
  .has-superscript--ruby:before {
    background-color: #ee1a3d; }

@media (max-width: 991px) {
  .header--style-3 {
    position: relative;
    background-color: #242424; } }

/*--------------------------------------------------------------
7.0 Footer
--------------------------------------------------------------*/
/* 7.1 Outer-Footer */
.outer-footer {
  padding: 80px 0;
  background-color: #000000; }
  .outer-footer__content-title {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px; }
  .outer-footer__logo-wrap {
    margin-bottom: 4px; }
  .outer-footer__text-wrap {
    margin-bottom: 6px; }
    .outer-footer__text-wrap > i {
      margin-right: 6px;
      font-size: 14px;
      color: #ffffff; }
    .outer-footer__text-wrap span {
      font-size: 14px;
      color: #ffffff; }
  .outer-footer__social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .outer-footer__social ul > li {
      margin-right: 16px; }
      .outer-footer__social ul > li > a {
        font-size: 14px;
        color: #ffffff;
        transition: color 0.6s; }
      .outer-footer__social ul > li:last-child {
        margin-right: 0; }
  .outer-footer__list-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .outer-footer__list-wrap ul > li {
      margin-bottom: 8px; }
      .outer-footer__list-wrap ul > li > a {
        transition: color 0.6s;
        color: #ffffff;
        font-size: 14px; }
        .outer-footer__list-wrap ul > li > a:hover {
          color: #4B817B; }
      .outer-footer__list-wrap ul > li:last-child {
        margin-bottom: 0; }

.newsletter__group {
  position: relative; }

.newsletter__btn {
  position: absolute;
  padding: 14px;
  right: 0;
  font-weight: 600;
  font-size: 12px;
  top: 50%;
  border: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.newsletter__text {
  margin-top: 10px;
  display: block;
  color: #ffffff;
  font-size: 14px; }

.newsletter__radio {
  margin-right: 20px; }
  .newsletter__radio .radio-box__label {
    color: #ffffff; }
  .newsletter__radio:last-child {
    margin-right: 0; }

#newsletter {
  width: 100%;
  padding: 0 100px 0 18px; }

/* 7.3 Lower-Footer */
.lower-footer {
  background-color: #4B817B;
  padding: 20px 0; }
  .lower-footer__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center; }
  .lower-footer__copyright, .lower-footer__payment {
    -ms-flex: 0 1 auto; }
  .lower-footer__copyright span {
    font-size: 13px;
    color: #ffffff; }
  .lower-footer__copyright a {
    margin: 0 1px;
    font-size: 14px;
    line-height: 17px;
    transition: color 0.6s;
    color: white;
    font-weight: normal;
    font-style: normal;
    text-decoration-line: underline; 
   }
    .lower-footer__copyright a:hover {
      color: #4B817B; }
  .lower-footer__img img {
    display: block; }
  .lower-footer__payment ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .lower-footer__payment ul > li {
      margin-right: 16px; }
      .lower-footer__payment ul > li > i {
        font-size: 25px;
        color: #ffffff; }
      .lower-footer__payment ul > li:last-child {
        margin-right: 0; }

@media (max-width: 767px) {
  .lower-footer__content {
    -ms-flex-pack: center;
        justify-content: center; }
  .lower-footer__copyright {
    margin-bottom: 8px; } }

/*--------------------------------------------------------------
8.0 Index-Pages:
--------------------------------------------------------------*/
.fixed-list {
  position: fixed;
  top: 50%;
  right: 10px;
  z-index: 99;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  .fixed-list > ul {
    display: block;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border-radius: 1.5625rem; }
    .fixed-list > ul > li > a {
      color: #333333;
      text-align: center;
      font-size: 14px;
      padding: 14px; }
      .fixed-list > ul > li > a.active {
        background-color: #4B817B;
        color: #ffffff; }
    .fixed-list > ul > li:first-child > a {
      border-top-left-radius: 1.5625rem;
      border-top-right-radius: 1.5625rem; }
    .fixed-list > ul > li:last-child > a {
      border-bottom-left-radius: 1.5625rem;
      border-bottom-right-radius: 1.5625rem; }

.bg-anti-flash-white {
  background-color: #f3f3f3; }

.white-container {
  width: 1220px;
  background-color: #ffffff;
  max-width: 100%;
  margin: 0 auto; }

.section__intro {
  position: relative; }

.block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 4px 0;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #e7e7e7; }
  .block__title {
    color: #333333;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px; }

.category-o {
  position: relative;
  border: 2px dashed #f5f5f5;
  border-radius: 50%;
  overflow: hidden; }
  .category-o__img-wrap {
    border-radius: 50%; }
  .category-o__img {
    border-radius: 50%;
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: all 0.6s linear; }
  .category-o__info {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    bottom: 40px; }
  .category-o__shop-now {
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
    font-size: 13px;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block; }
  .category-o:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s linear;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0; }

.category-o:hover:before {
  opacity: 1; }

.category-o:hover .category-o__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.tab-list {
  margin: 0;
  padding: 0; }
  .tab-list > li {
    margin-right: 8px;
    margin-bottom: 12px; }
    .tab-list > li > a {
      border-radius: 20px;
      font-weight: 600;
      font-size: 13px;
      padding: 10px 16px;
      color: #333333; }
      .tab-list > li > a.active {
        border-color: #4B817B;
        background-color: #4B817B;
        color: #ffffff; }
    .tab-list > li:last-child {
      margin-right: 0; }

.promotion-o {
  position: relative;
  display: block;
  transition: -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .promotion-o__content {
    position: absolute;
    width: 100%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    text-align: center; }
  .promotion-o__link {
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.07);
    font-size: 13px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all .3s linear;
    display: inline-block; }

.promotion-o:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px); }

.i3-banner {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer; }
  .i3-banner:before {
    transition: all 0.6s linear;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .i3-banner__img {
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: all 0.6s ease-in-out; }

.i3-banner:hover:before {
  opacity: 1; }

.i3-banner:hover .i3-banner__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.aspect--1048-334 {
  padding-bottom: 31.87023%; }

.section__text-wrap {
  text-align: center; }

.section__content {
  position: relative; }



.section__span {
  font-size: 13px;
  display: block; }

.collection {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer; }
  .collection:before {
    transition: all 0.6s linear;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .collection__img {
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: all 0.6s ease-in-out; }

.collection:hover:before {
  opacity: 1; }

.collection:hover .collection__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); }

.aspect--1286-890 {
  padding-bottom: 69.20684%; }

.filter-category-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center; }

.filter__btn--style-1 {
  position: relative;
  transition: all 0.3s ease 0s;
  display: block;
  border: none;
  padding: 18px;
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  background-color: transparent; }
  .filter__btn--style-1:before {
    content: '';
    width: 0;
    height: 2px;
    background-color: #4B817B;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    transition: all 0.2s ease 0s; }
  .filter__btn--style-1:hover {
    color: #4B817B; }
    .filter__btn--style-1:hover:before {
      width: 100%; }
  .filter__btn--style-1.js-checked {
    color: #4B817B; }
    .filter__btn--style-1.js-checked:before {
      width: 100%; }

.filter__btn--style-2 {
  transition: all 0.3s ease 0s;
  display: block;
  padding: 15px 27px;
  margin: 0 8px 10px;
  border: 2px solid #f7f7f9;
  font-size: 12px;
  color: #7f7f7f;
  background-color: transparent; }
  .filter__btn--style-2:hover {
    border-color: #4B817B;
    color: #333333; }
  .filter__btn--style-2.js-checked {
    border-color: #4B817B;
    color: #333333; }

.load-more {
  text-align: center;
  padding: 40px 0; }
  .load-more > button {
    padding: 22px 56px;
    border: none;
    border-radius: 5px;
    font-size: 13px; }

.banner-bg {
  padding: 7em 0;
  position: relative;
  /* background: #f5f5f5 url(../images/banners/banner-bg.jpg) repeat fixed center center; */
  background-size: cover; }
  .banner-bg__wrap {
    text-align: center; }
  .banner-bg__text-block {
    display: block; }
  .banner-bg__text-1 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 58px; }
  .banner-bg__text-2 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 31px; }
  .banner-bg__text-3 {
    margin-bottom: 18px;
    font-size: 14px; }
  .banner-bg__shop-now {
    display: inline-block;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 40px;
    font-size: 13px; }

.promotion {
  display: block;
  position: relative; }
  .promotion:before {
    transition: all 0.3s linear;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0; }
  .promotion__content {
    position: absolute;
    width: 100%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    text-align: center; }
  .promotion__text-wrap {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 15px;
    transition: all 0.5s ease-in-out; }
  .promotion__text-1 {
    font-size: 14px; }
  .promotion__text-2 {
    font-size: 20px;
    font-weight: 600; }

.promotion:hover:before {
  opacity: 1; }

.promotion:hover .promotion__text-wrap {
  background-color: white; }

.column-product__title {
  display: block;
  font-size: 18px;
  font-weight: 600; }

.column-product__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.column-product__item {
  margin-bottom: 30px; }

.column-product__item:last-child {
  margin-bottom: 0; }

.service {
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  padding: 23px;
  box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08);
  border: 2px solid #f5f5f5; }
  .service__icon, .service__info-wrap {
    -ms-flex: 0 1 auto; }
  .service__icon {
    margin-right: 20px; }
    .service__icon > i {
      color: #4B817B;
      font-size: 30px; }
  .service__info-text-1 {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333333;
    font-weight: 600; }
  .service__info-text-2 {
    font-size: 13px;
    display: block;
    color: #7f7f7f; }

.new-brand-slider {
  position: relative; }

#brand-slider {
  position: static; }

@media (max-width: 991px) {
  .block {
    display: block; }
  .success__img-wrap, .success__info-wrap {
    display: none; } }

/*--------------------------------------------------------------
9.0 About-Page
--------------------------------------------------------------*/
.about {
  background-color: #ffffff;
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.07); }
  .about__container {
    padding: 60px; }
  .about__info {
    text-align: center; }
  .about__h2 {
    color: #333333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 24px; }
  .about .about__p-wrap {
    position: relative;
    margin-bottom: 20px; }
    .about .about__p-wrap:before, .about .about__p-wrap:after {
      content: '';
      display: block;
      width: 70px;
      position: absolute;
      border: solid #4B817B; }
    .about .about__p-wrap:before {
      top: -10px;
      left: -8px;
      border-top-width: 1px; }
    .about .about__p-wrap:after {
      bottom: -10px;
      right: -8px;
      border-bottom-width: 1px; }
  .about__p {
    color: #333333; }
  .about__link {
    display: inline-block;
    padding: 12px 42px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 12px; }

.team-member {
  background-color: #fbfbfb;
  transition: -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, -webkit-transform 0.7s ease-in-out; }
  .team-member__wrap {
    position: relative; }
  .team-member__social-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
    transition: all 0.2s ease 0s; }
  .team-member__social-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none; }
    .team-member__social-list > li {
      margin: 0 4px 6px;
      opacity: 0;
      -webkit-transform: translateY(50%);
              transform: translateY(50%);
      transition: all 0.3s ease 0.1s; }
      .team-member__social-list > li > a {
        display: block;
        width: 35px;
        text-align: center;
        border-radius: 50%;
        height: 35px;
        line-height: 35px;
        background-color: #ffffff;
        color: #4B817B;
        font-size: 12px;
        transition: all 0.3s ease 0s; }
        .team-member__social-list > li > a:hover {
          color: #ffffff; }
  .team-member__info {
    padding: 16px; }
  .team-member__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333; }
  .team-member__job-title {
    display: block;
    font-size: 11px;
    color: #a0a0a0; }

.team-member:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px); }
  .team-member:hover .team-member__social-wrap {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1); }
  .team-member:hover .team-member__social-list > li {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

.testimonial {
  text-align: center; }
  .testimonial__img-wrap {
    margin-bottom: 16px; }
  .testimonial__double-quote {
    display: block; }
    .testimonial__double-quote i {
      font-size: 28px;
      color: #333333; }
  .testimonial__block-quote {
    margin: 0 auto;
    width: 70%;
    padding: 10px 20px; }
    .testimonial__block-quote p {
      font-size: 14px;
      font-weight: 600;
      color: #333333; }
  .testimonial__author {
    display: block;
    font-size: 13px;
    color: #a0a0a0; }

.testimonial .testimonial__img-wrap .testimonial__img {
  display: inline-block;
  width: 165px;
  height: 165px;
  border-radius: 50%; }

/*--------------------------------------------------------------
10.0 Contact-Page
--------------------------------------------------------------*/
.g-map {
  background-color: #eee; }

#map {
  height: 450px;
  width: 100%; }

.contact-o {
  background-color: #ffffff;
  padding: 23px;
  transition: -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid #f5f5f5;
  box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08); }
  .contact-o:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); }
  .contact-o__wrap {
    text-align: center; }
  .contact-o__icon {
    margin-bottom: 10px; }
    .contact-o__icon > i {
      color: #4B817B;
      font-size: 48px; }
  .contact-o__info-text-1 {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase; }
  .contact-o__info-text-2 {
    font-size: 12px;
    margin-bottom: 2px;
    display: block;
    color: #7f7f7f; }

.contact-area__heading {
  margin-bottom: 30px; }
  .contact-area__heading h2 {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    background-color: #ffffff; }

.contact-f {
  width: 100%; }
  .contact-f .input-text, .contact-f .text-area {
    border-radius: 6px;
    width: 100%; }
  .contact-f .text-area {
    height: 185px; }
  .contact-f .btn {
    padding: 19px 21px;
    border-radius: 25px; }

/*--------------------------------------------------------------
11.0 Cart-Wishlist-Pages
--------------------------------------------------------------*/
.table-responsive {
  overflow-x: auto; }

.table-p {
  width: 100%;
  border: 1px solid #eee;
  border-collapse: collapse; }
  .table-p tr {
    position: relative;
    border-top: 1px solid #eee; }
  .table-p td {
    padding: 20px; }
  .table-p__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-align: center;
        align-items: center; }
  .table-p__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px; }
    .table-p__img-wrap img {
      display: block;
      min-width: 120px; }
  .table-p__info {
    margin-left: 18px; }
  .table-p__name {
    display: block; }
    .table-p__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .table-p__name > a:hover {
        color: #4B817B; }
  .table-p__category {
    display: block; }
    .table-p__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .table-p__category > a:hover {
        color: #4B817B; }
  .table-p__variant-list {
    margin: 0;
    padding: 0;
    list-style: none; }
    .table-p__variant-list > li > span {
      color: #a0a0a0;
      font-size: 12px; }
  .table-p__price {
    text-align: center;
    display: block;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .table-p__input-counter-wrap {
    text-align: center; }
  .table-p__del-wrap {
    text-align: center; }
  .table-p__delete-link {
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    color: #333333;
    transition: color 0.5s; }
    .table-p__delete-link:hover {
      color: #4B817B; }

.w-r {
  background-color: #ffffff;
  border: 1px solid #eee;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.07); }
  .w-r__container {
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between; }
  .w-r__wrap-1, .w-r__wrap-2 {
    -ms-flex: 0 1 auto; }
  .w-r__wrap-1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .w-r__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px; }
    .w-r__img-wrap img {
      display: block;
      min-width: 120px; }
  .w-r__info {
    margin-left: 18px; }
  .w-r__name {
    display: block; }
    .w-r__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .w-r__name > a:hover {
        color: #4B817B; }
  .w-r__category {
    display: block;
    margin-bottom: 2px; }
    .w-r__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .w-r__category > a:hover {
        color: #4B817B; }
  .w-r__price {
    display: block;
    color: #4B817B;
    font-size: 14px;
    font-weight: 600; }
  .w-r__discount {
    font-weight: 600;
    margin-left: 12px;
    color: #333333;
    font-size: 14px;
    text-decoration: line-through; }
  .w-r__link {
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    margin: 0 0 10px 10px;
    padding: 12px 30px; }

.route-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #f1f1f1;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .route-box__g {
    -ms-flex: 0 1 auto; }
  .route-box__link {
    color: #333333;
    font-size: 13px;
    text-align: center;
    padding: 17px;
    font-weight: 600;
    display: inline-block;
    transition: color 0.5s; }
    .route-box__link:hover {
      color: #4B817B; }
  .route-box i {
    margin-right: 2px; }

.f-cart__pad-box {
  border: 1px solid #eee;
  padding: 15px 22px 35px; }

.f-cart__table {
  width: 100%;
  border-collapse: collapse; }
  .f-cart__table td {
    color: #333333;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0; }
  .f-cart__table td:first-child {
    text-align: left; }
  .f-cart__table td {
    text-align: right; }
  .f-cart__table tr:last-child td {
    font-size: 16px;
    font-weight: 700;
    color: #4B817B; }

.f-cart__ship-link {
  font-size: 13px;
  text-align: center;
  padding: 17px;
  font-weight: 600;
  border-radius: 6px;
  display: block; }

.f-cart .input-text, .f-cart .select-box, .f-cart .text-area, .f-cart .btn {
  border-radius: 6px;
  width: 100%; }

.f-cart .text-area {
  height: 350px; }

.f-cart .btn {
  padding: 16px;
  font-weight: 600;
  font-size: 13px; }

@media (max-width: 991px) {
  .w-r__wrap-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-align: end;
        align-items: flex-end; } }

@media (max-width: 767px) {
  .table-p td {
    min-width: 200px; }
  .w-r__container {
    -ms-flex-direction: column;
        flex-direction: column; }
  .w-r__wrap-1 {
    -ms-flex-direction: column;
        flex-direction: column; }
  .w-r__info {
    text-align: center;
    margin: 15px 0 15px; }
  .w-r__wrap-2 {
    -ms-flex-align: center;
        align-items: center; } }

/*--------------------------------------------------------------
12.0 Empty-404-Pages
--------------------------------------------------------------*/
.empty {
  text-align: center; }
  .empty__big-text {
    display: block;
    margin-bottom: 12px;
    color: #4B817B;
    line-height: 1;
    font-size: 85px;
    font-weight: 600; }
  .empty__text-1 {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333333; }
  .empty__text-2 {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #a0a0a0; }
    .empty__text-2 > a {
      color: #4B817B;
      padding: 2px; }
      .empty__text-2 > a:after {
        content: ',';
        margin: 0 2px;
        color: #333333; }
    .empty__text-2 > a:last-child:after {
      content: none; }
  .empty__search-form {
    position: relative;
    width: 40%;
    margin: 0 auto; }
    .empty__search-form .btn {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 8px; }
  .empty__redirect-link {
    border-radius: 40px;
    padding: 16px;
    display: inline-block;
    font-weight: 600;
    font-size: 13px; }

#search-label {
  padding: 0 36px 0 18px;
  width: 100%; }

/*--------------------------------------------------------------
13.0 Checkout-Page
--------------------------------------------------------------*/
.msg {
  background-color: #ffffff;
  box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08);
  padding: 20px; }
  .msg__text {
    padding: 8px 0;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333; }

.l-f__form {
  width: 100%; }

.l-f .input-text {
  width: 100%; }

.l-f .input-text, .l-f .btn {
  border-radius: 6px; }

.l-f .btn {
  font-weight: 600;
  padding: 12px 18px; }

.c-f__form {
  position: relative;
  width: 50%; }

.c-f .input-text {
  width: 100%; }

.c-f .input-text, .c-f .btn {
  border-radius: 6px; }

.c-f .btn {
  font-weight: 600;
  padding: 12px 18px; }

.checkout-f {
  width: 100%; }
  .checkout-f .input-text, .checkout-f .select-box, .checkout-f .text-area, .checkout-f .btn {
    width: 100%;
    /* border-radius: 6px; } */
  }
  .checkout-f .text-area {
    height: 185px; }
  .checkout-f .btn {
    font-weight: 600;
    padding: 18px; }

.checkout-f__h1 {
  color: #333333;
  font-size: 18px;
  margin-bottom: 8px; }

.o-summary__section {
  background-color: #ffffff;
  border: 1px solid #eee; }

.o-summary__box {
  padding: 20px; }

.o-summary__item-wrap {
  max-height: 228px;
  padding: 17px;
  overflow-y: auto; }

.o-summary__table {
  width: 100%;
  border-collapse: collapse; }
  .o-summary__table td {
    color: #333333;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0; }
  .o-summary__table td:first-child {
    text-align: left; }
  .o-summary__table td {
    text-align: right; }
  .o-summary__table tr:last-child td {
    font-size: 16px;
    font-weight: 700;
    color: #4B817B; }

.o-card {
  /* border: 1px solid #f5f5f5; */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 22px; }
  .o-card:last-child {
    margin-bottom: 0; }
  .o-card__flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  .o-card__img-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    background-color: #f5f5f5; }
    .o-card__img-wrap img {
      display: block;
      min-width: 60px; }
  .o-card__info-wrap {
    margin-left: 18px; }
  .o-card__name {
    display: block; }
    .o-card__name > a {
      color: #333333;
      font-size: 13px;
      font-weight: 600;
      transition: color 0.5s; }
      .o-card__name > a:hover {
        color: #4B817B; }
  .o-card__quantity {
    font-size: 13px;
    margin-bottom: 2px;
    display: block; }
  .o-card__price {
    display: block;
    color: #4B817B;
    font-size: 13px;
    font-weight: 600; }
  .o-card__del {
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    color: #333333;
    transition: color 0.5s; }
    .o-card__del:hover {
      color: #4B817B; }

.ship-b__text {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #333333;
  margin-bottom: 4px; }

.ship-b__box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.ship-b__p {
  margin-bottom: 4px;
  color: #7f7f7f;
  font-weight: 600;
  font-size: 13px;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%; }

.ship-b__edit {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px; }

@media (max-width: 575px) {
  .o-summary__item-wrap {
    max-height: 466px; }
  .o-card__flex {
    display: block;
    padding: 14px;
    text-align: center; }
  .o-card__info-wrap {
    margin-left: 0; }
  .ship-b__box {
    display: block; }
  .ship-b__p {
    max-width: 100%; } }

/*--------------------------------------------------------------
14.0 Signin Signup Lost Password-Page
--------------------------------------------------------------*/
.l-f-o {
  border: 0px solid #eee; }
  .l-f-o__pad-box {
    padding: 20px; }
  .l-f-o__form {
    width: 100%; }
  .l-f-o .input-text, .l-f-o .btn, .l-f-o .select-box {
    border-radius: 6px; }
  .l-f-o .input-text {
    width: 100%; }
  .l-f-o .btn {
    font-weight: 600;
    padding: 12px 18px; }
  .l-f-o__create-link {
    font-size: 13px;
    text-align: center;
    padding: 12px;
    display: block;
    font-weight: 600;
    border-radius: 6px; }

/*--------------------------------------------------------------
15.0 FAQ-Page
--------------------------------------------------------------*/
.faq__heading {
  font-weight: 700;
  font-size: 13px;
  color: #333333;
  margin-bottom: 6px; }

.faq__text {
  font-size: 13px;
  color: #7f7f7f; }

.faq__list {
  border-top: 1px solid #eee;
  padding: 14px 0; }
  .faq__list:last-child {
    border-bottom: 1px solid #eee; }

.faq__question {
  display: block;
  position: relative;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333333; }

.faq__question:before {
  content: "\F107";
  font-family: 'Helvetica Neue';
  font-weight: 900;
  position: absolute;
  top: 8px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 12px;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out; }

.faq__question.collapsed:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }

/*--------------------------------------------------------------
16.0 Dashboard-Pages
--------------------------------------------------------------*/
.dash__box--bg-white {
  background-color: #ffffff; }

.dash__box--border {
  border: 1px solid #eee; }

.dash__box--bg-grey {
  background-color: #fbfbfb; }

.dash__box--shadow {
  box-shadow: -2px 0px 14px 0 rgba(36, 37, 38, 0.08); }

.dash__box--shadow-2 {
  box-shadow: -6px 2px 8px 0 rgba(36, 37, 38, 0.08); }

.dash__box--radius {
  border-radius: 15px; }

.dash__pad-1 {
  padding: 26px 20px; }

.dash__pad-2 {
  padding: 24px; }

.dash__pad-3 {
  padding: 26px; }

.dash__f-list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .dash__f-list > li {
    padding: 4px 0; }
    .dash__f-list > li > a {
      font-size: 13px;
      display: block;
      color: #000000; }

.dash-l-r {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.dash-active {
  font-weight: 600;
  color: #000000; }

.dash__w-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .dash__w-list > li {
    border-bottom: 1px solid #eee; }

.dash__w-wrap {
  padding: 18px 0; }

.dash__w-icon {
  width: 45px;
  height: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 50%;
  font-size: 14px;
  margin-bottom: 8px; }

.dash__w-icon-style-1 {
  background-color: rgba(255, 69, 0, 0.14); }
  .dash__w-icon-style-1 > i {
    color: #4B817B; }

.dash__w-icon-style-2 {
  background-color: rgba(0, 148, 68, 0.14); }
  .dash__w-icon-style-2 > i {
    color: #009444; }

.dash__w-icon-style-3 {
  background-color: rgba(49, 133, 252, 0.14); }
  .dash__w-icon-style-3 > i {
    color: #3185FC; }

.dash__w-text {
  display: block;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #000000; }

.dash__w-name {
  display: block;
  color: #a0a0a0;
  font-weight: 600;
  font-size: 13px; }

.dash__h1 {
  line-height: 1;
  color: #333333;
  font-size: 18px; }

.dash__h2 {
  line-height: 1;
  font-size: 14px;
  color: #333333; }

.dash__text {
  display: block;
  font-size: 12px;
  color: #7f7f7f; }

.dash__text-2 {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #7f7f7f; }

.dash__link > a {
  font-size: 13px;
  font-weight: 600;
  transition: color 0.5s linear; }

.dash__link--brand > a {
  color: #4B817B; }
  .dash__link--brand > a:hover {
    color: #4B817B; }

.dash__link--secondary > a {
  color: #333333; }
  .dash__link--secondary > a:hover {
    color: #4B817B; }

.dash__link--black > a {
  color: #000000; }

.dash__table-wrap {
  height: 300px;
  overflow: auto; }

.dash__table {
  width: 100%;
  border-collapse: collapse; }
  .dash__table thead {
    background-color: #fbfbfb; }
  .dash__table th, .dash__table td {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #333333; }
  .dash__table th {
    font-size: 14px; }
  .dash__table td {
    font-size: 13px; }
  .dash__table tbody tr {
    border-bottom: 1px solid #eee; }
    .dash__table tbody tr:last-child {
      border-bottom: 0; }

.dash__table-img-wrap {
  background-color: #f5f5f5;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px; }
  .dash__table-img-wrap img {
    display: block;
    min-width: 40px; }

.dash-edit-p {
  width: 100%; }
  .dash-edit-p .btn, .dash-edit-p .input-text, .dash-edit-p .select-box {
    border-radius: 6px; }
  .dash-edit-p .input-text {
    width: 100%; }
  .dash-edit-p .btn {
    font-weight: 600;
    padding: 16px 46px; }

.dash__custom-link {
  font-weight: 600;
  display: inline-block;
  text-align: center;
  padding: 14px 18px;
  font-size: 13px;
  border-radius: 6px;
  width: 12rem; }

.manage-o__text {
  font-size: 13px;
  font-weight: 600; }

.manage-o__text-2 {
  font-size: 14px;
  font-weight: 600; }

.manage-o__header {
  padding-bottom: 14px;
  border-bottom: 1px solid #eee; }

.manage-o__icon {
  font-weight: 600;
  font-size: 13px;
  color: #333333; }

.manage-o__timeline {
  padding-top: 40px; }
  .manage-o__timeline [class*="col-"] {
    padding: 0;
    text-align: center; }

.timeline-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.timeline-l-i {
  position: relative;
  border-radius: 3px;
  border-top: 3px solid #eee; }
  .timeline-l-i .timeline-circle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 2px solid #eee;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .timeline-l-i .timeline-circle:before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      background-color: #eee;
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }

.timeline-l-i.timeline-l-i--finish {
  border-color: #6B5AED; }
  .timeline-l-i.timeline-l-i--finish .timeline-circle {
    border-color: #6B5AED; }
    .timeline-l-i.timeline-l-i--finish .timeline-circle:before {
      background-color: #6B5AED; }

.timeline-text {
  margin-top: 20px;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #333333; }

.manage-o__description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.description__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

.description__img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background: #f5f5f5; }
  .description__img-wrap img {
    border-radius: 50%;
    display: block;
    min-width: 90px; }

.description-title {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333333; }

.dash__address-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.dash__table-2-wrap {
  overflow: auto; }

.dash__table-2 {
  width: 100%;
  border-collapse: collapse; }
  .dash__table-2 thead {
    background-color: #fbfbfb; }
  .dash__table-2 th, .dash__table-2 td {
    padding: 20px;
    min-width: 200px;
    text-align: left;
    font-weight: 600;
    color: #333333; }
  .dash__table-2 th {
    font-size: 14px; }
  .dash__table-2 td {
    font-size: 13px; }
  .dash__table-2 tbody tr {
    border-bottom: 1px solid #eee; }
    .dash__table-2 tbody tr:last-child {
      border-bottom: 0; }

.address-book-edit {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px; }

.dash__address-make {
  width: 100%; }
  .dash__address-make .btn {
    font-weight: 600;
    padding: 16px 46px;
    border-radius: 6px; }

.dash-address-manipulation {
  width: 100%; }
  .dash-address-manipulation .btn, .dash-address-manipulation .input-text, .dash-address-manipulation .select-box {
    border-radius: 6px; }
  .dash-address-manipulation .input-text, .dash-address-manipulation .select-box {
    width: 100%; }
  .dash-address-manipulation .btn {
    font-weight: 600;
    padding: 16px 46px; }

.dash-track-order {
  width: 100%; }
  .dash-track-order .btn, .dash-track-order .input-text {
    border-radius: 6px; }
  .dash-track-order .input-text {
    width: 100%; }
  .dash-track-order .btn {
    font-weight: 600;
    padding: 16px 46px; }

.m-order {
  width: 100%; }
  .m-order__select-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  .m-order label {
    color: #333333;
    font-size: 13px;
    font-weight: 600; }
  .m-order .select-box {
    border-radius: 6px; }

.m-order__list {
  background-color: #ffffff; }

.m-order__get {
  border: 1px solid #eee;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 24px; }
  .m-order__get:last-child {
    margin-bottom: 0; }

.manage-o__badge {
  display: inline-block;
  text-align: center;
  width: 5.9375rem;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 32px; }

.badge--processing {
  background-color: rgba(49, 133, 252, 0.14);
  color: #3185FC; }

.badge--shipped {
  background-color: rgba(0, 148, 68, 0.14);
  color: #009444; }

.badge--delivered {
  background-color: rgba(255, 69, 0, 0.14);
  color: #4B817B; }

@media (max-width: 991px) {
  .dash__box--w {
    margin-bottom: 30px; } }

@media (max-width: 767px) {
  .dash__address-header {
    display: block; }
    .dash__address-header .dash__h1 {
      margin-bottom: 8px; }
    .dash__address-header .dash__link {
      display: block; } }

@media (max-width: 575px) {
  .dash-l-r {
    display: block; }
  .manage-o__description {
    display: block;
    text-align: center; }
  .description__container {
    display: block; }
  .description-title {
    margin: 12px 0; } }

/*--------------------------------------------------------------
17.0 Blog-Pages
--------------------------------------------------------------*/
.blog-t-w {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.post-prev, .post-next {
  text-align: center;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: #333333;
  background-color: #ffffff;
  box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08);
  margin: auto 0;
  opacity: 0;
  transition: opacity .6s ease-in; }

.post-prev {
  left: 20px; }

.post-next {
  right: 20px; }

.post-prev:before, .post-next:before {
  content: '';
  background: rgba(255, 255, 255, 0.3);
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }

.post-prev:hover:before, .post-next:hover:before {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  opacity: .6; }

.post-gallery:hover .post-prev, .post-gallery:hover .post-next {
  opacity: 1; }

.post-video-block {
  position: relative;
  background-color: #f5f5f5;
  width: 100%; }

.post-video-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 7;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

.post-video-link:before {
  width: 3.875rem;
  height: 3.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.9375rem;
  margin-left: -1.9375rem;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  z-index: 3; }

.post-video-link:hover:before {
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(0.9);
          transform: scale(0.9); }

.post-video-block .post-video-link:before {
  content: '';
  background-size: contain; }

.post-video-block.process .post-video-link:before {
  content: none; }

.post-video-block.process.pause .post-video-link:before {
  content: '';}

.post-center-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center; }

.aspect--1366-768 {
  padding-bottom: 56.22255%; }

.bp {
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 1px 1px 8px 0 rgba(36, 37, 38, 0.08); }
  .bp__wrap {
    padding: 25px; }
  .bp__thumbnail {
    margin-bottom: 12px; }
  .bp__stat {
    margin-bottom: 6px; }
    .bp__stat .bp__stat-wrap {
      margin-right: 22px; }
      .bp__stat .bp__stat-wrap:last-child {
        margin-right: 0; }
  .bp__publish-date > a {
    font-size: 12px;
    font-weight: 600;
    color: #a0a0a0; }
  .bp__author > a {
    font-size: 12px;
    text-decoration: overline;
    font-weight: 600;
    color: #4B817B; }
  .bp__comment > a {
    color: #7f7f7f;
    font-weight: 600;
    font-size: 12px; }
  .bp__category > a {
    color: #a0a0a0;
    font-weight: 600;
    transition: color 110ms ease-in-out;
    font-size: 12px;
    margin-right: 2px; }
    .bp__category > a:last-child {
      margin-right: 0; }
    .bp__category > a:hover {
      color: #4B817B; }
  .bp__h1 {
    display: block;
    margin-bottom: 6px; }
    .bp__h1 > a {
      font-size: 20px;
      font-weight: 600;
      color: #333333; }
  .bp__h2 {
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0; }
  .bp__p {
    margin-bottom: 12px;
    font-size: 13px;
    color: #7f7f7f; }
  .bp__read-more {
    display: block;
    margin-bottom: 6px; }
    .bp__read-more > a {
      font-size: 14px;
      font-weight: 700;
      color: #4B817B; }
  .bp__social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .bp__social-list > li {
      margin-right: 16px; }
      .bp__social-list > li:last-child {
        margin-right: 0; }
      .bp__social-list > li > a {
        font-size: 14px; }

.bp--img .bp__thumbnail {
  overflow: hidden; }
  .bp--img .bp__thumbnail img {
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1); }

.bp--img:hover .bp__thumbnail {
  overflow: hidden; }
  .bp--img:hover .bp__thumbnail img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

.bp audio, .bp video, .bp-mini audio, .bp-mini video, .bp-detail audio, .bp-detail video {
  display: block;
  width: 100%; }

.blog-m__element {
  width: 33.33%;
  padding: 20px 10px; }

.bp-mini {
  background-color: #ffffff;
  box-shadow: 2px 2px 8px 0 rgba(36, 37, 38, 0.08);
  overflow: hidden;
  border-radius: 15px; }
  .bp-mini__content {
    padding: 4px 20px 10px; }
  .bp-mini__stat {
    margin-bottom: 2px; }
    .bp-mini__stat .bp-mini__stat-wrap {
      margin-right: 22px; }
      .bp-mini__stat .bp-mini__stat-wrap:last-child {
        margin-right: 0; }
  .bp-mini__publish-date > a {
    font-size: 11px;
    font-weight: 600;
    color: #7f7f7f; }
  .bp-mini__preposition {
    color: #7f7f7f;
    font-size: 12px; }
  .bp-mini__author > a {
    color: #4B817B;
    font-size: 12px; }
  .bp-mini__comment > a {
    color: #7f7f7f;
    font-size: 12px; }
  .bp-mini__category {
    margin-bottom: 4px; }
    .bp-mini__category > a {
      color: #7f7f7f;
      font-weight: 600;
      transition: color 110ms ease-in-out;
      font-size: 11px;
      margin-right: 2px; }
      .bp-mini__category > a:last-child {
        margin-right: 0; }
      .bp-mini__category > a:hover {
        color: #4B817B; }
    .bp-mini__category > a:last-child:after {
      content: none; }
  .bp-mini__h1 {
    display: block;
    margin-bottom: 4px; }
    .bp-mini__h1 > a {
      transition: color 110ms ease-in-out;
      font-size: 14px;
      font-weight: 600;
      color: #333333; }
      .bp-mini__h1 > a:hover {
        color: #4B817B; }
  .bp-mini__p {
    margin-bottom: 8px;
    font-size: 12px;
    color: #7f7f7f; }

.bp-mini--img .bp-mini__thumbnail {
  overflow: hidden; }
  .bp-mini--img .bp-mini__thumbnail img {
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1); }

.bp-mini--img:hover .bp-mini__thumbnail {
  overflow: hidden; }
  .bp-mini--img:hover .bp-mini__thumbnail img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

.detail-post {
  max-width: 740px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto; }

.bp-detail {
  position: relative; }
  .bp-detail__thumbnail {
    margin-bottom: 12px; }
  .bp-detail__stat {
    margin-bottom: 6px; }
    .bp-detail__stat .bp-detail__stat-wrap {
      margin-right: 22px; }
      .bp-detail__stat .bp-detail__stat-wrap:last-child {
        margin-right: 0; }
  .bp-detail__publish-date > a {
    font-size: 12px;
    font-weight: 600;
    color: #a0a0a0; }
  .bp-detail__author > a {
    font-size: 12px;
    text-decoration: overline;
    font-weight: 600;
    color: #4B817B; }
  .bp-detail__category > a {
    color: #a0a0a0;
    font-weight: 600;
    transition: color 110ms ease-in-out;
    font-size: 12px;
    margin-right: 2px; }
    .bp-detail__category > a:last-child {
      margin-right: 0; }
    .bp-detail__category > a:hover {
      color: #4B817B; }
  .bp-detail__h1 {
    display: block;
    margin-bottom: 6px; }
    .bp-detail__h1 > a {
      font-size: 20px;
      font-weight: 600;
      color: #333333; }
  .bp-detail__p {
    margin-bottom: 16px;
    color: #333333;
    font-size: 18px;
    line-height: 2; }
    .bp-detail__p a {
      font-weight: 700;
      color: #4B817B;
      transition: all .3s; }
      .bp-detail__p a:hover {
        color: #7f7f7f;
        text-decoration: underline; }

.bp-detail__q {
  width: 100%;
  text-align: center;
  padding: 3rem;
  margin: 0 0 1rem;
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #4B817B; }
  .bp-detail__q i {
    font-size: 2.125rem;
    color: #333333;
    margin-bottom: 8px; }

.bp-detail__q-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333; }

.bp-detail__q-citation {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #7f7f7f; }

.bp-detail__social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .bp-detail__social-list > li {
    margin-right: 16px; }
    .bp-detail__social-list > li:last-child {
      margin-right: 0; }
    .bp-detail__social-list > li > a {
      font-size: 1.125rem; }

.bp-detail__postnp {
  margin: 1.375rem 0; }
  .bp-detail__postnp a {
    font-size: 13px;
    border-bottom: 1px solid #333333;
    font-weight: 600;
    color: #333333;
    transition: color 110ms ease-in-out,border-color 110ms ease-in-out; }
    .bp-detail__postnp a:hover {
      color: #4B817B;
      border-color: #4B817B; }

.blog-w__h {
  display: block;
  vertical-align: middle;
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f7f7f7; }

.blog-w__list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .blog-w__list > li {
    margin-bottom: 12px; }
    .blog-w__list > li:last-child {
      margin-bottom: 0; }
    .blog-w__list > li > a {
      font-size: 12px;
      font-weight: 600;
      color: #7f7f7f; }
      .blog-w__list > li > a:hover {
        color: #333333; }

.blog-search-form {
  position: relative;
  width: 100%; }
  .blog-search-form .input-text {
    width: 100%;
    border-radius: 6px; }
  .blog-search-form .btn {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 18px; }

.blog-w__b-l {
  margin: 0;
  padding: 0;
  list-style: none; }
  .blog-w__b-l > li {
    margin-bottom: 30px; }
    .blog-w__b-l > li:last-child {
      margin-bottom: 0; }

.blog-w__b-l-2 {
  margin: 0;
  padding: 0;
  list-style: none; }
  .blog-w__b-l-2 > li {
    margin-bottom: 8px; }
    .blog-w__b-l-2 > li:last-child {
      margin-bottom: 0; }

.b-l__date {
  font-size: 10px;
  color: #a0a0a0;
  display: block;
  margin-bottom: 6px; }

.b-l__text {
  font-size: 12px;
  color: #7f7f7f; }

.b-l__h {
  display: block;
  margin-bottom: 6px; }
  .b-l__h > a {
    font-size: 12px;
    transition: color 110ms ease-in-out;
    color: #333333;
    font-weight: 600; }
    .b-l__h > a:hover {
      color: #4B817B; }

.b-l__h-2 > a {
  font-size: 12px;
  transition: color 110ms ease-in-out;
  color: #333333;
  font-weight: 600; }
  .b-l__h-2 > a:hover {
    color: #4B817B; }

.b-l__p {
  display: block;
  font-size: 12px;
  color: #7f7f7f; }

.blog-pg {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .blog-pg > li {
    margin-right: 14px; }
    .blog-pg > li:last-child {
      margin-right: 0; }
    .blog-pg > li > a {
      width: 42px;
      text-align: center;
      height: 42px;
      line-height: 42px;
      font-size: 12px;
      display: block;
      font-weight: 600;
      border-radius: 50%;
      background-color: transparent;
      color: #333333; }

.blog-pg > li > a:hover {
  background-color: #4B817B;
  color: #ffffff; }

.blog-pg > li.blog-pg--active > a {
  background-color: #4B817B;
  color: #ffffff;
  border-color: #4B817B; }

.d-meta__text {
  display: block;
  color: #333333;
  font-size: 32px;
  font-weight: 700; }

.d-meta__text-2 {
  display: block;
  color: #333333;
  font-size: 18px;
  font-weight: 600; }

.d-meta__text-3 {
  display: block;
  color: #7f7f7f;
  font-size: 12px; }

.d-meta__comments ol {
  margin: 0;
  padding: 0;
  list-style: none; }

.d-meta__comments .comment-children {
  padding-left: 1rem; }

.d-meta__p-comment {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem; }

.p-comment__wrap1 {
  margin-right: 20px; }

.p-comment__img-wrap {
  width: 80px;
  height: 80px;
  background-color: #f5f5f5; }

.p-comment__author {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #333333; }

.p-comment__timestamp {
  display: block;
  margin-bottom: 2px; }
  .p-comment__timestamp a {
    font-size: 12px;
    font-weight: 600;
    color: #7f7f7f;
    transition: color 110ms ease-in-out; }
    .p-comment__timestamp a:hover {
      color: #4B817B; }

.p-comment__paragraph {
  color: #7f7f7f;
  font-size: 13px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 470px; }

.p-comment__reply {
  font-size: 13px;
  font-weight: 600;
  color: #4B817B;
  border-bottom: 0; }
  .p-comment__reply:hover {
    border-bottom: 1px solid #4B817B; }

.respond__form {
  width: 100%; }
  .respond__form .btn, .respond__form .input-text, .respond__form .text-area {
    border-radius: 6px; }
  .respond__form .input-text, .respond__form .text-area {
    width: 100%; }
  .respond__form .text-area {
    height: 15.625rem; }
  .respond__form .btn {
    font-weight: 600;
    padding: 16px 46px; }

.respond__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
  .respond__group div {
    -ms-flex: 1;
        flex: 1;
    margin-right: 14px; }
    .respond__group div:last-child {
      margin-right: 0; }

@media (max-width: 991px) {
  .blog-m__element {
    width: 50%; }
  .respond__group {
    display: block; }
    .respond__group div {
      display: block;
      margin-right: 0; } }

@media (max-width: 767px) {
  .blog-m__element {
    width: 100%; } }

/*--------------------------------------------------------------
18.0 Product-Detail-Pages
--------------------------------------------------------------*/
.pd-breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  word-wrap: break-word; }
  .pd-breadcrumb__list > li {
    display: inline-block; }
    .pd-breadcrumb__list > li > a {
      color: #a0a0a0;
      font-size: 12px;
      transition: color 0.5s; }
      .pd-breadcrumb__list > li > a:hover {
        color: #333333; }
    .pd-breadcrumb__list > li.is-marked > a {
      color: #333333;
      font-weight: 700; }
    .pd-breadcrumb__list > li.has-separator:after {
      content: '-';
      margin: 0 6px; }

.pd {
  cursor: pointer; }

.pd-wrap {
  position: relative; }

.pd-text {
  position: absolute;
  top: 15px;
  padding: 8px;
  right: 15px;
  font-size: 12px;
  color: #333333; }

.pd-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .pd-social-list > li {
    margin-right: 16px; }
    .pd-social-list > li:last-child {
      margin-right: 0; }
    .pd-social-list > li > a {
      font-size: 1.125rem;
      transition: color 110ms ease-in-out;
      color: #333333; }

.pd-detail__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333333; }

.pd-detail__inline span {
  margin-right: 0.375rem; }
  .pd-detail__inline span:last-child {
    margin-right: 0; }

.pd-detail-inline-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center; }
  .pd-detail-inline-2 div {
    margin-right: 14px; }
    .pd-detail-inline-2 div:last-child {
      margin-right: 0; }

.pd-detail__name {
  display: block;
  color: #333333;
  font-size: 32px;
  font-weight: 600; }

.pd-detail__price {
  color: #4B817B;
  font-size: 25px;
  font-weight: 700; }

.pd-detail__discount {
  color: #4B817B;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.5s; }

.pd-detail__del {
  color: #a0a0a0;
  font-size: 12px; }

.pd-detail__rating {
  display: block; }
  .pd-detail__rating i {
    font-size: 12px; }

.pd-detail__review > a {
  font-size: 12px;
  transition: color 110ms ease-in-out;
  color: #333333; }
  .pd-detail__review > a:hover {
    color: #4B817B;
    text-decoration: underline; }

.pd-detail__stock, .pd-detail__left {
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  display: inline-block;
  border-radius: 30px; }

.pd-detail__stock {
  background-color: rgba(0, 148, 68, 0.14);
  color: #009444; }

.pd-detail__left {
  background-color: rgba(255, 69, 0, 0.14);
  color: #4B817B; }

.pd-detail__preview-desc {
  font-size: 13px;
  color: #7f7f7f; }

.pd-detail__click-wrap > a {
  font-size: 13px;
  color: #a0a0a0;
  transition: color 110ms ease-in-out; }
  .pd-detail__click-wrap > a:hover {
    color: #b6b6b6;
    text-decoration: underline; }

.pd-detail__click-count {
  font-size: 10px;
  color: #a0a0a0; }

.pd-detail__form {
  width: 100%; }
  .pd-detail__form .btn {
    /*padding: 1rem 3rem;*/
    border-radius: 0.375rem; }

/**
  * Variations
 */
.pd-detail__color, .pd-detail__size {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.color__radio {
  position: relative;
  line-height: 1.89;
  margin-right: 36px;
  display: inline-block; }

.color__radio [type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 30px;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer; }

.color__radio-label {
  position: initial;
  display: inline-block; }

.color__radio-label:before, .color__radio-label:after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border: 2px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0; }

.color__radio-label:after {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  background-color: inherit; }

.color__radio input:checked + label:before {
  border-color: #d2d2d2; }

.size__radio {
  position: relative;
  margin: 0 12px 12px 0; }

.size__radio [type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer; }

.size__radio-label {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 15px;
  background-color: #ffffff;
  font-size: 13px;
  color: #333333;
  cursor: pointer;
  display: inline-block; }

.size__radio input:checked + label {
  border-color: #333333; }

.pd-detail__policy-list {
  margin: 0;  
  font-size: 14px;
  list-style: none; 
  font-size: 16px;
  line-height: 24px;
  font-family: 'Helvetica Neue';
}
  .pd-detail__policy-list > li i {
    color: #009444; }
  .pd-detail__policy-list > li span {
    color: black; }

.pd-tab__list {
  margin: 0;
  border-bottom: 2px solid #e7e7e7; }
  .pd-tab__list > li {
    margin-bottom: -2px; }
    .pd-tab__list > li > a {
      padding: 10px 0;
      color: #333333;
      font-size: 14px;
      font-weight: 700;
      border-bottom: 2px solid transparent;
      border-top-left-radius: 3px;
      border-top-right-radius: 3px;
      letter-spacing: .01rem;
      transition: all .3s; }
      .pd-tab__list > li > a span {
        margin-left: 2px;
        font-size: 12px; }
      .pd-tab__list > li > a.active {
        color: #000000;
        border-color: #000000; }
    .pd-tab__list > li + li {
      margin-left: 28px; }

.pd-tab__desc, .pd-tab__tag {
  max-width: 691px; }

.pd-tab__desc p {
  color: #333333;
  font-size: 16px;
  line-height: 2; }

.pd-tab__desc ul {
  margin: 0;
  padding-left: 16px;
  list-style: none; }
  .pd-tab__desc ul > li {
    margin-bottom: 7px;
    color: #333333;
    font-size: 14px; }

.pd-tab__desc h4 {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4; }

.pd-tab__desc .pd-table {
  overflow: auto; }
  .pd-tab__desc .pd-table table {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #eee;
    border-collapse: collapse; }
  .pd-tab__desc .pd-table tbody tr {
    border-bottom: 1px solid #eee; }
  .pd-tab__desc .pd-table tbody td {
    font-size: 14px;
    color: #7f7f7f;
    padding: 12px; }
  .pd-tab__desc .pd-table tbody td:first-child {
    color: #333333;
    font-weight: 600; }

.pd-tab__tag h2 {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  line-height: 1.18; }

.pd-tab__tag form {
  width: 100%; }
  .pd-tab__tag form .btn {
    font-size: 13px;
    font-weight: 600;
    border: 0;
    height: 48px;
    padding: 17px 18px; }
  .pd-tab__tag form .input-text {
    height: 48px;
    margin-right: 8px;
    width: 50%; }

.pd-tab__rev-f1 {
  width: 100%; }

.pd-tab__rev-score {
  padding: 40px 0;
  text-align: center;
  background-color: #f6f6f6; }
  .pd-tab__rev-score h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 0.875;
    color: #333333; }
  .pd-tab__rev-score h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 0.875;
    color: #333333; }

.rev-f1__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .rev-f1__group h2 {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.18; }
  .rev-f1__group .select-box {
    border-radius: 0.375rem; }

.rev-f1__review {
  max-width: 691px; }

.review-o {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0; }

.review-o__name {
  font-size: 14px;
  font-weight: 600;
  color: #333333; }

.review-o__date {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #7f7f7f; }

.review-o__rating span {
  margin-left: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #7f7f7f; }

.review-o__text {
  font-size: 13px;
  color: #7f7f7f; }

.pd-tab__rev-f2 {
  width: 100%; }
  .pd-tab__rev-f2 h2 {
    font-size: 32px;
    color: #333333;
    line-height: 0.90; }
  .pd-tab__rev-f2 .input-text, .pd-tab__rev-f2 .text-area {
    width: 100%; }
  .pd-tab__rev-f2 .text-area {
    height: 15.625rem; }
  .pd-tab__rev-f2 .btn {
    font-weight: 600;
    /*padding: 16px 46px;*/ }

.rev-f2__table-wrap {
  overflow: auto; }

.rev-f2__table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #dee2e6; }
  .rev-f2__table th, .rev-f2__table td {
    padding: 16px 4px;
    border: 1px solid #d6d6d6; }
  .rev-f2__table th {
    width: 120px;
    color: #333333;
    background-color: #f0f0f0;
    font-size: 13px; }
    .rev-f2__table th span {
      margin-top: 2px;
      display: block;
      font-size: 11px;
      color: #333333; }

.rev-f2__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
  .rev-f2__group div {
    -ms-flex: 1;
        flex: 1;
    margin-right: 14px; }
    .rev-f2__group div:last-child {
      margin-right: 0; }

@media (max-width: 991px) {
  .pd-text {
    display: none; }
  .zoomContainer {
    display: none; }
  .rev-f2__group {
    display: block; }
    .rev-f2__group div {
      display: block;
      margin-right: 0; } }

@media (max-width: 575px) {
  .pd-detail-inline-2 {
    display: block; }
    .pd-detail-inline-2 div {
      display: block;
      margin-right: 0; }
  .rev-f1__group {
    display: block; } }

/*--------------------------------------------------------------
19.0 Shop-Pages
--------------------------------------------------------------*/
.shop-w-master__heading {
  font-size: 18px;
  color: #333333;
  font-weight: 700;
  line-height: 20px; }

.sidebar--bg-snow {
  background-color: #f9f9f9; }

.shop-w--style {
  border: 1px solid #f1f1f1;
  background-color: #ffffff;
  box-shadow: 0 6px 15px 0 rgba(36, 37, 38, 0.08); }

.shop-w__intro-wrap {
  position: relative; }

.shop-w__h {
  font-size: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #efefef;
  color: #333333;
  font-weight: 700;
  line-height: 20px; }

.shop-w__wrap {
  padding: 14px; }

.shop-w__toggle.collapsed:before {
  content: "\F067"; }

.shop-w__toggle {
  position: absolute;
  top: 50%;
  padding: 8px 12px;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  font-size: 12px;
  cursor: pointer;
  color: #444; }

.shop-w ul {
  margin: 0;
  padding-left: 0;
  list-style: none; }

.shop-w__list {
  overflow: auto;
  max-height: 290px; }
  .shop-w__list > li {
    position: relative;
    padding: 8px 16px; }

.shop-w__list-2 {
  overflow: auto;
  max-height: 290px; }
  .shop-w__list-2 > li {
    padding: 0.25rem 0;
    position: relative; }

.list__content {
  position: relative; }
  .list__content [type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer; }
  .list__content span {
    padding: 8px 16px;
    display: block;
    font-size: 14px;
    transition: background-color 110ms ease-in-out,color 110ms ease-in-out;
    color: #7f7f7f; }

.list__content:hover span {
  color: #333333;
  background-color: #ececec;
  border-radius: .5rem; }

.list__content input:checked + span {
  background-color: #ececec;
  color: #333333;
  border-radius: .5rem; }

.shop-w__total-text {
  font-size: 11px;
  position: absolute;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333333;
  right: 13px; }

.shop-w__category-list {
  overflow: auto;
  max-height: 290px; }
  .shop-w__category-list > li {
    padding: 4px 14px; }
    .shop-w__category-list > li > a {
      font-size: 14px;
      color: #333333;
      transition: color 110ms ease-in-out; }
      .shop-w__category-list > li > a:hover {
        color: #4B817B; }
    .shop-w__category-list > li ul .has-list > a {
      font-size: 13px;
      font-weight: 700;
      color: #333333; }
    .shop-w__category-list > li ul {
      display: none;
      padding-left: 8px; }
      .shop-w__category-list > li ul li a {
        font-size: 13px;
        color: #7f7f7f;
        transition: color 110ms ease-in-out; }
        .shop-w__category-list > li ul li a:hover {
          color: #4B817B; }

.has-list {
  position: relative; }

.category-list__text {
  font-size: 10px;
  color: #a0a0a0; }

.js-shop-category-span {
  cursor: pointer;
  font-size: 13px;
  color: #444;
  transition: color 110ms ease-in-out; }
  .js-shop-category-span:hover {
    color: #000000; }

.js-shop-category-span.is-expanded:before {
  content: '\f068'; }

.shop-w__form-p-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px 0; }
  .shop-w__form-p-wrap div {
    margin-right: 8px;
    margin-bottom: 12px; }
    .shop-w__form-p-wrap div:last-child {
      margin-right: 0; }
  .shop-w__form-p-wrap .input-text, .shop-w__form-p-wrap .btn {
    height: 40px;
    padding: 8px;
    border-radius: 2px; }
  .shop-w__form-p-wrap .input-text {
    width: 80px; }
  .shop-w__form-p-wrap .btn {
    width: 40px; }

.color__check {
  position: relative;
  line-height: 1.89;
  margin-right: 36px;
  display: inline-block; }

.color__check [type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 30px;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer; }

.color__check-label {
  position: initial;
  display: inline-block; }

.color__check-label:before, .color__check-label:after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border: 2px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0; }

.color__check-label:after {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  background-color: inherit; }

.color__check input:checked + label:before {
  border-color: #d2d2d2; }

.rating__check {
  position: relative;
  cursor: pointer; }
  .rating__check [type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer; }

.rating__check-star-wrap > i {
  margin-left: 2px;
  color: #4B817B;
  transition: color .4s ease-in-out; }
  .rating__check-star-wrap > i:first-child {
    margin-left: 0; }

.rating__check-star-wrap span {
  font-size: 12px;
  color: #333333;
  margin-right: 2px; }

.rating__check:hover .rating__check-star-wrap > i {
  color: #ff9600; }

.rating__check input:checked + .rating__check-star-wrap > i {
  color: #ff9600; }

.shop-p__meta-wrap {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 0.625rem; }

.shop-p__meta-text-1 {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #333333; }

.shop-p__meta-text-2 {
  font-size: 14px;
  font-weight: 700;
  color: #7f7f7f; }

.shop-p__tool-style {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.tool-style__group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .tool-style__group span {
    position: relative;
    display: inline-block;
    height: 40px;
    cursor: pointer;
    border: 2px solid #e5e5e5;
    font-size: 13px;
    padding: 8px 18px;
    font-weight: 700;
    color: #333333; }
    .tool-style__group span:hover {
      background-color: rgba(255, 69, 0, 0.12);
      color: #4B817B;
      border-color: #4B817B;
      z-index: 2; }
  .tool-style__group span:not(:last-child) {
    margin-right: -2px; }
  .tool-style__group span.is-active {
    background-color: rgba(255, 69, 0, 0.12);
    color: #4B817B;
    border-color: #4B817B;
    z-index: 2; }

.tool-style__form-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .tool-style__form-wrap div + div {
    margin-left: 15px; }
  .tool-style__form-wrap select {
    border-radius: .25rem; }

.is-grid-active .product-m {
  position: relative;
  margin-bottom: 30px;
  transition: 0.3s; }
  .is-grid-active .product-m__thumb {
    position: relative; }
  .is-grid-active .product-m__add-cart {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s; }
    .is-grid-active .product-m__add-cart > a {
      padding: 12px;
      border-radius: 0.125rem;
      font-size: 13px;
      width: 100%;
      text-align: center;
      display: block; }
  .is-grid-active .product-m__quick-look {
    position: absolute;
    top: 8px;
    right: 22px;
    /* opacity: 0;
    visibility: hidden; */
    transition: 0.3s; }
    .is-grid-active .product-m__quick-look > a {
      font-size: 16px;
      color: #4B817B;
      transition: color 110ms ease-in-out; }
      .is-grid-active .product-m__quick-look > a:hover {
        color: #a0a0a0; }
  .is-grid-active .product-m__content {
    padding: 4px 16px 6px; }
  .is-grid-active .product-m__category {
    margin-bottom: 2px;
    line-height: 1.2; }
    .is-grid-active .product-m__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .is-grid-active .product-m__category > a:hover {
        color: #4B817B; }
  .is-grid-active .product-m__name > a {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.5s; }
    .is-grid-active .product-m__name > a:hover {
      color: #4B817B; }
  .is-grid-active .product-m__price {
    line-height: 1.2;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .is-grid-active .product-m__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #4B817B;
    font-size: 14px;
    text-decoration: line-through; }
  .is-grid-active .product-m__rating {
    margin-bottom: 6px; }
    .is-grid-active .product-m__rating i {
      font-size: 12px; }
  .is-grid-active .product-m__review {
    margin-left: 4px;
    font-size: 11px;
    color: #a0a0a0; }
  .is-grid-active .product-m__hover {
    position: absolute;
    top: 96%;
    width: 100%;
    z-index: 9;
    padding: 4px 16px 14px;
    left: 0;
    background: #ffffff;
    box-shadow: 0 6px 7px 0 rgba(0, 0, 0, 0.2);
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden; }
  .is-grid-active .product-m__wishlist {
    text-align: right; }
    .is-grid-active .product-m__wishlist a {
      font-size: 16px;
      color: #a0a0a0;
      transition: color 110ms ease-in-out; }
      .is-grid-active .product-m__wishlist a:hover {
        color: #4B817B; }
  .is-grid-active .product-m__preview-description {
    margin-bottom: 25px;
    font-size: 12px;
    color: #7f7f7f;
    margin-top: -6px; }

.is-grid-active .product-m:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); }
  .is-grid-active .product-m:hover .product-m__add-cart {
    opacity: 1;
    visibility: visible; }
  .is-grid-active .product-m:hover .product-m__quick-look {
    opacity: 1;
    visibility: visible; }
  .is-grid-active .product-m:hover .product-m__hover {
    top: 99%;
    opacity: 1;
    visibility: visible; }

.is-list-active {
  display: block; }
  .is-list-active [class*="col-"] {
    display: block;
    max-width: 100%;
    width: 100%; }

.is-list-active .product-m {
  padding: 15px 0;
  transition: 0.3s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .is-list-active .product-m__thumb {
    position: relative;
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 15px;
    padding-left: 15px; }
  .is-list-active .product-m__add-cart {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s; }
    .is-list-active .product-m__add-cart > a {
      padding: 12px;
      border-radius: 0.125rem;
      font-size: 13px;
      width: 100%;
      text-align: center;
      display: block; }
  .is-list-active .product-m__quick-look {
    position: absolute;
    top: 8px;
    right: 22px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s; }
    .is-list-active .product-m__quick-look > a {
      font-size: 16px;
      color: #4B817B;
      transition: color 110ms ease-in-out; }
      .is-list-active .product-m__quick-look > a:hover {
        color: #4B817B; }
  .is-list-active .product-m__content {
    position: relative;
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%;
    padding-right: 15px;
    padding-left: 15px; }
  .is-list-active .product-m__category {
    margin-bottom: 2px;
    line-height: 1.2; }
    .is-list-active .product-m__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .is-list-active .product-m__category > a:hover {
        color: #4B817B; }
  .is-list-active .product-m__name > a {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.5s; }
    .is-list-active .product-m__name > a:hover {
      color: #4B817B; }
  .is-list-active .product-m__price {
    margin-bottom: 8px;
    line-height: 1.2;
    color: #333333;
    font-size: 14px;
    font-weight: 600; }
  .is-list-active .product-m__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #4B817B;
    font-size: 14px;
    text-decoration: line-through; }
  .is-list-active .product-m__rating {
    margin-bottom: 6px; }
    .is-list-active .product-m__rating i {
      font-size: 12px; }
  .is-list-active .product-m__review {
    margin-left: 4px;
    font-size: 11px;
    color: #a0a0a0; }
  .is-list-active .product-m__preview-description {
    font-size: 12px;
    color: #7f7f7f; }
  .is-list-active .product-m__wishlist {
    position: absolute;
    right: 12px;
    bottom: 13px; }
    .is-list-active .product-m__wishlist a {
      font-size: 16px;
      color: #a0a0a0;
      transition: color 110ms ease-in-out; }
      .is-list-active .product-m__wishlist a:hover {
        color: #4B817B; }

.is-list-active .product-m:hover {
  background: #ffffff;
  border-radius: 0.1875rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2); }
  .is-list-active .product-m:hover .product-m__add-cart {
    opacity: 1;
    visibility: visible; }
  .is-list-active .product-m:hover .product-m__quick-look {
    opacity: 1;
    visibility: visible; }

.shop-p__pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .shop-p__pagination > li {
    margin-right: 14px; }
    .shop-p__pagination > li:last-child {
      margin-right: 0; }
    .shop-p__pagination > li > a {
      width: 42px;
      text-align: center;
      height: 42px;
      line-height: 42px;
      font-size: 12px;
      display: block;
      font-weight: 600;
      border-radius: 50%;
      background-color: transparent;
      color: #333333; }
  .shop-p__pagination > li.is-active > a {
    background-color: #f7f7f7; }
  .shop-p__pagination > li:not(.is-active) > a:hover {
    color: #4B817B;
    text-decoration: underline; }

.shop-a__wrap {
  position: fixed;
  top: 0;
  width: 350px;
  min-height: 100vh;
  bottom: 0;
  z-index: 9999;
  right: 0;
  transition: all 400ms ease-out;
  -webkit-transform: translate(200px, 0);
          transform: translate(200px, 0);
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.09);
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0; }

.shop-a__inner {
  overflow: auto;
  height: 100%;
  padding: 1.25rem 1.125rem; }

.shop-a.is-open .shop-a__wrap {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
  opacity: 1; }

@media (max-width: 575px) {
  .is-list-active .product-m__thumb {
    margin-bottom: 30px;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .is-list-active .product-m__content {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .is-list-active .product-m__wishlist {
    position: static;
    text-align: right; }
  .shop-p__tool-style {
    display: block; }
  .tool-style__form-wrap {
    display: block; }
    .tool-style__form-wrap div + div {
      margin-left: 0; } }

/*--------------------------------------------------------------
20.0 Vendor Extension Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
20.1 Bootstrap
--------------------------------------------------------------*/
/* Modal styles */
.modal {
  z-index: 999999; }

.modal-content {
  display: block !important;
  border: none;
  border-radius: 0; }

.modal--radius {
  border-radius: 8px; }

.modal--shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); }

/* Tootip styles */
.tooltip {
  font-family: "Helvetica Neue", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600; }

.tooltip.show {
  opacity: 1; }

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: #f5f5f5; }

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  border-right-color: #f5f5f5; }

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: #f5f5f5; }

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: #f5f5f5; }

.tooltip-inner {
  color: #333333;
  background-color: #f5f5f5;
  border-radius: 2px; }

@media (max-width: 991px) {
  .tooltip.show {
    opacity: 0; } }

/*--------------------------------------------------------------
20.2 jquery.shopnav
--------------------------------------------------------------*/
.ah-list {
  margin: 0;
  padding: 0; }
  .ah-list li {
    list-style: none; }
  .ah-list ul {
    margin: 0;
    padding: 0; }

.ah-list--design1 > li {
  display: inline-block; }
  .ah-list--design1 > li > a {
    display: inline-block;
    font-size: 16px;
    padding: 28px 18px; }

.ah-list--link-color-secondary > li > a {
  color: #333333; }

.ah-list--link-color-white > li > a {
  color: #ffffff; }

.ah-list--design2 > li {
  display: inline-block; }
  .ah-list--design2 > li > a {
    font-weight: normal;
    font-size: 13px;
    display: inline-block;
    padding: 31px 14px;
    line-height: 18px;
    font-style: normal;
    letter-spacing: 0.1em; }

.has-dropdown > ul .has-dropdown {
  position: relative; }

.has-dropdown > ul {
  background-color: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
  position: absolute;
  text-align: left;
  padding: 20px 0 20px;
  z-index: 999;
  white-space: nowrap;
  transition: all 0.3s ease;
  top: 120%;
  opacity: 0;
  visibility: hidden; }
  .has-dropdown > ul > li > a {
    display: block;
    padding: 8px 20px;
    color: #333333;
    font-size: 12px;
    font-weight: 600; }

.has-dropdown--ul-left-100 > ul {
  left: 100%; }

.has-dropdown--ul-right-100 > ul {
  right: 100%; }

@media (max-width: 1024px) {
  .menu-init .fa-angle-down:before {
    content: none; }
  .menu-init.js-open .ah-lg-mode {
    left: 0;
    transition: all .4s ease-in-out; }  
    .menu-init.js-open .ah-lg-mode-1 {
      left: 0;
      transition: all .4s ease-in-out; }   
  .menu-init.js-open:after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 19999; }
  .ah-lg-mode {
    position: fixed;
    left: -315px;
    width: 315px;
    height: 100%;
    top: 0;
    background-color: #4B817B;
    z-index: 20000;
    overflow-y: auto;
  }
    .ah-lg-mode-1 {
      position: fixed;
      left: -0px;
      width: 315px;
      height: 100%;
      top: 0;
      background-color: #4B817B;
      z-index: 20000;
      overflow-y: auto; 
    }
  .ah-close {
    color: #fff;
    padding: 5px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: block; 
    margin: 20px 20px 0 auto;
    text-align: right;
  }
  .ah-list > li {
    position: relative;
    display: block;
    /*border-top: 1px solid #f8f8f8; */}
    .ah-list > li > a {
      display: block;
      padding: 8px 18px; }
  .ah-list > li:last-child {
   /* border-bottom: 1px solid #f8f8f8;*/ }
  .ah-list--design1 > li > a, .ah-list--design2 > li > a {
    font-weight: normal;
    font-size: 14px; }
  .ah-list--link-color-white > li > a {
    color: #333333; }
  .js-menu-toggle {
    width: 21px;
    display: block;
    height: 21px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.13);
    position: absolute;
    right: 15px;
    top: 6px;
    transition: all .3s;
    cursor: pointer; }
    .js-menu-toggle:after {
      font-family: 'Helvetica Neue';
      content: "\F067";
      position: absolute;
      top: 50%;
      width: 100%;
      font-weight: 900;
      color: #333333;
      display: block;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      text-align: center;
      font-size: 8px; }
    .js-menu-toggle.js-toggle-mark:after {
      content: "\F068"; }
  .has-dropdown > ul {
    width: 100% !important;
    box-shadow: none;
    transition: none;
    position: static;
    padding: 0 0 10px;
    opacity: 1;
    visibility: visible;
    display: none; }
    .has-dropdown > ul > li {
      padding: 0; }
      .has-dropdown > ul > li > a {
        display: block; }
  .ah-list > li > ul > li > a {
    padding: 8px 36px; }
  .ah-list > li > ul > li > ul > li > a {
    padding: 8px 54px; }
  .ah-list > li > ul > li > ul > li > ul > li > a {
    padding: 8px 72px; } }

@media (min-width: 1025px) {
  .toggle-button {
    display: none; }
  .ah-close {
    display: none; }
  .ah-list > li > a:hover {
    color: #4B817B; }
  .has-dropdown > ul > li:hover {
    background-color: #fbfbfb; }
  .has-dropdown:hover > ul {
    opacity: 1;
    visibility: visible; }
  .ah-list > .has-dropdown:hover > ul {
    top: 80%; }
  .has-dropdown .has-dropdown:hover > ul {
    top: 0; }
  .ah-list > .has-dropdown:hover > a {
    /*color: #4B817B;*/
    color: #4B817B;
  }

  .has-dropdown > a .fa-angle-down {
    font-size: 10px;
    line-height: 18px;
    float: right; }
  .has-dropdown:hover > a .i-state-right:before {
    content: "\F105"; } }

/* Extension Mega Menu */
.mega-text {
  width: 34px;
  height: 34px;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #4B817B;
  font-size: 12px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  color: #ffffff; }

.mega-menu-list > ul > li > a {
  display: block;
  padding: 10px 22px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px; }

.mega-menu-list > ul > li.js-active {
  background: linear-gradient(225deg, #4B817B, #4B817B); }
  .mega-menu-list > ul > li.js-active > a {
    color: #ffffff; }

.mega-menu-content {
  display: none; }

.mega-menu-content.js-active {
  display: block; }

.mega-menu-content [class*="col-"] > ul > li > a {
  padding: 4px 0;
  display: block;
  color: #333333;
  font-size: 13px;
  transition: color 0.5s; }
  .mega-menu-content [class*="col-"] > ul > li > a:hover {
    color: #4B817B; }

.mega-menu-content [class*="col-"] > ul > .mega-list-title > a {
  font-weight: 700; }

.mega-menu-content > h5 {
  font-weight: 600;
  margin: 6px 0 0;
  font-size: 12px;
  color: #000000; }

@media (max-width: 1024px) {
  .toggle-mega-text {
    width: 34px;
    display: inline-block;
    height: 34px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: #4B817B;
    font-size: 12px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    color: #ffffff; }
  .mega-menu {
    display: none; }
  .mega-menu-list {
    padding: 20px;
    border: 1px solid #f6f6f6; }
    .mega-menu-list > ul > li {
      position: relative; }
  .mega-menu-content {
    padding: 20px; }
  .mega-menu-content .row {
    display: block; }
  .mega-menu-content [class*="col-"] {
    margin-bottom: 15px;
    max-width: 100%; }
  .mega-image {
    display: none; } }

@media (min-width: 1025px) {
  .js-open.mega-text {
    -webkit-animation: mypulse 1s;
            animation: mypulse 1s; }
  .js-open.mega-text ~ .mega-menu {
    display: block; }
  .mega-menu {
    display: none;
    padding: 30px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    position: absolute;
    z-index: 998;
    top: 100%; }
  .mega-menu-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .mega-menu-list {
    -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    max-width: 20%; }
  .mega-menu-content {
    -ms-flex: 0 0 80%;
        flex: 0 0 80%;
    max-width: 80%;
    overflow-y: auto;
    padding: 0 17px;
    height: 370px;
    transition: opacity 0.5s;
    display: none; }
    .mega-menu-content::-webkit-scrollbar {
      width: 8px; }
    .mega-menu-content::-webkit-scrollbar-track {
      background: #eee; }
    .mega-menu-content::-webkit-scrollbar-thumb {
      background: #888; }
    .mega-menu-content::-webkit-scrollbar-thumb:hover {
      background: #555; }
  .mega-banner {
    position: relative;
    overflow: hidden; }
    .mega-banner img {
      -webkit-transform: scale(1);
              transform: scale(1);
      transition: all 0.6s ease-in-out; }
    .mega-banner:hover img {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
  .mega-image {
    margin: auto 0; } }

/* Extension Mini Cart */
.mini-cart-shop-link {
  position: relative; }
  .mini-cart-shop-link > .total-item-round {
    top: 16px;
    left: 32px; }

.total-item-round {
  width: 24px;
  position: absolute;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  background-color: black;
  color: #ffffff; }

.mini-cart {
  background-color: #ffffff;
  box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.06);
  /* width: 478px; */
  padding: 14px;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 998;
  /* top: 100%; */
  opacity: 0;
  right: -28px;
  visibility: hidden; 
  margin-top:-20px;
}

.mini-product-container {
  max-height: 280px;
  padding: 17px;
  overflow-y: auto; }

.card-mini-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px;
  margin-bottom: 22px; }
  .card-mini-product:last-child {
    margin-bottom: 0; }

.mini-product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .mini-product__image-wrapper {
    margin-right: 20px; }
  .mini-product__link {
    background-color: #f5f5f5;
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 80px; }
    .mini-product__link img {
      display: block;
      min-width: 80px; }
  .mini-product__category {
    display: block; }
    .mini-product__category > a {
      color: #a0a0a0;
      transition: color 0.5s;
      font-size: 12px; }
      .mini-product__category > a:hover {
        color: #4B817B; }
  .mini-product__name {
    display: block; }
    .mini-product__name > a {
      color: #333333;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.5s; }
      .mini-product__name > a:hover {
        color: #4B817B; }
  .mini-product__quantity {
    font-size: 12px;
    margin-right: 4px;
    color: #333333; }
  .mini-product__price {
    font-size: 14px;
    font-weight: 600;
    color: #333333; }
  .mini-product__delete-link {
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    color: #333333;
    transition: color 0.5s; }
    .mini-product__delete-link:hover {
      color: #4B817B; }

.mini-total {
  margin-bottom: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }

.subtotal-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333; }

.subtotal-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333333; }

.mini-link {
  display: block;
  text-align: center;
  padding: 12px 42px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 10px; }

.mini-action {
  width: 65%;
  margin: 0 auto; }

@media (max-width: 1024px) {
  .mini-cart-shop-link > .total-item-round {
    top: 5px;
    left: 38px; }
  .toggle-button-shop + .total-item-round {
    top: 5px;
    right: 10px; }
  .has-dropdown > .mini-cart {
    width: 100% !important;
    box-shadow: none;
    transition: none;
    padding: 14px;
    position: static;
    opacity: 1;
    visibility: visible;
    display: none; }
  .mini-product-container {
    max-height: 836px; }
  .card-mini-product {
    display: block;
    text-align: center; }
  .mini-product {
    display: block; }
    .mini-product__image-wrapper {
      margin-right: 0;
      margin-bottom: 10px; }
    .mini-product__info-wrapper {
      padding: 0;
      display: block;
      margin-bottom: 10px; }
  .mini-total {
    margin-bottom: 22px; } }

@media (min-width: 1025px) {
  .toggle-button-shop + .total-item-round {
    display: none; }
  .has-dropdown:hover > .mini-cart {
    top: 100%;
    opacity: 1;
    visibility: visible; } 
    .has-dropdown:hover > .mini-cart:after {
      content: '';
      display: block;  
      position: absolute;
      right: 112px;
      bottom: 100%;
      width: 0;
      height: 0;
      border-bottom: 15px solid white;
      border-top: 15px solid transparent;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
    }
  }

/*--------------------------------------------------------------
20.3 Owl-Carousel
--------------------------------------------------------------*/
.slider-fouc {
  display: none; }

.s-skeleton {
  position: relative; }
  .s-skeleton--h-200 {
    min-height: 200px; }
  .s-skeleton--h-500 {
    min-height: 500px; }
    .s-skeleton--h-450 {
      min-height: 450px; }
  .s-skeleton--h-400 {
    min-height: 400px; }
 
  .s-skeleton--h-600 {
    min-height: 600px; }
  .s-skeleton--h-640 {
    min-height: 640px; }
  .s-skeleton--bg-grey {
    background-color: #f5f5f5; }
  .s-skeleton--bg-black {
    background-color: #000000; }
  .s-skeleton .owl-carousel {
    position: static; }


      .primary-style-1 .hero-slide-400 {
        min-height: 400px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center; } 

      .primary-style-1 .hero-slide-show {
        height: 300px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center; }     

.primary-style-2 .hero-slide {
  height: 600px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

.primary-style-3 .hero-slide {
  height: 640px; }

.primary-style-3-wrap {
  position: absolute;
  bottom: 120px;
  z-index: 1;
  width: 100%; }

.hero-slide {
  background: center center/cover no-repeat; }
  /* .hero-slide--1 {
    background-image: url(../images/slider/slide-1.jpg); }
  .hero-slide--2 {
    background-image: url(../images/slider/slide-2.jpg); }
  .hero-slide--3 {
    background-image: url(../images/slider/slide-3.jpg); }
  .hero-slide--4 {
    background-image: url(../images/slider/slide-4.jpg); }
  .hero-slide--5 {
    background-image: url(../images/slider/slide-5.jpg); }
  .hero-slide--6 {
    background-image: url(../images/slider/slide-6.jpg); }
  .hero-slide--7 {
    background-image: url(../images/slider/slide-7.jpg); }
  .hero-slide--8 {
    background-image: url(../images/slider/slide-8.jpg); }
  .hero-slide--9 {
    background-image: url(../images/slider/slide-9.jpg); } */

.owl-carousel .owl-dots {
  position: absolute; }

.owl-carousel button.owl-dot:focus {
  outline: 0; }

.owl-carousel.primary-style-1 .owl-dots {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px; }

.owl-carousel.primary-style-1 button.owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  margin-bottom: 6px;
  background: #e1e1e1;
  transition: background 0.8s ease-out; }
  .owl-carousel.primary-style-1 button.owl-dot:last-child {
    margin-bottom: 0; }
  .owl-carousel.primary-style-1 button.owl-dot.active, .owl-carousel.primary-style-1 button.owl-dot:hover {
    background: transparent linear-gradient(-180deg, #4B817B 0%, #ff6a33 100%); }

.owl-carousel.primary-style-2 .owl-dots {
  width: 100%;
  text-align: center;
  bottom: 20px; }

.owl-carousel.primary-style-2 button.owl-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 50%;
  background-color: #7f7f7f;
  transition: background 0.8s ease-out; }
  .owl-carousel.primary-style-2 button.owl-dot:last-child {
    margin-right: 0; }
  .owl-carousel.primary-style-2 button.owl-dot.active, .owl-carousel.primary-style-2 button.owl-dot:hover {
    background-color: #ffffff; }

.primary-style-2-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .primary-style-2-container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .primary-style-2-container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .primary-style-2-container {
    max-width: 960px; } }

.owl-carousel.primary-style-3 .owl-dots {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px; }

.owl-carousel.primary-style-3 button.owl-dot {
  width: 5px;
  height: 32px;
  display: block;
  margin-bottom: 6px;
  background-color: #f3f3f3;
  transition: background 0.8s ease-out; }
  .owl-carousel.primary-style-3 button.owl-dot:last-child {
    margin-bottom: 0; }
  .owl-carousel.primary-style-3 button.owl-dot.active, .owl-carousel.primary-style-3 button.owl-dot:hover {
    background-color: #4B817B; }

.owl-carousel#testimonial-slider .owl-dots {
  width: 100%;
  text-align: center;
  bottom: -30px; }

.owl-carousel#testimonial-slider button.owl-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  border: 1px solid #333333;
  margin-right: 4px;
  border-radius: 50%;
  background-color: transparent;
  transition: background 0.8s ease-out; }
  .owl-carousel#testimonial-slider button.owl-dot:last-child {
    margin-right: 0; }
  .owl-carousel#testimonial-slider button.owl-dot.active, .owl-carousel#testimonial-slider button.owl-dot:hover {
    background-color: #333333; }

.content-span-1 {
  font-size: 1.25rem;
  font-weight: 700;
  display: block; }

.content-span-2 {
  font-weight: 700;
  font-size: 3.25rem;
  display: block; }

.content-span-3 {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px; }

.content-span-4 {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 20px; }
  .content-span-4 span {
    font-weight: 700;
    margin-left: 4px;
    font-size: 1.375rem; }

.shop-now-link {
  padding: 18px 53px;
  font-size: 0.75rem;
  position: relative;
  transition: background 0.3s;
  text-align: center;
  border-radius: 6px;
  display: inline-block; }

.owl-item .slider-content--animation * {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-item.active .content-span-1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.owl-item.active .content-span-2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.owl-item.active .content-span-3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.owl-item.active .content-span-4 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.owl-item.active .shop-now-link {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.product-slider, .tab-slider {
  position: static; }
  .product-slider .owl-item:hover, .tab-slider .owl-item:hover {
    z-index: 2; }

/* Products-Slider (Previous & Next Buttons) */
.section__content:hover .p-prev, .section__content:hover .t-prev, .section__content:hover .p-next, .section__content:hover .t-next {
  opacity: 1; }

.p-prev, .p-next {
  text-align: center;
  box-shadow: 0 6px 15px 5px rgba(36, 37, 38, 0.08);
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 72px;
  line-height: 72px;
  width: 36px;
  background-color: #ffffff;
  margin: auto 0;
  transition: opacity .6s ease-in,background-color .6s ease-in;
  opacity: 0; }
  .p-prev > i, .p-next > i {
    font-size: 14px;
    color: #333333;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.p-prev {
  left: 0;
  border-bottom-right-radius: 90px;
  border-top-right-radius: 90px; }
  .p-prev > i {
    left: 6px; }

.p-next {
  right: 0;
  border-bottom-left-radius: 90px;
  border-top-left-radius: 90px; }
  .p-next > i {
    right: 6px; }

.t-prev, .t-next {
  text-align: center;
  z-index: 1;
  display: inline-block;
  box-shadow: 0 6px 15px 5px rgba(36, 37, 38, 0.08);
  background-color: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  height: 36px;
  line-height: 36px;
  width: 36px;
  margin: auto 0;
  transition: opacity .6s ease-in;
  opacity: 0; }
  .t-prev > i, .t-next > i {
    font-size: 14px;
    color: #333333;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.t-prev {
  left: 0;
  border-bottom-right-radius: 90px;
  border-top-right-radius: 90px; }
  .t-prev > i {
    left: 10px; }

.t-next {
  right: 0;
  border-bottom-left-radius: 90px;
  border-top-left-radius: 90px; }
  .t-next > i {
    right: 10px; }

#brand-slider .owl-stage {
  margin: 1.25rem 0; }

.brand-slide {
  width: 155px;
  height: 60px;
  margin: 0 auto; }
  .brand-slide a {
    display: block;
    background-color: #ffffff;
    transition: all .3s; }
    .brand-slide a:hover {
      box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, 0.2); }

.b-prev, .b-next {
  text-align: center;
  z-index: 1;
  display: inline-block;
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 0;
  height: 36px;
  line-height: 36px;
  width: 36px;
  box-shadow: 0 6px 15px 5px rgba(36, 37, 38, 0.08);
  background-color: #ffffff;
  margin: auto 0;
  transition: opacity .6s ease-in;
  opacity: 0; }
  .b-prev > i, .b-next > i {
    font-size: 14px;
    color: #333333; }

.b-prev {
  left: 0; }

.b-next {
  right: 0; }

/* Brand-Slider (Previous & Next Buttons) */
.section__content:hover .b-prev, .section__content:hover .b-next {
  opacity: 1; }

/*--------------------------------------------------------------
20.4 jquery.scrollUp
--------------------------------------------------------------*/
/* ScrollUp Custom */
#topScroll {
  right: 24px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  box-shadow: 2px 2px 4px 4px rgba(36, 37, 38, 0.08);
  background-color: #ffffff;
  color: #333333;
  font-size: 18px;
  text-align: center; }

/*--------------------------------------------------------------
20.5 Slick Carousel
--------------------------------------------------------------*/
.slick-slide, .slick-slide * {
  outline: none; }

#pd-o-thumbnail .slick-slide:not(.slick-current) {
  opacity: .4; }

#js-product-detail-modal-thumbnail .slick-slide:not(.slick-current) {
  opacity: .4; }

.pt-prev, .pt-next {
  text-align: center;
  z-index: 1;
  display: inline-block;
  position: absolute;
  top: 0;
  cursor: pointer;
  bottom: 0;
  border-radius: 50%;
  height: 36px;
  line-height: 36px;
  width: 36px;
  margin: auto 0;
  transition: opacity ease-in-out .5s, background-color ease-in 0.3s;
  background-color: #ffffff;
  opacity: 0; }
  .pt-prev i, .pt-next i {
    font-size: 12px;
    color: #000000; }

.pt-prev {
  left: 20px; }

.pt-next {
  right: 20px; }

#pd-o-thumbnail:hover .pt-prev, #pd-o-thumbnail:hover .pt-next {
  opacity: .8; }

#js-product-detail-modal-thumbnail:hover .pt-prev, #js-product-detail-modal-thumbnail:hover .pt-next {
  opacity: .8; }

  

/* Zoom In #1 */
.hover01 img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
  width:auto;
}


.search_bar{
    border-radius: 0 0 2px 2px;
    border-top: 1px solid #e0e0e0;
    position: absolute;
    background-color: #fff;
    color: #000;
    z-index: 9;
    box-shadow: 2px 3px 5px -1px rgb(0 0 0 / 50%);
    overflow: hidden;
    max-height: 350px;
    overflow-y: auto;  
    scrollbar-color: red yellow; 
}


/* Let's get this party started */
.search_bar::-webkit-scrollbar {
  width: 3px;
  scrollbar-face-color: #367CD2;
  scrollbar-shadow-color: #dad9d9;
  scrollbar-highlight-color: #FFFFFF;
  scrollbar-3dlight-color: #FFFFFF;
  scrollbar-darkshadow-color: #FFFFFF;
  scrollbar-track-color: #FFFFFF;
  scrollbar-arrow-color: #FFFFFF;
}

/* Track */
.search_bar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* Handle */
.flexcroll::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255,0,0,0.8); 
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}


.spinner-border {
  border: 2px solid black;
  border-radius: 50%;
  border-right-color: transparent;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.main-search-button-loader {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.input-error{
  border-color: red;
}

.btn-padd{
    padding-left: 14px;
    padding-top: 6px;
}

.u-img-fluid-mini-cart {
    width: 100%;
    max-width: 100%;
    height: 89px;
}


.u-s-p-y-075 {
  padding-top: 0.75rem;
}

.white-text{
  color:#fff !important;
}


.s-skeleton--h-450 {
  min-height: 600px;
}

.primary-style-1 .hero-slide-s450 {
  height: 600px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }


 .margin-18
 {
  margin-top: -18px;
  margin-bottom: -18px;
 }     


 .red-alert{
   border-color: 1px solid red;
 }


 .u-menu-close {
    z-index: 1;
    position: relative;
    width: 22px;
    height: 28px;
    margin: 20px 20px 0 auto;
    text-align: right;
    font-style: initial;
    letter-spacing: initial;
    font-weight: initial;
    display: block;
}

.input-text-margin-20p
{
  margin-left: 20px;
  /* background: rgba(255, 255, 255, 0.1); */
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    /* color: white !important; */
}

.has-slide-dropdown > ul .has-slide-dropdown {
  position: relative; }

.has-slide-dropdown > ul {
  width: 100% !important;
    box-shadow: none;
    transition: none;
    position: static;
    padding: 0 0 10px;
    opacity: 1;
    visibility: visible;
    background-color: white;
}
  .has-slide-dropdown > ul > li > a {
    display: block;
    padding: 8px 20px;
    color: #333333;
    font-size: 12px;
    font-weight: 600; }
.u-image{
    object-fit: cover;
    display: block;
    vertical-align: middle;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
legend {
  font: 15pt/0 'Averia Serif Libre'; 
  margin: auto; /* to center */
  padding: 0 4px; 
}

.main-search-button-dash {
  position: absolute;
  top: 55%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: white;
}


.main-search-button-loader-dash {
  position: absolute;
  top: 25%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
.filter-grey{

  color: #4B817B;
}

.header-text
{
  font-family: 'Helvetica Neue';
  font-style: normal;
  font-weight:500;
  font-size:12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: black;
  margin-left: -9px;

}

input[type="email"]::-webkit-input-placeholder {
  color: white !important;
  }
   
  input[type="email"]:-moz-placeholder { /* Firefox 18- */
  color: white !important;  
  }
   
  input[type="email"]::-moz-placeholder {  /* Firefox 19+ */
  color: white !important;  
  }
   
  input[type="email"]:-ms-input-placeholder {  
  color: white !important;  
  }


  
  

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  .mar-20-checkout{
    margin-left:20px;
    margin-right:20px;
  }
  .product-o {
    padding: 20px;
    background-color: #ffffff; }
  .search-back
  {
    background-color: white;
    margin-left: 20px;
    width: 260px;
  }
  .mar-dd-prod-image{
    margin-left:-30px;
  }
  .po-price-margin{
    color:black;
    margin-left:0px;
  }
  .home-image-margin{
    margin-left: 20px;
    margin-right: 20px;
  }
  .checkout-input-width{
    width:100%;
  }
  /* .container {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
} */
  .margin-unique-offering
{
  margin-left: 0px;
  margin-right: 0px;
}
  .margin-left-data{
    margin-left:20px;
    margin-right:20px;
 }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    /* font-size: 1.06667vw; */
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
  .primary-style-1 .hero-slide {
    /*height: 600px;*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }

        .main-logo-margin
        {
          margin-right: 0px;
        }  
        
        
        .flower-club-header
        {
          font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-align: center;
        }
      
        .flower-club-text
        {
          font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-style: normal;
    text-align: center;
        }

        .button-sign {
          width: 170px;
          height: 38px;
          padding: 0;
          text-align: center;
          line-height: 20px;
          font-size: 16px;
          font-weight: bold;
          text-transform: uppercase;
          background-color: #fddfe7;
          color: #3c6b58;
          border-color: #fddfe7;
          border: none;
      }

      .section__heading {
        font-style: normal;
        font-weight: bold;
        letter-spacing: 0.22em;
        font-size: 22px;
        line-height: 32px;
        text-transform: capitalize;
        color: #4B817B !important;
        position: relative;
    }

    .unique-text {
      line-height: 20px;
      font-size: 16px;
      padding-right: 90px;
      padding-left: 90px;
  }

  .mobile-footer-about
  {
    margin-left: 0px;
  }

  .section__heading_flower_club {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: px;
    text-transform: capitalize;
    color: #111111;
    position: relative;
  }



  .flower-margin-top
{
  margin-top: 0px;
}
  
.margin-enjoy-section
  {
    margin-right: 7px;
  }

      
    

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
 
  .product-o {
    padding: 20px;
    background-color: #ffffff; }
    .mar-tab-prod-details{
      margin-left:100px;
      margin-right:100px;
    }
  
  .search-back
  {
    background-color: white;
    margin-left: 20px;
    width: 260px;
  }
  .mar-dd-prod-image{
    margin-left:115px;
  }
  .po-price-margin{
    color:black;
    margin-left:0px;
  }
  .home-image-margin{
    margin-left: 0px;
    margin-right: 0px;
  }
  .checkout-input-width{
    width:100%;
  }
  /* .container {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
} */
  .margin-unique-offering
{
  margin-left: 0px;
  margin-right: 0px;
}
  .margin-left-data{
    margin-left:20px;
    margin-right:20px;
 }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    /* font-size: 1.06667vw; */
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
  .primary-style-1 .hero-slide {
   /*height: 600px;*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }

        .main-logo-margin
        {
          margin-right: 1px;
        }  
        
        
        .flower-club-header
        {
          font-family: 'Helvetica Neue';
          font-style: normal;
          font-weight: bold;
          font-size: 22px;
          line-height: 30px;
          letter-spacing: 0.3em;
          color: #ffffff;
          text-align: center;
        }
      
        .flower-club-text
        {
          font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-style: normal;
    text-align: center;
        }


        .button-sign {
          border: none;
          width: 170px;
          height: 38px;
          padding: 0;
          text-align: center;
          line-height: 20px;
          font-size: 16px;
          font-weight: bold;
          text-transform: uppercase;
          background-color: #fddfe7;
          color: #3c6b58;
          border-color: #fddfe7;
      }

      .section__heading {
        font-style: normal;
        font-weight: bold;
        letter-spacing: 0.22em;
        font-size: 22px;
        line-height: 30px;
        text-transform: capitalize;
        color: #4B817B !important;
        position: relative;
    }

    .unique-text {
      line-height: 20px;
      font-size: 15px;
      padding-right: 90px;
      padding-left: 90px;
  }

  .mobile-footer-about
  {
    margin-left: 0px;
  }
     
  .section__heading_flower_club {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 5px;
    text-transform: capitalize;
    color: #111111;
    position: relative;
  }

  .flower-margin-top
{
  margin-top: 125px;
}

.margin-enjoy-section
  {
    margin-right: 7px;
  }
  
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px)and (max-width: 992px) {

  .product-o {
    padding: 0px;
    background-color: #ffffff; }
  .po-price-margin{
    color:black;
    margin-left:20px;
  }
  .checkout-input-width{
    width:50%;
  }
  .margin-unique-offering
{
  margin-left: 20px;
  margin-right: 20px;
}
  .margin-left-data{
    margin-left:0px;
    margin-right:20px;
 }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    /* font-size: 1.06667vw; */
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
  .primary-style-1 .hero-slide {
    height: 600px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }

    .main-logo-margin
    {
      margin-right: 1px;
    } 

    .flower-club-header
    {
      font-family: 'Helvetica Neue';
      font-style: normal;
      font-weight: bold;
      font-size:24px;
      line-height: 42px;
      letter-spacing:0.3em;
      color: #ffffff;
      text-align: center;
    }
  
    .flower-club-text
    {
      font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-style: normal;
    text-align: center;
    }

    .button-sign {
      border: none;
      width: 234px;
      height: 50px;
      padding: 0;
      text-align: center;
      line-height: 22px;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      margin-top: 17px;
      background-color: #fddfe7;
      color: #3c6b58;
      border-color: #fddfe7;
  }

  .section__heading {
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.48em;
    font-size: 22px;
    line-height: 37px;
    text-transform: capitalize;
    color: #4B817B !important;
    position: relative; 
  }

  .unique-text
  {
    font-size: 16px;
    line-height: 22px;
  }

  .mobile-footer-about
  {
    margin-left: 200px;
  }

  .float-free{
    float: right;
    position: absolute;
    right: 0;
  }


  .section__heading_flower_club {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 37px;
    text-transform: capitalize;
    color: #111111;
    position: relative;
  }

  
  .flower-margin-top
{
  margin-top: 125px;
}

.enjoy-float-right
  {
    float:right;
  }

  .margin-enjoy-section
  {
    margin-right: 7px;
  }

  
    

}



/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  
  .product-o {
    padding: 0px;
    background-color: #ffffff; }
  .po-price-margin{
    color:black;
    margin-left:20px;
  }
  .checkout-input-width{
    width:50%;
  }
  .margin-unique-offering
{
  margin-left: 200px;
  margin-right: 200px;
}
  .margin-left-data{
    margin-left:300px;
    margin-right:300px;
 }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    font-size: 1.06667vw;
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
  .primary-style-1 .hero-slide {
    height: 600px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }

    .main-logo-margin
    {
      margin-right:1px;
    }  
    
    .flower-club-header
    {
      font-family: 'Helvetica Neue';
      font-style: normal;
      font-weight: bold;
      font-size:24px;
      line-height: 42px;
      letter-spacing:0.3em;
      color: #ffffff;
      text-align: center;
      text-align: center;
    }
  
    .flower-club-text
    {
      font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-style: normal;
    text-align: center;
    }

    .button-sign {
      border: none;
      width: 155px;
      height: 45px;
      padding: 0;
      text-align: center;
      line-height: 22px;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      margin-top: 17px;
      background-color: #fddfe7;
      color: #3c6b58;
      border-color: #fddfe7;
  }

  .section__heading {
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.48em;
    font-size: 22px;
    line-height: 37px;
    text-transform: capitalize;
    color: #4B817B !important;
    position: relative; 
  }

  .unique-text
  {
    font-size: 16px;
    line-height: 22px;
  }

  .mobile-footer-about
  {
    margin-left: 200px;
  }

  .float-free{
    float: right;
    position: absolute;
    right: 0;
  }

  .section__heading_flower_club {
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 5px;
    text-transform: capitalize;
    color: #111111;
    position: relative;
  }

  .flower-margin-top
{
  margin-top: 125px;
}

.enjoy-float-right
  {
    float:right;
  }
  


  
    
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
 
  .product-o {
    padding: 20px;
    background-color: #ffffff; }
  .po-price-margin{
    color:black;
    margin-left:20px;
  }
  .checkout-input-width{
    width:50%;
  }
  .margin-unique-offering
{
  margin-left: 200px;
  margin-right: 200px;
}
  .margin-left-data{
    margin-left:300px;
    margin-right:300px;
 }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    font-size: 1.06667vw;
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
  .margin-both-side{
    margin-right: 250px;
    margin-left: 250px;
  }
  .enjoy-float-right
  {
    float:right;
  }
  .primary-style-1 .hero-slide {
    height: 600px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }

    .main-logo-margin
    {
      margin-right: 0px;
    } 

    .flower-club-header
    {
      font-family: 'Helvetica Neue';
      font-style: normal;
      font-weight: bold;
      font-size:24px;
      line-height: 42px;
      letter-spacing:0.3em;
      color: #ffffff;
      text-align: center;
    }
  
    .flower-club-text
    {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-style: normal;
    text-align: center;
    }

    .button-sign {
      border: none;
      width: 170px;
      height: 45px;
      padding: 0;
      text-align: center;
      line-height: 22px;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      margin-top: 17px;
      background-color: #fddfe7;
      color: #3c6b58;
  }
  

  .section__heading {
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.48em;
    font-size: 22px;
    line-height: 37px;
    text-transform: capitalize;
    color: #4B817B !important;
    position: relative; 
  }

  .unique-text
  {
    font-size: 16px;
    line-height: 22px;
  }

  .mobile-footer-about
  {
    margin-left: 200px;
  }

  .float-free{
    float: right;
    position: absolute;
    right: 0;
  }


  .button-summer-collection {
    width: 318px;
    height: 68px;
    padding: 0;
    text-align: center;
    line-height: 30px;
    font-size: 24.48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    background-color: #ffffff;
    color: #3c6b58;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border: none;
    margin-left: 0px;
}

.section__heading_flower_club {
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 5px;
  text-transform: capitalize;
  color: #111111;
  position: relative;
}

.flower-margin-top
{
  margin-top: 125px;
}


  
        
}



.best_flower_image_text{
  padding-left: 5px;
  padding-right: 20px;
}
   

.dropdown6 {
  position: relative;
  display: inline-block;
}

.dropdown-content6 {
  display: none;
  position: absolute;
  background-color: white;
  width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 3;
  margin-left: -15px;  
}



.dropdown6:hover .dropdown-content6 {
  display: block;
}


.gl-label-enjoy {
  /* margin-bottom: 8px; */
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
}

.enjoy-email
{  
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  opacity: 0.7;
  font-style: normal;
  color: #ffffff !important;
  border: 1px solid white;
  background-clip: padding-box;
  padding: 0 18px;
  height: 45px;
}

.flower-first-row-text
{
  font-size: 26px;
  color: black;
  font-weight: bold;
}
.redData
{
  border-color: red;
}






._2KScOi {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    fill: currentColor;
    height: 1em;
    width: auto;
    max-width: 1.2em;
    pointer-events: none;
}

svg {
    display: block;
    width: 100%;
}

.eYUDqF {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



._33E7Zx {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
}

._2FgJ1j {
  font-family: GillSans,Helvetica,Arial,sans-serif;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666;
  -webkit-transition: color .6s cubic-bezier(.165,.84,.44,1);
  transition: color .6s cubic-bezier(.165,.84,.44,1);
}

._8rUS5i {
  width: 13px;
  height: auto;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  fill: #929292;
  -webkit-transition: fill .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
  transition: fill .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
  transition: fill .6s cubic-bezier(.165,.84,.44,1),transform .6s cubic-bezier(.165,.84,.44,1);
  transition: fill .6s cubic-bezier(.165,.84,.44,1),transform .6s cubic-bezier(.165,.84,.44,1),-webkit-transform .6s cubic-bezier(.165,.84,.44,1);
}


._2X1NSl {    
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

._2G98bq, .UlovPR {
  -webkit-transition: opacity .2s cubic-bezier(.445,.05,.55,.95),background-color .6s cubic-bezier(.165,.84,.44,1);
  /* transition: opacity .2s cubic-bezier(.445,.05,.55,.95),background-color .6s cubic-bezier(.165,.84,.44,1); */
}

._1ln7gh {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

._1oLE-k input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  z-index: -1;
  position: absolute;
}


.bubble{
  font-family: SangbleuSans,Helvetica,Arial,sans-serif;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: -.02em;
  text-transform: capitalize;
  border: 1px solid grey;
  padding: 8px;
  border-radius: 36px;
  cursor: pointer;
  margin:10px;
}

/* 
._2aT659, ._24OSh7 {
  font-size: 16px;
  font-size: 1.06667vw;
  font-family: SangbleuSans,Helvetica,Arial,sans-serif;
  line-height: 1em;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 1em;
  height: 2.5em;
  color: #1f1f1f;
  background-color: #fff;
  border-radius: 2.5em;
  box-shadow: 3px 3px 10px rgba(0,0,0,.1);
  -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
  transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
  transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
  transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
  cursor: pointer;
} */

._2KScOi {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  fill: currentColor;
  height: 1em;
  width: auto;
  max-width: 1.2em;
  pointer-events: none;
}

svg {
  display: block;
  width: 100%;
}

.eYUDqF {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.light_grey_bubble{
  background-color: lightgrey;
}

.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #000;
}


.clearAll{
  cursor: pointer;
  border: 1px solid grey;
  padding: 3px;
  font-size: 13px;
  border-radius: 10px;
}


.bg_no_product{
  height: 400px;
  width: 500px;
}

.pad_10{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 25px;
}


.info_div_top{
  background-color: white;
  border-right: 1px #636161;
  border-left: 1px #636161;
  border-top: 1px #636161;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  height: 178px;
}

.info_div_bottom
{
  height: 112px;
  border-bottom: 1px #636161;
  border-right: 1px #636161;
  border-left: 1px #636161;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.u-s-m-b-10px
{
  margin-bottom: 10px
}


.flow-small-text
{
  font-family: 'Helvetica Neue';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  margin-bottom: 8px;
    display: block;
    color: black;
}

.enjoy-email-text
{
  font-size: 30px;
  font-style: normal;
  font-weight: bold;
  font-family: 'Helvetica Nueue !important' ;
  text-transform: capitalize;
  line-height: 18px;
  margin-right: 33px;
}

.unique-offer-text
{
    font-style: normal;
    color: black;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}



hr.line1{
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}




.circle{
	border-radius: 50%;
	margin: 0.15em;
	font-size: 3em;
	}

.footer-line
{
  color:white;
  text-decoration: underline !important;
}  



.button-sign-flower {
  border: none;
  width: 170px;
  height: 45px;
  padding: 0;
  text-align: center;
  line-height: 22px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #fddfe7;
  color: #3c6b58;
}

.margin-e-30
{
    margin-top: 30px;
    margin-bottom: 30px;
}

.padding-top-10
{
  padding-top: 10px;
}

@media screen and (min-width: 992px)
{
 
  .po-price-margin{
    color:black;
    margin-left:20px;
  }
  .checkout-input-width{
    width:50%;
  }
  .margin-unique-offering
{
  margin-left: 200px;
  margin-right: 200px;
}
  .margin-left-data{
     margin-left:20px;
     margin-right:20px;
  }
  ._2aT659, ._24OSh7 {
    font-size: 16px;
    font-size: 1.06667vw;
    font-family: 'Helvetica Neue';
    line-height: 1em;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 1em;
    height: 2.5em;
    color: #1f1f1f;
    background-color: #fff;
    border-radius: 2.5em;
    box-shadow: 3px 3px 10px rgba(0,0,0,.1);
    -webkit-transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1);
    transition: background .2s cubic-bezier(.445,.05,.55,.95),color .2s cubic-bezier(.445,.05,.55,.95),box-shadow .2s cubic-bezier(.445,.05,.55,.95),transform .25s cubic-bezier(.165,.84,.44,1),-webkit-transform .25s cubic-bezier(.165,.84,.44,1);
    cursor: pointer;
}
.f24jj {
    margin-top: 20px;
    top: 0;
    right: 0;
   /* z-index: 999;*/
    position: absolute;
    bottom: 0;
    width: 430px;
    margin-right: var(--viewport-margin-lvp);
}

._3_iMj {
  top: 20px;
  right: 30px;
  width: 350px;
  /*z-index: ;*/
  position: absolute;
  position: -webkit-sticky;
  position: sticky;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -ms-scroll-chaining: none;
  overscroll-behavior-y: contain;
  min-height: 500px;
  margin-left: 50px;
}

._3q1lj, ._2J2vE ._3q1lj {
  overflow-y: auto;
  overflow-x: hidden;
}

}

.detailPanelContainer, .detailPanelContainer .detail-panel, .detailPanelContainer .detail-panel .location-flow, .detailPanelContainer .detail-panel .location-flow .react-tabs, .detailPanelContainer .detail-panel .location-flow .react-tabs .react-tabs__tab-panel--selected {
  height: 100%;
}

._3q1lj {
  padding-top: 25px;
  height: 100%;
}
.b9zld {
  padding: 0 25px;
  position: relative;
  height: 100%;
}
.b9zld ._1luBX {
  font-family: 'Helvetica Heue';
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 41px;  
  text-align: left;
  color: #000000;
  margin-top: 0;
  max-width: 100%;
  margin-bottom: 10px;
  text-transform: capitalize;
}
._2iEmV._2jDNa {
  -ms-flex-align: center;
  align-items: center;
}
._2iEmV {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 100%;
  margin: 1em 0;
}



._3GgWK {
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  height: 65px;
  box-sizing: border-box;
  margin: 0 0 5px;
  padding: 0;
  background: var(--grayscale-white);
  /* border: 1px solid var(--grayscale-light); */
  border-radius: 3px;
  text-align: left;
  cursor: pointer;
}

._2jvQB {
  overflow: hidden;
  width: 80px;
  height: 65px;
}

._3vyL6 {
  -ms-flex-positive: 2;
  flex-grow: 2;
  position: relative;
  border-sizing: border-box;
}

.WPMJi {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

._3GgWK del.yb7aP, ._3GgWK p.yb7aP, ._3GgWK span.yb7aP {
    display: block;
    font-size: 15px;
    /* letter-spacing: .00625rem; */
    color: black;
    line-height: 20px;
    font-weight: bold;
}
._3GgWK ._1CqdI {
  font-size: .875rem;
}

._2roD6, ._1CqdI {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.8;
  padding-right: 4px;
}
.WPMJi ._2P6Ss, ._1CqdI, ._2XLZU {
  color: var(--text-base-color);
}

._3GgWK ._1Zw48 {
  font-size: .75rem;
  padding-left: 4px;
  color: var(--brand-primary-lighter);
}

._3GgWK ._1CqdI {
  font-size: .875rem;
}
._2roD6, ._1CqdI {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.8;
  padding-right: 4px;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 10px 0 !important;
}


.error_news{
  border-color: red;
}

.rating-show-more{
    color: #4B817B;
    line-height: 17px;
    font-size: 16px;
    text-decoration-line: underline;
    margin-left: -15px;
}

.review-modal-button{
  background-color: #4B817B;
    color: white;
    height: 50px;
    width: 235px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 22px;
    border: none;
}


.location-search-input
{
  font-family:'lato',sans-serif;
  width:225px;
  height: 37px;
  border:none;
  font-size:1rem;
  color: rgba(0, 0, 0, 0.4);
}

.input-suggestion{
  width:235px;
  background-color: white;
  display:flex;
  align-items: center;
  font-size: 1rem;
  color:black;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  white-space: initial;
}

.input-index{
  z-index:1000;
  width: 230px;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  background-color: white;
  border: 0;
  z-index: 9999;
  border-bottom: 1px solid black;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .25rem;
}

.l-f-o-u {
    border: 1px solid #eee;
}

.section__heading_club {
  font-size: 28px;
  text-transform: capitalize;
  color: #4B817B;
  position: relative;
  color: black;
}

.image-surround
{
background: #FFFFFF;
box-sizing: border-box;
}

.img-dd
{
  border: 1px solid #4B817B;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.succes-flower-club{
   margin-top: -11px;
    margin-right: -8px;
    background-color: white;
    color: #4B817B;
}


.btn--e-transparent-brand-b-flower-club {
  background-color: #4B817B !important;
  color: #ffffff;  
  transition: border-color .5s ease-in;
  height:40px;
  width:100%;
  border:none;
}

.o-card__info-wrap-flower-club {
  margin-left: 90px;
}

.margin-table{
  margin-top: 2px;
}
.cart-error{
  border-bottom: 1px solid red !important;
}

.closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}
.one {
  color: #8ebf42;
}
.one::placeholder {
  color: white;
}

.makeStyles-paper-data {
  top: 60px;
  right: 20px;
  width: 80vw;
  bottom: 60px;
  height: 400px;
  overflow: hidden;
  position: fixed;
  max-width: 27.5em;
  overflow-y: auto;
  align-items: stretch;
  border-radius: 6px;
  background-color: #fff;
}

.checkout_button
{
  min-width: 170px;
    height: 50px;
    padding: 0;
    text-align: center;
    line-height: 52px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
    border: solid transform 1px;
}

.section__heading_you_may_like {
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.48em;
  font-size: 22px;
  line-height: 37px;
  text-transform: capitalize;
  color: white !important;
  position: relative;
}

.toast_style{
  background-color:#4B817B;
}

.fb-footer{
  margin-left:30px;
  height:26px;
  margin-top:-14px;
}
.insta-footer{
  color:white;
  font-size:25px;
}

.flower-club-small-image{
  height:65px;
}

.container-data {
    width: 100%;
    /* padding-right: 15px; */
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.table-p-mobile {
    width: 100%;
    /* border: 1px solid #eee; */
    border-collapse: collapse;
}

.mar-search-left{
  padding-left:10px;
}
.mar-30-new{
  margin-right: 30px;
  margin-left:30px;
  margin-top:-10px;
  margin-bottom:-18px;
}

.mar-50-new{
  margin-left: 50px;
  margin-right: 50px;
}
.mar-115-new{
  margin-right: -115px;
}

.black-imp{
  color: black !important;
}

.col-white{
  color:white;
}

.width-170{
  width: 170px;
}

.pad-20-l{
  padding-left:20px;
}

.mar-15-top{
  margin-top:15px;
}

.main-logo-style{
  height:65px;
  margin-bottom:14px;
}

.item-top{
  top: 20px;
}

.search-ul{
  width: 450px;
  margin-left: -300px;
}

.account-text{
  margin-left:0px !important;
  padding-left:7px;
}

.your-cart-text{
  color:#4B817B !important;
}


.unique-padding{
  padding-left:70px;
  padding-right:70px;
}



.flowers-club-div{
  color:#4B817B;
  padding: 40px;
  box-sizing: border-box;
  padding-bottom:5px;
}

.flow-img-tag{
  object-fit: cover;
  display: block;
   vertical-align: middle;
   background-size: cover;
   background-position: 78% 50%;
   background-repeat: no-repeat;
}

.pad-10{
  padding-top:10px;
}

.mt-25{
   margin-top:25px
}

.enjoy-span{
  color:white;
  font-size:15px;
}

.mt-18{
  margin-top:18px;
}

.tab-img{
  width:100%;
  cursor:pointer;
}


.tab-flow-club{
    background-color: rgb(75, 129, 123);
    padding: 40px 40px 5px;
    box-sizing: border-box;
}

.btn--e-transparent-continue {
  background-color: rgb(255, 255, 255);
  color: #4B817B !important;
  transition: border-color .5s ease-in;
  height: 40px;
  width: 180px;
  border: 2px solid #4B817B;
}

/* Mac book pro */
@media only screen and (min-width: 1920px) and (max-width: 2560px) 
{
  .s-skeleton--h-300 {
    min-height: 550px; }
}


/* Mac book air */
@media only screen and (min-width: 1390px) and (max-width: 1920px) {
  .s-skeleton--h-300 {
    min-height: 430px; }
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1390px) {
  .s-skeleton--h-300 {
    min-height: 390px; }
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .s-skeleton--h-300 {
    min-height: 390px; }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .s-skeleton--h-300 {
    min-height: 390px; }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .s-skeleton--h-300 {
    min-height: 390px; }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .s-skeleton--h-300 {
    min-height: 390px; }
}

.blog-no{
  background-color: aliceblue;
}


.example {
  cursor: pointer;
  height: 300px;
  position: relative;
  overflow: hidden;
  width: 400px;
  text-align: center;
}
.example .fadedbox {
  background-color: #666666;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  opacity: 0;
  width: 400px;
  height: 300px;
  padding: 130px 20px;
}
.example:hover .fadedbox {
  opacity: 0.8;
}
.example .text {
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
}
.example .title {
  font-size: 20px;
  text-transform: uppercase;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.3s;
}
.example:hover .title,
.example:focus .title {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}


.is-grid-active .product-m__prev-description {
  font-size: 12px;
  color: #7f7f7f;
}

.loadingSpinner {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}



/* Transparent Overlay */
.loadingSpinner:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loadingSpinner:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}


#loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 9999;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 26px solid #333;
  border-color: orange transparent orange transparent; 
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}


div.backBtn {
  width: 100px;
  left: 100px;
  top: 100px;
  background-color: #f4f4f4;
  transition: all 0.4s ease;
  position: fixed;
  cursor: pointer;
}

span.line {
  bottom: auto;
  right: auto;
  top: auto;
  left: auto;
  background-color: #333;
  border-radius: 10px;
  width: 100%;
  left: 0px;
  height: 2px;
  display: block;
  position: absolute;
  transition: width 0.2s ease 0.1s, left 0.2s ease, transform 0.2s ease 0.3s, background-color 0.2s ease;
}

span.tLine {
  top: 0px;
}

span.mLine {
  top: 13px;
  opacity: 0;
}

span.bLine {
  top: 26px;
}

.label {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 100%;
  text-align: center;
  transition: all 0.4s ease;
  font-size: 1em;
}

div.backBtn:hover span.label {
  left: 25px
}

div.backBtn:hover span.line {
  left: -10px;
  height: 5px;
  background-color: #F76060;
}

div.backBtn:hover span.tLine {
  width: 25px;
  transform: rotate(-45deg);
  left: -15px;
  top: 6px;
}

div.backBtn:hover span.mLine {
  opacity: 1;
  width: 30px;
}

div.backBtn:hover span.bLine {
  width: 25px;
  transform: rotate(45deg);
  left: -15px;
  top: 20px;
}

