.ui-scrollable {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
.ui-scrollable::-webkit-scrollbar {
  width: 5px;
}
.ui-scrollable::-webkit-scrollbar-track {
  background-color: lightgrey;
}
.ui-scrollable::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7);
}

@font-face {
  font-family: "Furore";
  src: url("/css/fonts/furore.ttf") format("truetype");
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-UltraLight.woff") format("woff");
  font-weight: 100;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Thin.woff") format("woff");
  font-weight: 200;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Roman.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Heavy.woff") format("woff");
  font-weight: 800;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("/webfonts/HelveticaNeueCyr-Black.woff") format("woff");
  font-weight: 900;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("/webfonts/Montserrat-Bold.ttf") format("TrueType");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/webfonts/Montserrat-SemiBold.ttf") format("TrueType");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("/webfonts/Montserrat-Medium.ttf") format("TrueType");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("/webfonts/Montserrat-Regular.ttf") format("TrueType");
  font-weight: auto;
  font-style: normal;
}
.ui-top-flat, .profile-image-button-light, .profile-image-button, .profile-image-label {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.ui-bottom-flat, .profile-image {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.ui-left-flat {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.ui-right-flat {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-spaced-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 100%;
  margin-bottom: 10px;
  width: 100%;
}
.ui-spaced-text .ui-spaced-text-logo {
  font-weight: bold;
}
.ui-spaced-text .ui-spaced-text-line {
  margin-right: 4px;
  margin-left: 4px;
  border-bottom: 1px dashed lightgray;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .ui-spaced-text {
    font-size: 14px;
  }
}

.cornered {
  position: relative;
  padding: 10px 15px;
}
.cornered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-left: 4px solid #FF9F1A;
  border-top: 4px solid #FF9F1A;
}
.cornered::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-right: 4px solid #FF9F1A;
  border-bottom: 4px solid #FF9F1A;
}

.ui-button-dark, .profile-image-button {
  font: "Manrope", "Arial", "Roboto", "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 14px;
  padding: 10px 15px;
  text-align: center;
  transition: all 0.2s ease-in;
  font-weight: bold;
  background: #06283D;
  color: white;
  text-decoration: none;
  border: 1px #06283D solid;
  white-space: nowrap;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 10px 30px;
}
.ui-button-dark:hover, .profile-image-button:hover {
  background: #0e5f98;
  color: white;
  border: 1px #0e5f98 solid;
}
.ui-button-dark:active, .profile-image-button:active {
  background: #1282c2;
  color: white;
  border: 1px #1282c2 solid;
  outline: none;
}
.ui-button-dark:focus, .profile-image-button:focus {
  outline: none;
}
.ui-button-dark:disabled, .profile-image-button:disabled {
  background: lightgray !important;
  color: #4a5568 !important;
  border-color: #92959a !important;
}
.ui-button-dark:disabled:hover, .profile-image-button:disabled:hover, .ui-button-dark:disabled:active, .profile-image-button:disabled:active, .ui-button-dark:disabled:focus, .profile-image-button:disabled:focus {
  background: lightgray !important;
  color: #4a5568 !important;
  border-color: #92959a !important;
}

.ui-button-light, .profile-image-button-light, .profile-image-label {
  font: "Manrope", "Arial", "Roboto", "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 14px;
  padding: 10px 15px;
  text-align: center;
  transition: all 0.2s ease-in;
  font-weight: bold;
  background: white;
  color: #06283D;
  text-decoration: none;
  border: 1px lightgray solid;
  white-space: nowrap;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 10px 30px;
}
.ui-button-light:hover, .profile-image-button-light:hover, .profile-image-label:hover {
  background: white;
  color: #0e5f98;
  border: 1px #0e5f98 solid;
}
.ui-button-light:active, .profile-image-button-light:active, .profile-image-label:active {
  background: white;
  color: #1282c2;
  border: 1px #1282c2 solid;
  outline: none;
}
.ui-button-light:focus, .profile-image-button-light:focus, .profile-image-label:focus {
  outline: none;
}
.ui-button-light:disabled, .profile-image-button-light:disabled, .profile-image-label:disabled {
  background: lightgray !important;
  color: #4a5568 !important;
  border-color: #92959a !important;
}
.ui-button-light:disabled:hover, .profile-image-button-light:disabled:hover, .profile-image-label:disabled:hover, .ui-button-light:disabled:active, .profile-image-button-light:disabled:active, .profile-image-label:disabled:active, .ui-button-light:disabled:focus, .profile-image-button-light:disabled:focus, .profile-image-label:disabled:focus {
  background: lightgray !important;
  color: #4a5568 !important;
  border-color: #92959a !important;
}

.ui-default-link {
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-decoration: underline;
  color: #292413;
  transition: all 0.2s ease-in;
  outline: none;
}
.ui-default-link:hover {
  text-decoration: none;
  color: #292413;
}
.ui-default-link:active {
  text-decoration: none;
  color: #292413;
}

.profile-image {
  width: 100%;
  min-height: 250px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.profile-image-label {
  cursor: pointer;
  width: 100%;
}

.profile-image-button {
  width: 100%;
  flex-grow: 1;
}

.profile-image-button-light {
  width: 100%;
  flex-grow: 1;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #f18868;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 104, 0.25);
}

.form-check-input:focus {
  border-color: #f18868;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 104, 0.25);
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 5px;
}

.youtube-video {
  aspect-ratio: 16/9;
  width: 100%;
}

.video__btn {
  color: #292413;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  margin-bottom: 10px;
  background: white;
  border: 1px lightgrey solid;
  border-radius: 4px;
  transition: all 0.2s ease-in;
}
.video__btn:hover, .video__btn:active {
  background: #EFEFEF;
  color: #292413;
}
.video__btn.selected {
  border-color: #E84615;
}

.video__thumb {
  text-decoration: none;
  display: flex;
  gap: 10px;
  width: 150px;
  border: 1px lightgrey solid;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-in;
  position: relative;
  font-size: 14px;
  width: unset;
  min-width: unset;
  border: unset;
}
.video__thumb img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  border-radius: 4px;
  opacity: 0.5;
}
.video__thumb .video__thumb-header {
  font-size: 14px;
  line-height: 120%;
  width: 100%;
  display: none;
  display: block;
  color: #292413;
}
.video__thumb .video__thumb-desc {
  font-size: 13px;
  line-height: 120%;
  width: 100%;
  display: none;
  display: block;
  color: #a1a1a1;
}
.video__thumb:hover, .video__thumb:active {
  border-color: #a1a1a1;
}
.video__thumb.selected {
  border-color: #E84615;
}
.video__thumb img {
  width: 80px;
  min-width: unset;
  width: 150px;
  min-width: 150px;
}
.video__thumb .video__thumb-header {
  display: block;
}
.video__thumb .video__thumb-desc {
  display: block;
}
.video__thumb.selected .video__thumb-header {
  font-weight: bold;
}
.video__thumb.selected img {
  border: 2px solid #E84615;
  opacity: 1;
}

.video-menu {
  transition: all 0.2s ease-in;
  background-color: white;
}
.video-menu .video-menu-header {
  display: none;
  text-align: center;
  min-height: 40px;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  justify-content: space-between;
  width: 100%;
}
.video-menu .video-menu-toggle {
  display: none;
  position: absolute;
  z-index: 30;
  right: 0;
  transform: translateX(100%);
  top: 80px;
  background: rgba(255, 255, 255, 0.4);
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  padding: 15px 10px;
  backdrop-filter: blur(10px);
  box-shadow: 2px 0px 0px #F4971A;
  border-radius: 0px 11px 11px 0px;
}
@media only screen and (max-width: 767px) {
  .video-menu {
    box-shadow: 0 0 2px 0px #292413;
    padding: 10px 0px 10px 0px;
    border: 1px solid lightgray;
    position: fixed;
    z-index: 200;
    width: 90%;
    height: 100%;
    left: -91%;
    top: 0;
  }
  .video-menu .video-menu-toggle {
    display: flex;
  }
  .video-menu .video-menu-header {
    display: flex;
  }
  .video-menu .video-menu-content {
    max-height: 90vh;
    overflow-y: scroll;
    padding: 10px;
  }
  .video-menu.show-menu {
    left: 0;
  }
}

.call-form {
  background-size: cover;
  background-image: url("/img/index/modal-bg.png");
  color: white;
}
.call-form .call-form-input {
  display: flex;
  justify-content: center;
}
.call-form .call-form-input input, .call-form .call-form-input textarea {
  padding: 8px 10px;
  font-size: 15px;
  color: white;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease-in;
  width: 100%;
  border-radius: 8px;
}
.call-form .call-form-input input:focus, .call-form .call-form-input textarea:focus {
  border: 1px solid white;
  background-color: rgba(244, 151, 26, 0.24);
  box-shadow: 0px 0px 9px 4px #F4971A;
}
.call-form .call-form-input input.invalid, .call-form .call-form-input textarea.invalid {
  background-color: rgba(232, 70, 21, 0.3);
  border: 1px solid rgba(232, 70, 21, 0.6);
}
.call-form .call-form-input input.invalid::placeholder, .call-form .call-form-input textarea.invalid::placeholder {
  color: rgba(232, 70, 21, 0.6);
}
.call-form .call-form-input input.invalid:focus, .call-form .call-form-input textarea.invalid:focus {
  background-color: rgba(232, 70, 21, 0.1);
  border: 1px solid #e84615;
  box-shadow: 0px 0px 9px 4px #E84615;
}
.call-form .call-form-check .call-form-check-input {
  display: none;
}
.call-form .call-form-check .call-form-check-label {
  padding: 8px 10px;
  font-size: 15px;
  color: white;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease-in;
  width: 100%;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
}
.call-form .call-form-check .call-form-check-label:hover {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(244, 151, 26, 0.24);
}
.call-form .call-form-check .call-form-check-label.selected {
  background: rgba(244, 151, 26, 0.24);
  border: 1.5px solid #F4971A;
  box-shadow: 0px 0px 3px 3px #FF9900;
}

.gallery-image {
  max-width: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 8px;
}
.header {
  background: linear-gradient(180deg, rgba(244, 151, 26, 0.7) 0%, rgba(232, 70, 21, 0.7) 63.54%, rgba(232, 70, 21, 0.7) 85.94%, rgba(232, 70, 21, 0.7) 100%);
  border-bottom: 1px solid rgba(244, 151, 26, 0.7);
  backdrop-filter: blur(4.5px);
  color: white;
  padding-bottom: 10px;
  padding-top: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-button {
  color: white;
  text-decoration: none;
  display: flex;
  position: relative;
  padding: 5px;
  z-index: 10;
  background: transparent;
  outline: none;
}
.header-button::before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
  z-index: 20;
  background: #F4971A;
}
.header-button:hover {
  color: white;
}
.header-button:hover::before {
  width: 50%;
}

.header-block {
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  column-gap: 30px;
  padding: 15px 10px;
  backdrop-filter: blur(10px);
  align-items: center;
}
.header-block.right {
  box-shadow: -2px 0px 0px #F4971A;
  border-radius: 11px 0px 0px 11px;
}
.header-block.left {
  box-shadow: 2px 0px 0px #F4971A;
  border-radius: 0px 11px 11px 0px;
}
.header-block.logo {
  box-shadow: 2px 0px 0px #F4971A;
  border-radius: 0px 11px 11px 0px;
  padding: 3px;
}
.header-block.menu {
  width: 300px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid #E84615;
  border-radius: 15px 0px 0px 15px;
  padding: 5px 10px;
  text-decoration: none;
  color: #292413;
  text-align: center;
  font-size: 18px;
}
.header-block.menu.small {
  width: 240px;
}

.header-link {
  background: transparent;
  border: unset;
  outline: none;
  color: #292413;
  text-decoration: none;
}
.header-link:hover, .header-link:active {
  color: #292413;
  text-decoration: underline;
}

.header-side-menu {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  left: 110%;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  transition: all 0.2s ease-in;
  background-image: url("/img/index/mobile-menu-bg.png");
  background-size: cover;
  background-position: center;
  padding: 10px 0;
  z-index: 100;
}
.header-side-menu.show-menu {
  left: 0;
}

.header-bottom {
  position: fixed;
  z-index: 1000;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
  transition: all 0.2s ease-in;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.header-bottom.show {
  transform: translateY(0%);
}
@media only screen and (min-width: 768px) {
  .header-bottom {
    display: none;
  }
}
.header-bottom .header-bottom-btn {
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.header-bottom .header-bottom-training {
  background: rgba(244, 151, 26, 0.87);
  backdrop-filter: blur(3px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 0px 11px 0px 0px;
}
.header-bottom .header-bottom-schedule {
  background: rgba(232, 70, 21, 0.83);
  backdrop-filter: blur(3px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 11px 0px 0px 0px;
}

.news-entry {
  position: relative;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.news-entry .news-image {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 8px;
}
.news-entry:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}
.news-entry .news-text {
  color: white;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
}
.news-entry:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
}

.index__schedule {
  background: linear-gradient(180deg, rgba(57, 57, 57, 0.8) 8.64%, rgba(232, 70, 21, 0.8) 73.99%);
  backdrop-filter: blur(4.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 8px;
  margin: 50px 0px;
  padding: 60px 10px;
}
.index__schedule.full-height {
  min-height: 90vh;
  margin: 0;
  padding-top: 100px;
  border-radius: 0;
}

.schedule-current-day {
  text-align: center;
  background: linear-gradient(268.21deg, #F4951A 0%, #E74310 98.57%);
  box-shadow: 0px 0px 4px #F4971A;
  border-radius: 54px;
  font-size: 32px;
  color: white;
  line-height: 110%;
  text-transform: uppercase;
  padding: 15px 60px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .schedule-current-day {
    padding: 10px 35px;
    font-size: 22px;
  }
}

.schedule-day-btn-list {
  display: flex;
  gap: 1rem;
  width: 100%;
  overflow-x: scroll;
}
@media only screen and (min-width: 768px) {
  .schedule-day-btn-list {
    overflow-x: unset;
    justify-content: center;
  }
}

.schedule-day-btn {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  padding: 0.5rem;
  border-radius: 0.5rem;
  min-width: 43px;
  text-decoration: none;
  color: #292413;
  transition: all 0.2s ease-in;
}
.schedule-day-btn:hover, .schedule-day-btn:active {
  border-color: #FF9F1A;
  color: #292413;
}
.schedule-day-btn.active {
  border-color: #F4971A;
  color: white;
  background: rgba(54, 54, 54, 0.4);
}

.schedule-training {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0.5rem;
  width: 100%;
  color: white;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
  background: #393939;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 4px;
}
.schedule-training:hover {
  border-color: #F4971A;
}

.schedule-training-btn {
  padding: 10px 25px;
  text-align: center;
  background: linear-gradient(268.36deg, #F4971A 0%, #E74310 100%);
  box-shadow: 0px 0px 4px #F4971A;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.schedule-training-btn:hover {
  background: linear-gradient(268.36deg, #dc8918 20%, #d03e12 100%);
}
.schedule-training-btn:active {
  background: linear-gradient(268.36deg, #fc9e23 0%, #fa4b13 100%);
}

#carouselMain .carousel-item {
  min-height: 100vh !important;
}

.carousel-control-prev, .carousel-control-next {
  z-index: 40;
}

.index__logo {
  min-height: 100vh;
  background-image: url("/img/index/logobg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  width: 100%;
  align-items: end;
  margin-bottom: 3rem;
  position: relative;
  z-index: 20;
}
.index__logo .overlay {
  position: absolute;
  z-index: 30;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .index__logo .overlay.overlay-left {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0.22%, rgba(0, 0, 0, 0.6) 33.41%, rgba(0, 0, 0, 0.1) 66.6%, rgba(0, 0, 0, 0) 99.79%);
  }
}
.index__logo .index__logo-content {
  position: relative;
  z-index: 40;
}
.index__logo .index__logo-header {
  font-size: 60px;
  font-weight: 500;
  color: white;
  line-height: 120%;
}
@media only screen and (max-width: 1199px) {
  .index__logo .index__logo-header {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .index__logo .index__logo-header {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .index__logo .index__logo-header {
    text-align: center;
    font-size: 26px;
  }
}
.index__logo .index__logo-mheader, .index__logo .index__logo-mheader-image {
  font-size: 26px;
  font-weight: 400;
  color: white;
  line-height: 120%;
}
@media only screen and (max-width: 1199px) {
  .index__logo .index__logo-mheader, .index__logo .index__logo-mheader-image {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .index__logo .index__logo-mheader, .index__logo .index__logo-mheader-image {
    font-size: 20px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 767px) {
  .index__logo .index__logo-mheader, .index__logo .index__logo-mheader-image {
    text-align: center;
    font-size: 16px !important;
  }
}
.index__logo .index__logo-mheader-image {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  align-items: center;
}
.index__logo .index__logo-mheader-image img {
  width: 36px;
}
@media only screen and (min-width: 768px) {
  .index__logo .index__logo-mheader-image {
    justify-content: flex-start;
  }
  .index__logo .index__logo-mheader-image img {
    width: 72px;
  }
}

.index__logo-btn {
  background: #E84615;
  border-radius: 3px 19px;
  padding: 15px 40px;
  outline: none;
  color: white;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in;
  text-transform: uppercase;
  width: auto;
}
.index__logo-btn:hover {
  background: #b43812;
  color: white;
}
.index__logo-btn.white-btn {
  background: white !important;
  color: #E84615 !important;
  border-color: white;
}
.index__logo-btn.white-btn:hover {
  background: #E84615 !important;
  color: white !important;
}

.index__logo-btn_hostel {
  background: #E84615;
  border-radius: 3px 19px;
  padding: 15px 40px;
  outline: none;
  color: white;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in;
  text-transform: uppercase;
  width: 100%;
}
.index__logo-btn_hostel:hover {
  background: #b43812;
  color: white;
}
.index__logo-btn_hostel.white-btn {
  background: white !important;
  color: #E84615 !important;
  border-color: white;
}
.index__logo-btn_hostel.white-btn:hover {
  background: #E84615 !important;
  color: white !important;
}

.index__logo-btn_yello_hostel {
  background: #FBD355;
  border-radius: 3px 19px;
  border-inline: solid 3px #E84615 !important;
  padding: 15px 40px;
  outline: none;
  color: #2c3034;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in;
  text-transform: uppercase;
  width: 100%;
}
.index__logo-btn_yello_hostel:hover {
  background: #b43812;
  color: white;
}
.index__logo-btn_yello_hostel.white-btn {
  background: white !important;
  color: #E84615 !important;
  border-color: white;
}
.index__logo-btn_yello_hostel.white-btn:hover {
  background: #E84615 !important;
  color: white !important;
}

.index__services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 45px;
}
@media only screen and (max-width: 991px) {
  .index__services {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
  }
}

.index__services2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 45px;
}
@media only screen and (max-width: 991px) {
  .index__services2 {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
  }
}

.index__services-card {
  width: 100%;
  height: 100%;
  background: url("/img/index/card-tile.png") no-repeat center, linear-gradient(180deg, rgba(251, 201, 18, 0.71) -30%, rgba(251, 201, 18, 0.75) 10.05%, rgba(221, 12, 6, 0.75) 100%);
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4.5px);
  /* Note: backdrop-filter has minimal browser support */
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}
@media only screen and (max-width: 991px) {
  .index__services-card {
    padding: 30px 20px;
    height: unset;
    font-size: 14px;
    min-width: 330px;
  }
}
.index__services-card .index__services-card-header {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.index__services-card .index__services-card-link {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  display: block;
  padding: 16px 25px;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 0px 4px #F4971A;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease-out;
}
.index__services-card .index__services-card-link:hover {
  color: white;
  box-shadow: 0px 2px 8px #c2750e;
  background: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .index__services-card .index__services-card-link {
    font-size: 14px;
    padding: 12px 15px;
  }
}

.index__places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .index__places {
    display: flex;
    width: 100%;
    overflow-x: scroll;
  }
}
.index__places .index__places-card {
  position: relative;
  border-radius: 8px;
  background-size: cover;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
@media only screen and (min-width: 768px) {
  .index__places .index__places-card:hover .index__places-card-image {
    transform: scale(1.05);
  }
  .index__places .index__places-card:hover .index__places-card-overlay {
    opacity: 0;
  }
  .index__places .index__places-card:hover .index__places-card-content {
    transform: translateX(-100%);
  }
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-card {
    min-width: 300px;
    padding: 0;
  }
}
.index__places .index__places-card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  border-radius: 8px;
  transition: all 0.2s ease-in;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-card-image {
    position: relative;
    height: 220px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.index__places .index__places-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  z-index: 30;
  transition: all 0.2s ease-in;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.21) 30.07%, rgba(0, 0, 0, 0) 40.2%), rgba(217, 217, 217, 0);
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.11) 10%, rgba(0, 0, 0, 0) 40.2%), rgba(217, 217, 217, 0);
  }
}
.index__places .index__places-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 50;
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-image {
    top: 10px;
    right: 10px;
  }
}
.index__places .index__places-card-content {
  width: 250px;
  min-height: 360px;
  background: url(/img/index/card-tile.png) no-repeat center, linear-gradient(180deg, rgba(251, 201, 18, 0.71) -30%, rgba(251, 201, 18, 0.75) 10.05%, rgba(221, 12, 6, 0.75) 100%);
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(4.5px);
  backdrop-filter: blur(4.5px);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 25px 20px;
  color: white;
  position: relative;
  z-index: 50;
  transition: all 0.2s ease-in;
}
.index__places .index__places-card-content a {
  color: white;
  text-decoration: none !important;
}
.index__places .index__places-card-content a:hover, .index__places .index__places-card-content a:active {
  color: white;
  text-decoration: underline !important;
}
.index__places .index__places-card-content .index__places-card-header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #E84615;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-card-content .index__places-card-header {
    font-size: 16px;
  }
}
.index__places .index__places-card-content .ipcc__item {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 3px;
  margin-top: 3px;
}
.index__places .index__places-card-content .ipcc__item:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
}
.index__places .index__places-card-content .ipcc__item.ipcc__path:before {
  background-image: url("/img/index/path-icon.svg");
}
.index__places .index__places-card-content .ipcc__item.ipcc__ok:before {
  background-image: url("/img/index/check-icon.svg");
}
@media only screen and (max-width: 767px) {
  .index__places .index__places-card-content {
    padding: 20px 10px 10px 10px;
    font-size: 14px;
    width: 100%;
    border-radius: 0px 0px 8px 8px;
  }
}
@media only screen and (max-width: 767px) {
  .index__places {
    grid-template-columns: 1fr;
  }
  .index__places .index__places-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}

.index__coaches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 45px;
}
@media only screen and (max-width: 991px) {
  .index__coaches {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
  }
}
.index__coaches .index__coaches-card {
  width: 100%;
  height: 100%;
  min-width: 300px;
  background: url("/img/index/trainer-carg-bg-img.png") no-repeat, linear-gradient(180deg, rgba(251, 201, 18, 0.71) -20%, rgba(221, 12, 6, 0.75) 100%);
  background-position: bottom right;
  background-size: 60%;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4.5px);
  /* Note: backdrop-filter has minimal browser support */
  color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
}
@media only screen and (max-width: 991px) {
  .index__coaches .index__coaches-card {
    padding: 20px 20px;
    height: unset;
    font-size: 14px;
    justify-content: unset;
  }
}
.index__coaches .index__coaches-card .index__coaches-card-header {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.index__coaches .index__coaches-card .index__coaches-card-link {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  display: block;
  padding: 16px 25px;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 0px 4px #F4971A;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease-out;
}
.index__coaches .index__coaches-card .index__coaches-card-link:hover {
  color: white;
  box-shadow: 0px 2px 8px #c2750e;
  background: rgba(255, 255, 255, 0.2);
}

.index__levels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 45px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 991px) {
  .index__levels {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .index__levels {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
  }
}

.index__levels-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .index__levels-card {
    min-width: 280px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0px 0px 6px 1px rgba(244, 151, 26, 0.73);
    backdrop-filter: blur(2.5px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
  }
}

.text-red {
  color: #E74310;
}

.bg-orange, .text-bg-orange {
  background: #D38E2F;
}

.text-bg-orange {
  color: white;
}

.index-logo-text {
  font-family: "Helvetica Neue", "Montserrat", "Arial", "Roboto", "Segoe UI", "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 110%;
}
@media only screen and (max-width: 991px) {
  .index-logo-text {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .index-logo-text {
    font-size: 28px;
  }
}

.footer__top {
  color: white;
  background: linear-gradient(180deg, rgba(244, 151, 26, 0.8) 0%, rgba(232, 70, 21, 0.8) 63.54%, rgba(232, 70, 21, 0.464) 98.83%);
  backdrop-filter: blur(4.5px);
}
.footer__top .header-link {
  color: white;
}

.opening__logo {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
}
.opening__logo .phoenix {
  color: #E74310;
  letter-spacing: 0.175em;
}
@media only screen and (max-width: 767px) {
  .opening__logo {
    font-size: 32px;
  }
}

.opening__carousel-image {
  width: 100%;
  max-height: 310px;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.opening__about {
  background-image: url("/img/opening/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  color: white;
  padding: 60px 40px;
}
@media only screen and (max-width: 767px) {
  .opening__about {
    border-radius: 6px;
    padding: 20px 10px;
  }
}
.opening__about .opening__about-logo {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .opening__about .opening__about-logo {
    font-size: 30px;
  }
}
.opening__about .opening__about-item {
  display: flex;
  min-height: 35px;
  width: 100%;
  font-weight: 500;
  align-items: center;
  padding-left: 45px;
  background-color: transparent;
  background-image: url("/img/opening/check 10.svg");
  background-size: 30px 30px;
  background-position: 0 center;
  background-repeat: no-repeat;
  font-size: 22px;
  margin-bottom: 20px;
}
.opening__about .opening__about-item.big {
  font-size: 29px;
}
@media only screen and (max-width: 767px) {
  .opening__about .opening__about-item.big {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .opening__about .opening__about-item {
    font-size: 18px;
  }
}
.opening__about .opening__about-item-gender {
  font-size: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .opening__about .opening__about-item-gender {
    font-size: 20px;
  }
}
.opening__about .opening__about-badge-list {
  display: flex;
  column-gap: 40px;
  row-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.opening__about .opening__about-badge {
  display: flex;
  gap: 10px;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .opening__about .opening__about-badge {
    font-size: 24px;
  }
}

.price-card-block {
  width: auto;
  height: auto;
  border: 2px white solid;
}

.landings__gradient-block {
  border-radius: 8px;
  padding: 50px 45px 60px 45px;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 3fr 2fr 2fr;
  background: linear-gradient(150deg, #FCD956 0%, #F8C153 38.37%, #E64944 100%);
}
.landings__gradient-block.lgb-vertical {
  background: linear-gradient(180deg, #FCD956 0%, #F8C153 15.85%, #E64944 100%);
}
.landings__gradient-block.lgb-reverse {
  grid-template-columns: 2fr 2fr 3fr;
}
@media only screen and (max-width: 767px) {
  .landings__gradient-block {
    grid-template-columns: 1fr !important;
    padding: 40px 10px;
  }
}

.landings__checked-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  gap: 10px;
  align-items: start;
  padding-left: 40px;
  min-height: 28px;
  position: relative;
}
.landings__checked-text:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url("/img/landings/camp001/check-mark-red.svg");
}
.landings__checked-text.mark-white:before {
  background-image: url("/img/landings/camp001/check-mark.svg");
}

.index__logo-big-text {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .index__logo-big-text {
    font-size: 18px;
  }
}

.text-striken {
  position: relative;
  display: inline-block;
}
.text-striken:after {
  height: 3px;
  width: 100%;
  background: #E84615;
  top: 10%;
  left: 50%;
  position: absolute;
  content: "";
  display: block;
  transform: rotate(-20deg) translate(-50%, -50%);
}

.camp_002_text {
  font-family: Montserrat-Medium;
  font-size: 24px;
  color: #2c3034;
}

@media (max-width: 500px) {
  .camp_002_text {
    font-family: Montserrat-Medium;
    font-size: 20px;
    color: #2c3034;
  }
}
.adm-side {
  padding: 20px 10px;
  background: #4a5568;
  height: 100%;
  color: white;
}
.adm-side .adm-side-image {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}
.adm-side .adm-side-btn {
  transition: all 0.2s ease-in;
  display: block;
  width: 100%;
  border-radius: 5px;
  border: white 2px solid;
  background: #606060;
  color: white;
  padding: 10px 15px;
}
.adm-side .adm-side-btn:hover {
  background: #737373;
}

@media only screen and (max-width: 767px) {
  .adm-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.adm-index-btn {
  transition: all 0.2s ease-in;
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid lightgray;
}
.adm-index-btn:hover {
  border-color: gray;
  color: #1a202c;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  width: 100%;
  background: #000;
}

body {
  position: relative;
  font-family: "HelveticaNeueCyr", "Helvetica Neue", -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";
  max-width: 100%;
  width: 100%;
  color: #292413;
}

.bg-cream {
  background-color: rgba(41, 36, 19, 0.03);
}

.big-yellow-button, .big-transparent-button, .small-yellow-button {
  padding-bottom: 4px;
  display: inline-block;
}
.big-yellow-button ._btn, .big-transparent-button ._btn, .small-yellow-button ._btn {
  outline: none;
  text-decoration: none;
  padding: 20px 50px;
  height: 100%;
  color: white;
  background: #FF9F1A;
  margin-bottom: 4px;
  box-shadow: 0px 4px 0px #F29719, 0px 15px 35px rgba(255, 159, 26, 0.3), inset 0px 10px 25px rgba(255, 214, 157, 0.8);
  border-radius: 999px;
}
.big-yellow-button ._btn.small, .big-transparent-button ._btn.small, .small-yellow-button ._btn.small {
  padding: 10px 30px;
}
@media only screen and (max-width: 767px) {
  .big-yellow-button ._btn, .big-transparent-button ._btn, .small-yellow-button ._btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}
.big-yellow-button:hover, .big-transparent-button:hover, .small-yellow-button:hover {
  padding-top: 2px;
  padding-bottom: 2px;
}
.big-yellow-button:hover ._btn, .big-transparent-button:hover ._btn, .small-yellow-button:hover ._btn {
  box-shadow: 0px 2px 0px #F29719, 0px 15px 35px rgba(255, 159, 26, 0.3), inset 0px 10px 25px rgba(255, 214, 157, 0.8);
}
.big-yellow-button:active, .big-transparent-button:active, .small-yellow-button:active {
  padding-top: 4px;
  padding-bottom: 0px;
}
.big-yellow-button:active ._btn, .big-transparent-button:active ._btn, .small-yellow-button:active ._btn {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #FF9F1A;
  box-shadow: 0px 0px 0px #F29719, 0px 15px 35px rgba(255, 159, 26, 0.3), inset 0px 10px 25px rgba(255, 214, 157, 0.8);
}

.small-yellow-button ._btn {
  padding: 8px 20px;
}
@media only screen and (max-width: 767px) {
  .small-yellow-button ._btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.small-yellow-button:active ._btn {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), white !important;
}

.big-transparent-button ._btn {
  color: white;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #FF9F1A;
}

.text-bg-badge-blur {
  color: #292413 !important;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@supports (backdrop-filter: blur(10px)) {
  .text-bg-badge-blur {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
  }
}

.thin-scroll::-webkit-scrollbar, .schedule-day-btn-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.thin-scroll::-webkit-scrollbar-button, .schedule-day-btn-list::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.thin-scroll::-webkit-scrollbar-thumb, .schedule-day-btn-list::-webkit-scrollbar-thumb {
  transition: all 0.2s ease-in;
  background: #E84615;
  border: 0px none #ffffff;
  border-radius: 50px;
}
.thin-scroll::-webkit-scrollbar-thumb:hover, .schedule-day-btn-list::-webkit-scrollbar-thumb:hover {
  background: #b43812;
}
.thin-scroll::-webkit-scrollbar-thumb:active, .schedule-day-btn-list::-webkit-scrollbar-thumb:active {
  background: #862c07;
}
.thin-scroll::-webkit-scrollbar-track, .schedule-day-btn-list::-webkit-scrollbar-track {
  transition: all 0.2s ease-in;
  background: rgba(255, 255, 255, 0.5);
  border: 0px none #ffffff;
  border-radius: 50px;
}
.thin-scroll::-webkit-scrollbar-track:hover, .schedule-day-btn-list::-webkit-scrollbar-track:hover {
  background: rgba(255, 255, 255, 0.6);
}
.thin-scroll::-webkit-scrollbar-track:active, .schedule-day-btn-list::-webkit-scrollbar-track:active {
  background: rgba(255, 255, 255, 0.7);
}
.thin-scroll::-webkit-scrollbar-corner, .schedule-day-btn-list::-webkit-scrollbar-corner {
  background: transparent;
}

.logo-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 20%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.2) 100%);
}
@media only screen and (min-width: 768px) {
  .logo-content {
    justify-content: flex-start;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 100%);
  }
}

.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content .main {
  flex-grow: 1;
}

.font-furore, .big-yellow-button ._btn, .small-yellow-button ._btn, .big-transparent-button ._btn {
  font-family: Furore, Arial, sans-serif;
}

.main {
  flex-grow: 1;
}

.app {
  position: relative;
  min-height: 100vh;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wrapper {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1399px) {
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .wrapper {
    max-width: 100%;
  }
}

.opacity-05 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.bg-blur-white {
  background: rgba(255, 255, 255, 0.85);
}
@supports (backdrop-filter: blur()) {
  .bg-blur-white {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
  }
}

.bg-blur-thick-white, .schedule-day-btn {
  background: rgba(255, 255, 255, 0.85);
}
@supports (backdrop-filter: blur()) {
  .bg-blur-thick-white, .schedule-day-btn {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
  }
}

.min-vh-10 {
  min-height: 10vh;
}

.min-vh-20 {
  min-height: 20vh;
}

.min-vh-30 {
  min-height: 30vh;
}

.min-vh-40 {
  min-height: 40vh;
}

.min-vh-50 {
  min-height: 50vh;
}

.min-vh-60 {
  min-height: 60vh;
}

.min-vh-70 {
  min-height: 70vh;
}

.min-vh-80 {
  min-height: 80vh;
}

.min-vh-90 {
  min-height: 90vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.max-w-1sm {
  max-width: 2rem;
}

.max-w-1md {
  max-width: 4rem;
}

.max-w-1lg {
  max-width: 6rem;
}

.max-w-1xl {
  max-width: 12rem;
}

.min-w-1sm {
  min-width: 2rem;
}

.min-w-1md {
  min-width: 4rem;
}

.min-w-1lg {
  min-width: 6rem;
}

.min-w-1xl {
  min-width: 12rem;
}

.max-w-2sm {
  max-width: 4rem;
}

.max-w-2md {
  max-width: 8rem;
}

.max-w-2lg {
  max-width: 12rem;
}

.max-w-2xl {
  max-width: 24rem;
}

.min-w-2sm {
  min-width: 4rem;
}

.min-w-2md {
  min-width: 8rem;
}

.min-w-2lg {
  min-width: 12rem;
}

.min-w-2xl {
  min-width: 24rem;
}

.max-w-3sm {
  max-width: 6rem;
}

.max-w-3md {
  max-width: 12rem;
}

.max-w-3lg {
  max-width: 18rem;
}

.max-w-3xl {
  max-width: 36rem;
}

.min-w-3sm {
  min-width: 6rem;
}

.min-w-3md {
  min-width: 12rem;
}

.min-w-3lg {
  min-width: 18rem;
}

.min-w-3xl {
  min-width: 36rem;
}

.max-w-4sm {
  max-width: 8rem;
}

.max-w-4md {
  max-width: 16rem;
}

.max-w-4lg {
  max-width: 24rem;
}

.max-w-4xl {
  max-width: 48rem;
}

.min-w-4sm {
  min-width: 8rem;
}

.min-w-4md {
  min-width: 16rem;
}

.min-w-4lg {
  min-width: 24rem;
}

.min-w-4xl {
  min-width: 48rem;
}

.max-w-5sm {
  max-width: 10rem;
}

.max-w-5md {
  max-width: 20rem;
}

.max-w-5lg {
  max-width: 30rem;
}

.max-w-5xl {
  max-width: 60rem;
}

.min-w-5sm {
  min-width: 10rem;
}

.min-w-5md {
  min-width: 20rem;
}

.min-w-5lg {
  min-width: 30rem;
}

.min-w-5xl {
  min-width: 60rem;
}

.max-w-6sm {
  max-width: 12rem;
}

.max-w-6md {
  max-width: 24rem;
}

.max-w-6lg {
  max-width: 36rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.min-w-6sm {
  min-width: 12rem;
}

.min-w-6md {
  min-width: 24rem;
}

.min-w-6lg {
  min-width: 36rem;
}

.min-w-6xl {
  min-width: 72rem;
}

.max-w-7sm {
  max-width: 14rem;
}

.max-w-7md {
  max-width: 28rem;
}

.max-w-7lg {
  max-width: 42rem;
}

.max-w-7xl {
  max-width: 84rem;
}

.min-w-7sm {
  min-width: 14rem;
}

.min-w-7md {
  min-width: 28rem;
}

.min-w-7lg {
  min-width: 42rem;
}

.min-w-7xl {
  min-width: 84rem;
}

.max-w-8sm {
  max-width: 16rem;
}

.max-w-8md {
  max-width: 32rem;
}

.max-w-8lg {
  max-width: 48rem;
}

.max-w-8xl {
  max-width: 96rem;
}

.min-w-8sm {
  min-width: 16rem;
}

.min-w-8md {
  min-width: 32rem;
}

.min-w-8lg {
  min-width: 48rem;
}

.min-w-8xl {
  min-width: 96rem;
}

.max-w-9sm {
  max-width: 18rem;
}

.max-w-9md {
  max-width: 36rem;
}

.max-w-9lg {
  max-width: 54rem;
}

.max-w-9xl {
  max-width: 108rem;
}

.min-w-9sm {
  min-width: 18rem;
}

.min-w-9md {
  min-width: 36rem;
}

.min-w-9lg {
  min-width: 54rem;
}

.min-w-9xl {
  min-width: 108rem;
}

.max-w-10sm {
  max-width: 20rem;
}

.max-w-10md {
  max-width: 40rem;
}

.max-w-10lg {
  max-width: 60rem;
}

.max-w-10xl {
  max-width: 120rem;
}

.min-w-10sm {
  min-width: 20rem;
}

.min-w-10md {
  min-width: 40rem;
}

.min-w-10lg {
  min-width: 60rem;
}

.min-w-10xl {
  min-width: 120rem;
}

.max-w-11sm {
  max-width: 22rem;
}

.max-w-11md {
  max-width: 44rem;
}

.max-w-11lg {
  max-width: 66rem;
}

.max-w-11xl {
  max-width: 132rem;
}

.min-w-11sm {
  min-width: 22rem;
}

.min-w-11md {
  min-width: 44rem;
}

.min-w-11lg {
  min-width: 66rem;
}

.min-w-11xl {
  min-width: 132rem;
}

.max-w-12sm {
  max-width: 24rem;
}

.max-w-12md {
  max-width: 48rem;
}

.max-w-12lg {
  max-width: 72rem;
}

.max-w-12xl {
  max-width: 144rem;
}

.min-w-12sm {
  min-width: 24rem;
}

.min-w-12md {
  min-width: 48rem;
}

.min-w-12lg {
  min-width: 72rem;
}

.min-w-12xl {
  min-width: 144rem;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-x: hidden !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-scroll {
  overflow-x: scroll !important;
}

.max-w-xxs-1sm {
  max-width: 2rem !important;
}

.max-w-xxs-1md {
  max-width: 4rem !important;
}

.max-w-xxs-1lg {
  max-width: 6rem !important;
}

.max-w-xxs-1xl {
  max-width: 12rem !important;
}

.min-w-xxs-1sm {
  min-width: 2rem !important;
}

.min-w-xxs-1md {
  min-width: 4rem !important;
}

.min-w-xxs-1lg {
  min-width: 6rem !important;
}

.min-w-xxs-1xl {
  min-width: 12rem !important;
}

.max-w-xxs-2sm {
  max-width: 4rem !important;
}

.max-w-xxs-2md {
  max-width: 8rem !important;
}

.max-w-xxs-2lg {
  max-width: 12rem !important;
}

.max-w-xxs-2xl {
  max-width: 24rem !important;
}

.min-w-xxs-2sm {
  min-width: 4rem !important;
}

.min-w-xxs-2md {
  min-width: 8rem !important;
}

.min-w-xxs-2lg {
  min-width: 12rem !important;
}

.min-w-xxs-2xl {
  min-width: 24rem !important;
}

.max-w-xxs-3sm {
  max-width: 6rem !important;
}

.max-w-xxs-3md {
  max-width: 12rem !important;
}

.max-w-xxs-3lg {
  max-width: 18rem !important;
}

.max-w-xxs-3xl {
  max-width: 36rem !important;
}

.min-w-xxs-3sm {
  min-width: 6rem !important;
}

.min-w-xxs-3md {
  min-width: 12rem !important;
}

.min-w-xxs-3lg {
  min-width: 18rem !important;
}

.min-w-xxs-3xl {
  min-width: 36rem !important;
}

.max-w-xxs-4sm {
  max-width: 8rem !important;
}

.max-w-xxs-4md {
  max-width: 16rem !important;
}

.max-w-xxs-4lg {
  max-width: 24rem !important;
}

.max-w-xxs-4xl {
  max-width: 48rem !important;
}

.min-w-xxs-4sm {
  min-width: 8rem !important;
}

.min-w-xxs-4md {
  min-width: 16rem !important;
}

.min-w-xxs-4lg {
  min-width: 24rem !important;
}

.min-w-xxs-4xl {
  min-width: 48rem !important;
}

.max-w-xxs-5sm {
  max-width: 10rem !important;
}

.max-w-xxs-5md {
  max-width: 20rem !important;
}

.max-w-xxs-5lg {
  max-width: 30rem !important;
}

.max-w-xxs-5xl {
  max-width: 60rem !important;
}

.min-w-xxs-5sm {
  min-width: 10rem !important;
}

.min-w-xxs-5md {
  min-width: 20rem !important;
}

.min-w-xxs-5lg {
  min-width: 30rem !important;
}

.min-w-xxs-5xl {
  min-width: 60rem !important;
}

.max-w-xxs-6sm {
  max-width: 12rem !important;
}

.max-w-xxs-6md {
  max-width: 24rem !important;
}

.max-w-xxs-6lg {
  max-width: 36rem !important;
}

.max-w-xxs-6xl {
  max-width: 72rem !important;
}

.min-w-xxs-6sm {
  min-width: 12rem !important;
}

.min-w-xxs-6md {
  min-width: 24rem !important;
}

.min-w-xxs-6lg {
  min-width: 36rem !important;
}

.min-w-xxs-6xl {
  min-width: 72rem !important;
}

.max-w-xxs-7sm {
  max-width: 14rem !important;
}

.max-w-xxs-7md {
  max-width: 28rem !important;
}

.max-w-xxs-7lg {
  max-width: 42rem !important;
}

.max-w-xxs-7xl {
  max-width: 84rem !important;
}

.min-w-xxs-7sm {
  min-width: 14rem !important;
}

.min-w-xxs-7md {
  min-width: 28rem !important;
}

.min-w-xxs-7lg {
  min-width: 42rem !important;
}

.min-w-xxs-7xl {
  min-width: 84rem !important;
}

.max-w-xxs-8sm {
  max-width: 16rem !important;
}

.max-w-xxs-8md {
  max-width: 32rem !important;
}

.max-w-xxs-8lg {
  max-width: 48rem !important;
}

.max-w-xxs-8xl {
  max-width: 96rem !important;
}

.min-w-xxs-8sm {
  min-width: 16rem !important;
}

.min-w-xxs-8md {
  min-width: 32rem !important;
}

.min-w-xxs-8lg {
  min-width: 48rem !important;
}

.min-w-xxs-8xl {
  min-width: 96rem !important;
}

.max-w-xxs-9sm {
  max-width: 18rem !important;
}

.max-w-xxs-9md {
  max-width: 36rem !important;
}

.max-w-xxs-9lg {
  max-width: 54rem !important;
}

.max-w-xxs-9xl {
  max-width: 108rem !important;
}

.min-w-xxs-9sm {
  min-width: 18rem !important;
}

.min-w-xxs-9md {
  min-width: 36rem !important;
}

.min-w-xxs-9lg {
  min-width: 54rem !important;
}

.min-w-xxs-9xl {
  min-width: 108rem !important;
}

.max-w-xxs-10sm {
  max-width: 20rem !important;
}

.max-w-xxs-10md {
  max-width: 40rem !important;
}

.max-w-xxs-10lg {
  max-width: 60rem !important;
}

.max-w-xxs-10xl {
  max-width: 120rem !important;
}

.min-w-xxs-10sm {
  min-width: 20rem !important;
}

.min-w-xxs-10md {
  min-width: 40rem !important;
}

.min-w-xxs-10lg {
  min-width: 60rem !important;
}

.min-w-xxs-10xl {
  min-width: 120rem !important;
}

.max-w-xxs-11sm {
  max-width: 22rem !important;
}

.max-w-xxs-11md {
  max-width: 44rem !important;
}

.max-w-xxs-11lg {
  max-width: 66rem !important;
}

.max-w-xxs-11xl {
  max-width: 132rem !important;
}

.min-w-xxs-11sm {
  min-width: 22rem !important;
}

.min-w-xxs-11md {
  min-width: 44rem !important;
}

.min-w-xxs-11lg {
  min-width: 66rem !important;
}

.min-w-xxs-11xl {
  min-width: 132rem !important;
}

.max-w-xxs-12sm {
  max-width: 24rem !important;
}

.max-w-xxs-12md {
  max-width: 48rem !important;
}

.max-w-xxs-12lg {
  max-width: 72rem !important;
}

.max-w-xxs-12xl {
  max-width: 144rem !important;
}

.min-w-xxs-12sm {
  min-width: 24rem !important;
}

.min-w-xxs-12md {
  min-width: 48rem !important;
}

.min-w-xxs-12lg {
  min-width: 72rem !important;
}

.min-w-xxs-12xl {
  min-width: 144rem !important;
}

.max-w-xs-1sm {
  max-width: 2rem !important;
}

.max-w-xs-1md {
  max-width: 4rem !important;
}

.max-w-xs-1lg {
  max-width: 6rem !important;
}

.max-w-xs-1xl {
  max-width: 12rem !important;
}

.min-w-xs-1sm {
  min-width: 2rem !important;
}

.min-w-xs-1md {
  min-width: 4rem !important;
}

.min-w-xs-1lg {
  min-width: 6rem !important;
}

.min-w-xs-1xl {
  min-width: 12rem !important;
}

.max-w-xs-2sm {
  max-width: 4rem !important;
}

.max-w-xs-2md {
  max-width: 8rem !important;
}

.max-w-xs-2lg {
  max-width: 12rem !important;
}

.max-w-xs-2xl {
  max-width: 24rem !important;
}

.min-w-xs-2sm {
  min-width: 4rem !important;
}

.min-w-xs-2md {
  min-width: 8rem !important;
}

.min-w-xs-2lg {
  min-width: 12rem !important;
}

.min-w-xs-2xl {
  min-width: 24rem !important;
}

.max-w-xs-3sm {
  max-width: 6rem !important;
}

.max-w-xs-3md {
  max-width: 12rem !important;
}

.max-w-xs-3lg {
  max-width: 18rem !important;
}

.max-w-xs-3xl {
  max-width: 36rem !important;
}

.min-w-xs-3sm {
  min-width: 6rem !important;
}

.min-w-xs-3md {
  min-width: 12rem !important;
}

.min-w-xs-3lg {
  min-width: 18rem !important;
}

.min-w-xs-3xl {
  min-width: 36rem !important;
}

.max-w-xs-4sm {
  max-width: 8rem !important;
}

.max-w-xs-4md {
  max-width: 16rem !important;
}

.max-w-xs-4lg {
  max-width: 24rem !important;
}

.max-w-xs-4xl {
  max-width: 48rem !important;
}

.min-w-xs-4sm {
  min-width: 8rem !important;
}

.min-w-xs-4md {
  min-width: 16rem !important;
}

.min-w-xs-4lg {
  min-width: 24rem !important;
}

.min-w-xs-4xl {
  min-width: 48rem !important;
}

.max-w-xs-5sm {
  max-width: 10rem !important;
}

.max-w-xs-5md {
  max-width: 20rem !important;
}

.max-w-xs-5lg {
  max-width: 30rem !important;
}

.max-w-xs-5xl {
  max-width: 60rem !important;
}

.min-w-xs-5sm {
  min-width: 10rem !important;
}

.min-w-xs-5md {
  min-width: 20rem !important;
}

.min-w-xs-5lg {
  min-width: 30rem !important;
}

.min-w-xs-5xl {
  min-width: 60rem !important;
}

.max-w-xs-6sm {
  max-width: 12rem !important;
}

.max-w-xs-6md {
  max-width: 24rem !important;
}

.max-w-xs-6lg {
  max-width: 36rem !important;
}

.max-w-xs-6xl {
  max-width: 72rem !important;
}

.min-w-xs-6sm {
  min-width: 12rem !important;
}

.min-w-xs-6md {
  min-width: 24rem !important;
}

.min-w-xs-6lg {
  min-width: 36rem !important;
}

.min-w-xs-6xl {
  min-width: 72rem !important;
}

.max-w-xs-7sm {
  max-width: 14rem !important;
}

.max-w-xs-7md {
  max-width: 28rem !important;
}

.max-w-xs-7lg {
  max-width: 42rem !important;
}

.max-w-xs-7xl {
  max-width: 84rem !important;
}

.min-w-xs-7sm {
  min-width: 14rem !important;
}

.min-w-xs-7md {
  min-width: 28rem !important;
}

.min-w-xs-7lg {
  min-width: 42rem !important;
}

.min-w-xs-7xl {
  min-width: 84rem !important;
}

.max-w-xs-8sm {
  max-width: 16rem !important;
}

.max-w-xs-8md {
  max-width: 32rem !important;
}

.max-w-xs-8lg {
  max-width: 48rem !important;
}

.max-w-xs-8xl {
  max-width: 96rem !important;
}

.min-w-xs-8sm {
  min-width: 16rem !important;
}

.min-w-xs-8md {
  min-width: 32rem !important;
}

.min-w-xs-8lg {
  min-width: 48rem !important;
}

.min-w-xs-8xl {
  min-width: 96rem !important;
}

.max-w-xs-9sm {
  max-width: 18rem !important;
}

.max-w-xs-9md {
  max-width: 36rem !important;
}

.max-w-xs-9lg {
  max-width: 54rem !important;
}

.max-w-xs-9xl {
  max-width: 108rem !important;
}

.min-w-xs-9sm {
  min-width: 18rem !important;
}

.min-w-xs-9md {
  min-width: 36rem !important;
}

.min-w-xs-9lg {
  min-width: 54rem !important;
}

.min-w-xs-9xl {
  min-width: 108rem !important;
}

.max-w-xs-10sm {
  max-width: 20rem !important;
}

.max-w-xs-10md {
  max-width: 40rem !important;
}

.max-w-xs-10lg {
  max-width: 60rem !important;
}

.max-w-xs-10xl {
  max-width: 120rem !important;
}

.min-w-xs-10sm {
  min-width: 20rem !important;
}

.min-w-xs-10md {
  min-width: 40rem !important;
}

.min-w-xs-10lg {
  min-width: 60rem !important;
}

.min-w-xs-10xl {
  min-width: 120rem !important;
}

.max-w-xs-11sm {
  max-width: 22rem !important;
}

.max-w-xs-11md {
  max-width: 44rem !important;
}

.max-w-xs-11lg {
  max-width: 66rem !important;
}

.max-w-xs-11xl {
  max-width: 132rem !important;
}

.min-w-xs-11sm {
  min-width: 22rem !important;
}

.min-w-xs-11md {
  min-width: 44rem !important;
}

.min-w-xs-11lg {
  min-width: 66rem !important;
}

.min-w-xs-11xl {
  min-width: 132rem !important;
}

.max-w-xs-12sm {
  max-width: 24rem !important;
}

.max-w-xs-12md {
  max-width: 48rem !important;
}

.max-w-xs-12lg {
  max-width: 72rem !important;
}

.max-w-xs-12xl {
  max-width: 144rem !important;
}

.min-w-xs-12sm {
  min-width: 24rem !important;
}

.min-w-xs-12md {
  min-width: 48rem !important;
}

.min-w-xs-12lg {
  min-width: 72rem !important;
}

.min-w-xs-12xl {
  min-width: 144rem !important;
}

.max-w-sm-1sm {
  max-width: 2rem !important;
}

.max-w-sm-1md {
  max-width: 4rem !important;
}

.max-w-sm-1lg {
  max-width: 6rem !important;
}

.max-w-sm-1xl {
  max-width: 12rem !important;
}

.min-w-sm-1sm {
  min-width: 2rem !important;
}

.min-w-sm-1md {
  min-width: 4rem !important;
}

.min-w-sm-1lg {
  min-width: 6rem !important;
}

.min-w-sm-1xl {
  min-width: 12rem !important;
}

.max-w-sm-2sm {
  max-width: 4rem !important;
}

.max-w-sm-2md {
  max-width: 8rem !important;
}

.max-w-sm-2lg {
  max-width: 12rem !important;
}

.max-w-sm-2xl {
  max-width: 24rem !important;
}

.min-w-sm-2sm {
  min-width: 4rem !important;
}

.min-w-sm-2md {
  min-width: 8rem !important;
}

.min-w-sm-2lg {
  min-width: 12rem !important;
}

.min-w-sm-2xl {
  min-width: 24rem !important;
}

.max-w-sm-3sm {
  max-width: 6rem !important;
}

.max-w-sm-3md {
  max-width: 12rem !important;
}

.max-w-sm-3lg {
  max-width: 18rem !important;
}

.max-w-sm-3xl {
  max-width: 36rem !important;
}

.min-w-sm-3sm {
  min-width: 6rem !important;
}

.min-w-sm-3md {
  min-width: 12rem !important;
}

.min-w-sm-3lg {
  min-width: 18rem !important;
}

.min-w-sm-3xl {
  min-width: 36rem !important;
}

.max-w-sm-4sm {
  max-width: 8rem !important;
}

.max-w-sm-4md {
  max-width: 16rem !important;
}

.max-w-sm-4lg {
  max-width: 24rem !important;
}

.max-w-sm-4xl {
  max-width: 48rem !important;
}

.min-w-sm-4sm {
  min-width: 8rem !important;
}

.min-w-sm-4md {
  min-width: 16rem !important;
}

.min-w-sm-4lg {
  min-width: 24rem !important;
}

.min-w-sm-4xl {
  min-width: 48rem !important;
}

.max-w-sm-5sm {
  max-width: 10rem !important;
}

.max-w-sm-5md {
  max-width: 20rem !important;
}

.max-w-sm-5lg {
  max-width: 30rem !important;
}

.max-w-sm-5xl {
  max-width: 60rem !important;
}

.min-w-sm-5sm {
  min-width: 10rem !important;
}

.min-w-sm-5md {
  min-width: 20rem !important;
}

.min-w-sm-5lg {
  min-width: 30rem !important;
}

.min-w-sm-5xl {
  min-width: 60rem !important;
}

.max-w-sm-6sm {
  max-width: 12rem !important;
}

.max-w-sm-6md {
  max-width: 24rem !important;
}

.max-w-sm-6lg {
  max-width: 36rem !important;
}

.max-w-sm-6xl {
  max-width: 72rem !important;
}

.min-w-sm-6sm {
  min-width: 12rem !important;
}

.min-w-sm-6md {
  min-width: 24rem !important;
}

.min-w-sm-6lg {
  min-width: 36rem !important;
}

.min-w-sm-6xl {
  min-width: 72rem !important;
}

.max-w-sm-7sm {
  max-width: 14rem !important;
}

.max-w-sm-7md {
  max-width: 28rem !important;
}

.max-w-sm-7lg {
  max-width: 42rem !important;
}

.max-w-sm-7xl {
  max-width: 84rem !important;
}

.min-w-sm-7sm {
  min-width: 14rem !important;
}

.min-w-sm-7md {
  min-width: 28rem !important;
}

.min-w-sm-7lg {
  min-width: 42rem !important;
}

.min-w-sm-7xl {
  min-width: 84rem !important;
}

.max-w-sm-8sm {
  max-width: 16rem !important;
}

.max-w-sm-8md {
  max-width: 32rem !important;
}

.max-w-sm-8lg {
  max-width: 48rem !important;
}

.max-w-sm-8xl {
  max-width: 96rem !important;
}

.min-w-sm-8sm {
  min-width: 16rem !important;
}

.min-w-sm-8md {
  min-width: 32rem !important;
}

.min-w-sm-8lg {
  min-width: 48rem !important;
}

.min-w-sm-8xl {
  min-width: 96rem !important;
}

.max-w-sm-9sm {
  max-width: 18rem !important;
}

.max-w-sm-9md {
  max-width: 36rem !important;
}

.max-w-sm-9lg {
  max-width: 54rem !important;
}

.max-w-sm-9xl {
  max-width: 108rem !important;
}

.min-w-sm-9sm {
  min-width: 18rem !important;
}

.min-w-sm-9md {
  min-width: 36rem !important;
}

.min-w-sm-9lg {
  min-width: 54rem !important;
}

.min-w-sm-9xl {
  min-width: 108rem !important;
}

.max-w-sm-10sm {
  max-width: 20rem !important;
}

.max-w-sm-10md {
  max-width: 40rem !important;
}

.max-w-sm-10lg {
  max-width: 60rem !important;
}

.max-w-sm-10xl {
  max-width: 120rem !important;
}

.min-w-sm-10sm {
  min-width: 20rem !important;
}

.min-w-sm-10md {
  min-width: 40rem !important;
}

.min-w-sm-10lg {
  min-width: 60rem !important;
}

.min-w-sm-10xl {
  min-width: 120rem !important;
}

.max-w-sm-11sm {
  max-width: 22rem !important;
}

.max-w-sm-11md {
  max-width: 44rem !important;
}

.max-w-sm-11lg {
  max-width: 66rem !important;
}

.max-w-sm-11xl {
  max-width: 132rem !important;
}

.min-w-sm-11sm {
  min-width: 22rem !important;
}

.min-w-sm-11md {
  min-width: 44rem !important;
}

.min-w-sm-11lg {
  min-width: 66rem !important;
}

.min-w-sm-11xl {
  min-width: 132rem !important;
}

.max-w-sm-12sm {
  max-width: 24rem !important;
}

.max-w-sm-12md {
  max-width: 48rem !important;
}

.max-w-sm-12lg {
  max-width: 72rem !important;
}

.max-w-sm-12xl {
  max-width: 144rem !important;
}

.min-w-sm-12sm {
  min-width: 24rem !important;
}

.min-w-sm-12md {
  min-width: 48rem !important;
}

.min-w-sm-12lg {
  min-width: 72rem !important;
}

.min-w-sm-12xl {
  min-width: 144rem !important;
}

.max-w-md-1sm {
  max-width: 2rem !important;
}

.max-w-md-1md {
  max-width: 4rem !important;
}

.max-w-md-1lg {
  max-width: 6rem !important;
}

.max-w-md-1xl {
  max-width: 12rem !important;
}

.min-w-md-1sm {
  min-width: 2rem !important;
}

.min-w-md-1md {
  min-width: 4rem !important;
}

.min-w-md-1lg {
  min-width: 6rem !important;
}

.min-w-md-1xl {
  min-width: 12rem !important;
}

.max-w-md-2sm {
  max-width: 4rem !important;
}

.max-w-md-2md {
  max-width: 8rem !important;
}

.max-w-md-2lg {
  max-width: 12rem !important;
}

.max-w-md-2xl {
  max-width: 24rem !important;
}

.min-w-md-2sm {
  min-width: 4rem !important;
}

.min-w-md-2md {
  min-width: 8rem !important;
}

.min-w-md-2lg {
  min-width: 12rem !important;
}

.min-w-md-2xl {
  min-width: 24rem !important;
}

.max-w-md-3sm {
  max-width: 6rem !important;
}

.max-w-md-3md {
  max-width: 12rem !important;
}

.max-w-md-3lg {
  max-width: 18rem !important;
}

.max-w-md-3xl {
  max-width: 36rem !important;
}

.min-w-md-3sm {
  min-width: 6rem !important;
}

.min-w-md-3md {
  min-width: 12rem !important;
}

.min-w-md-3lg {
  min-width: 18rem !important;
}

.min-w-md-3xl {
  min-width: 36rem !important;
}

.max-w-md-4sm {
  max-width: 8rem !important;
}

.max-w-md-4md {
  max-width: 16rem !important;
}

.max-w-md-4lg {
  max-width: 24rem !important;
}

.max-w-md-4xl {
  max-width: 48rem !important;
}

.min-w-md-4sm {
  min-width: 8rem !important;
}

.min-w-md-4md {
  min-width: 16rem !important;
}

.min-w-md-4lg {
  min-width: 24rem !important;
}

.min-w-md-4xl {
  min-width: 48rem !important;
}

.max-w-md-5sm {
  max-width: 10rem !important;
}

.max-w-md-5md {
  max-width: 20rem !important;
}

.max-w-md-5lg {
  max-width: 30rem !important;
}

.max-w-md-5xl {
  max-width: 60rem !important;
}

.min-w-md-5sm {
  min-width: 10rem !important;
}

.min-w-md-5md {
  min-width: 20rem !important;
}

.min-w-md-5lg {
  min-width: 30rem !important;
}

.min-w-md-5xl {
  min-width: 60rem !important;
}

.max-w-md-6sm {
  max-width: 12rem !important;
}

.max-w-md-6md {
  max-width: 24rem !important;
}

.max-w-md-6lg {
  max-width: 36rem !important;
}

.max-w-md-6xl {
  max-width: 72rem !important;
}

.min-w-md-6sm {
  min-width: 12rem !important;
}

.min-w-md-6md {
  min-width: 24rem !important;
}

.min-w-md-6lg {
  min-width: 36rem !important;
}

.min-w-md-6xl {
  min-width: 72rem !important;
}

.max-w-md-7sm {
  max-width: 14rem !important;
}

.max-w-md-7md {
  max-width: 28rem !important;
}

.max-w-md-7lg {
  max-width: 42rem !important;
}

.max-w-md-7xl {
  max-width: 84rem !important;
}

.min-w-md-7sm {
  min-width: 14rem !important;
}

.min-w-md-7md {
  min-width: 28rem !important;
}

.min-w-md-7lg {
  min-width: 42rem !important;
}

.min-w-md-7xl {
  min-width: 84rem !important;
}

.max-w-md-8sm {
  max-width: 16rem !important;
}

.max-w-md-8md {
  max-width: 32rem !important;
}

.max-w-md-8lg {
  max-width: 48rem !important;
}

.max-w-md-8xl {
  max-width: 96rem !important;
}

.min-w-md-8sm {
  min-width: 16rem !important;
}

.min-w-md-8md {
  min-width: 32rem !important;
}

.min-w-md-8lg {
  min-width: 48rem !important;
}

.min-w-md-8xl {
  min-width: 96rem !important;
}

.max-w-md-9sm {
  max-width: 18rem !important;
}

.max-w-md-9md {
  max-width: 36rem !important;
}

.max-w-md-9lg {
  max-width: 54rem !important;
}

.max-w-md-9xl {
  max-width: 108rem !important;
}

.min-w-md-9sm {
  min-width: 18rem !important;
}

.min-w-md-9md {
  min-width: 36rem !important;
}

.min-w-md-9lg {
  min-width: 54rem !important;
}

.min-w-md-9xl {
  min-width: 108rem !important;
}

.max-w-md-10sm {
  max-width: 20rem !important;
}

.max-w-md-10md {
  max-width: 40rem !important;
}

.max-w-md-10lg {
  max-width: 60rem !important;
}

.max-w-md-10xl {
  max-width: 120rem !important;
}

.min-w-md-10sm {
  min-width: 20rem !important;
}

.min-w-md-10md {
  min-width: 40rem !important;
}

.min-w-md-10lg {
  min-width: 60rem !important;
}

.min-w-md-10xl {
  min-width: 120rem !important;
}

.max-w-md-11sm {
  max-width: 22rem !important;
}

.max-w-md-11md {
  max-width: 44rem !important;
}

.max-w-md-11lg {
  max-width: 66rem !important;
}

.max-w-md-11xl {
  max-width: 132rem !important;
}

.min-w-md-11sm {
  min-width: 22rem !important;
}

.min-w-md-11md {
  min-width: 44rem !important;
}

.min-w-md-11lg {
  min-width: 66rem !important;
}

.min-w-md-11xl {
  min-width: 132rem !important;
}

.max-w-md-12sm {
  max-width: 24rem !important;
}

.max-w-md-12md {
  max-width: 48rem !important;
}

.max-w-md-12lg {
  max-width: 72rem !important;
}

.max-w-md-12xl {
  max-width: 144rem !important;
}

.min-w-md-12sm {
  min-width: 24rem !important;
}

.min-w-md-12md {
  min-width: 48rem !important;
}

.min-w-md-12lg {
  min-width: 72rem !important;
}

.min-w-md-12xl {
  min-width: 144rem !important;
}

.max-w-lg-1sm {
  max-width: 2rem !important;
}

.max-w-lg-1md {
  max-width: 4rem !important;
}

.max-w-lg-1lg {
  max-width: 6rem !important;
}

.max-w-lg-1xl {
  max-width: 12rem !important;
}

.min-w-lg-1sm {
  min-width: 2rem !important;
}

.min-w-lg-1md {
  min-width: 4rem !important;
}

.min-w-lg-1lg {
  min-width: 6rem !important;
}

.min-w-lg-1xl {
  min-width: 12rem !important;
}

.max-w-lg-2sm {
  max-width: 4rem !important;
}

.max-w-lg-2md {
  max-width: 8rem !important;
}

.max-w-lg-2lg {
  max-width: 12rem !important;
}

.max-w-lg-2xl {
  max-width: 24rem !important;
}

.min-w-lg-2sm {
  min-width: 4rem !important;
}

.min-w-lg-2md {
  min-width: 8rem !important;
}

.min-w-lg-2lg {
  min-width: 12rem !important;
}

.min-w-lg-2xl {
  min-width: 24rem !important;
}

.max-w-lg-3sm {
  max-width: 6rem !important;
}

.max-w-lg-3md {
  max-width: 12rem !important;
}

.max-w-lg-3lg {
  max-width: 18rem !important;
}

.max-w-lg-3xl {
  max-width: 36rem !important;
}

.min-w-lg-3sm {
  min-width: 6rem !important;
}

.min-w-lg-3md {
  min-width: 12rem !important;
}

.min-w-lg-3lg {
  min-width: 18rem !important;
}

.min-w-lg-3xl {
  min-width: 36rem !important;
}

.max-w-lg-4sm {
  max-width: 8rem !important;
}

.max-w-lg-4md {
  max-width: 16rem !important;
}

.max-w-lg-4lg {
  max-width: 24rem !important;
}

.max-w-lg-4xl {
  max-width: 48rem !important;
}

.min-w-lg-4sm {
  min-width: 8rem !important;
}

.min-w-lg-4md {
  min-width: 16rem !important;
}

.min-w-lg-4lg {
  min-width: 24rem !important;
}

.min-w-lg-4xl {
  min-width: 48rem !important;
}

.max-w-lg-5sm {
  max-width: 10rem !important;
}

.max-w-lg-5md {
  max-width: 20rem !important;
}

.max-w-lg-5lg {
  max-width: 30rem !important;
}

.max-w-lg-5xl {
  max-width: 60rem !important;
}

.min-w-lg-5sm {
  min-width: 10rem !important;
}

.min-w-lg-5md {
  min-width: 20rem !important;
}

.min-w-lg-5lg {
  min-width: 30rem !important;
}

.min-w-lg-5xl {
  min-width: 60rem !important;
}

.max-w-lg-6sm {
  max-width: 12rem !important;
}

.max-w-lg-6md {
  max-width: 24rem !important;
}

.max-w-lg-6lg {
  max-width: 36rem !important;
}

.max-w-lg-6xl {
  max-width: 72rem !important;
}

.min-w-lg-6sm {
  min-width: 12rem !important;
}

.min-w-lg-6md {
  min-width: 24rem !important;
}

.min-w-lg-6lg {
  min-width: 36rem !important;
}

.min-w-lg-6xl {
  min-width: 72rem !important;
}

.max-w-lg-7sm {
  max-width: 14rem !important;
}

.max-w-lg-7md {
  max-width: 28rem !important;
}

.max-w-lg-7lg {
  max-width: 42rem !important;
}

.max-w-lg-7xl {
  max-width: 84rem !important;
}

.min-w-lg-7sm {
  min-width: 14rem !important;
}

.min-w-lg-7md {
  min-width: 28rem !important;
}

.min-w-lg-7lg {
  min-width: 42rem !important;
}

.min-w-lg-7xl {
  min-width: 84rem !important;
}

.max-w-lg-8sm {
  max-width: 16rem !important;
}

.max-w-lg-8md {
  max-width: 32rem !important;
}

.max-w-lg-8lg {
  max-width: 48rem !important;
}

.max-w-lg-8xl {
  max-width: 96rem !important;
}

.min-w-lg-8sm {
  min-width: 16rem !important;
}

.min-w-lg-8md {
  min-width: 32rem !important;
}

.min-w-lg-8lg {
  min-width: 48rem !important;
}

.min-w-lg-8xl {
  min-width: 96rem !important;
}

.max-w-lg-9sm {
  max-width: 18rem !important;
}

.max-w-lg-9md {
  max-width: 36rem !important;
}

.max-w-lg-9lg {
  max-width: 54rem !important;
}

.max-w-lg-9xl {
  max-width: 108rem !important;
}

.min-w-lg-9sm {
  min-width: 18rem !important;
}

.min-w-lg-9md {
  min-width: 36rem !important;
}

.min-w-lg-9lg {
  min-width: 54rem !important;
}

.min-w-lg-9xl {
  min-width: 108rem !important;
}

.max-w-lg-10sm {
  max-width: 20rem !important;
}

.max-w-lg-10md {
  max-width: 40rem !important;
}

.max-w-lg-10lg {
  max-width: 60rem !important;
}

.max-w-lg-10xl {
  max-width: 120rem !important;
}

.min-w-lg-10sm {
  min-width: 20rem !important;
}

.min-w-lg-10md {
  min-width: 40rem !important;
}

.min-w-lg-10lg {
  min-width: 60rem !important;
}

.min-w-lg-10xl {
  min-width: 120rem !important;
}

.max-w-lg-11sm {
  max-width: 22rem !important;
}

.max-w-lg-11md {
  max-width: 44rem !important;
}

.max-w-lg-11lg {
  max-width: 66rem !important;
}

.max-w-lg-11xl {
  max-width: 132rem !important;
}

.min-w-lg-11sm {
  min-width: 22rem !important;
}

.min-w-lg-11md {
  min-width: 44rem !important;
}

.min-w-lg-11lg {
  min-width: 66rem !important;
}

.min-w-lg-11xl {
  min-width: 132rem !important;
}

.max-w-lg-12sm {
  max-width: 24rem !important;
}

.max-w-lg-12md {
  max-width: 48rem !important;
}

.max-w-lg-12lg {
  max-width: 72rem !important;
}

.max-w-lg-12xl {
  max-width: 144rem !important;
}

.min-w-lg-12sm {
  min-width: 24rem !important;
}

.min-w-lg-12md {
  min-width: 48rem !important;
}

.min-w-lg-12lg {
  min-width: 72rem !important;
}

.min-w-lg-12xl {
  min-width: 144rem !important;
}

.max-w-xl-1sm {
  max-width: 2rem !important;
}

.max-w-xl-1md {
  max-width: 4rem !important;
}

.max-w-xl-1lg {
  max-width: 6rem !important;
}

.max-w-xl-1xl {
  max-width: 12rem !important;
}

.min-w-xl-1sm {
  min-width: 2rem !important;
}

.min-w-xl-1md {
  min-width: 4rem !important;
}

.min-w-xl-1lg {
  min-width: 6rem !important;
}

.min-w-xl-1xl {
  min-width: 12rem !important;
}

.max-w-xl-2sm {
  max-width: 4rem !important;
}

.max-w-xl-2md {
  max-width: 8rem !important;
}

.max-w-xl-2lg {
  max-width: 12rem !important;
}

.max-w-xl-2xl {
  max-width: 24rem !important;
}

.min-w-xl-2sm {
  min-width: 4rem !important;
}

.min-w-xl-2md {
  min-width: 8rem !important;
}

.min-w-xl-2lg {
  min-width: 12rem !important;
}

.min-w-xl-2xl {
  min-width: 24rem !important;
}

.max-w-xl-3sm {
  max-width: 6rem !important;
}

.max-w-xl-3md {
  max-width: 12rem !important;
}

.max-w-xl-3lg {
  max-width: 18rem !important;
}

.max-w-xl-3xl {
  max-width: 36rem !important;
}

.min-w-xl-3sm {
  min-width: 6rem !important;
}

.min-w-xl-3md {
  min-width: 12rem !important;
}

.min-w-xl-3lg {
  min-width: 18rem !important;
}

.min-w-xl-3xl {
  min-width: 36rem !important;
}

.max-w-xl-4sm {
  max-width: 8rem !important;
}

.max-w-xl-4md {
  max-width: 16rem !important;
}

.max-w-xl-4lg {
  max-width: 24rem !important;
}

.max-w-xl-4xl {
  max-width: 48rem !important;
}

.min-w-xl-4sm {
  min-width: 8rem !important;
}

.min-w-xl-4md {
  min-width: 16rem !important;
}

.min-w-xl-4lg {
  min-width: 24rem !important;
}

.min-w-xl-4xl {
  min-width: 48rem !important;
}

.max-w-xl-5sm {
  max-width: 10rem !important;
}

.max-w-xl-5md {
  max-width: 20rem !important;
}

.max-w-xl-5lg {
  max-width: 30rem !important;
}

.max-w-xl-5xl {
  max-width: 60rem !important;
}

.min-w-xl-5sm {
  min-width: 10rem !important;
}

.min-w-xl-5md {
  min-width: 20rem !important;
}

.min-w-xl-5lg {
  min-width: 30rem !important;
}

.min-w-xl-5xl {
  min-width: 60rem !important;
}

.max-w-xl-6sm {
  max-width: 12rem !important;
}

.max-w-xl-6md {
  max-width: 24rem !important;
}

.max-w-xl-6lg {
  max-width: 36rem !important;
}

.max-w-xl-6xl {
  max-width: 72rem !important;
}

.min-w-xl-6sm {
  min-width: 12rem !important;
}

.min-w-xl-6md {
  min-width: 24rem !important;
}

.min-w-xl-6lg {
  min-width: 36rem !important;
}

.min-w-xl-6xl {
  min-width: 72rem !important;
}

.max-w-xl-7sm {
  max-width: 14rem !important;
}

.max-w-xl-7md {
  max-width: 28rem !important;
}

.max-w-xl-7lg {
  max-width: 42rem !important;
}

.max-w-xl-7xl {
  max-width: 84rem !important;
}

.min-w-xl-7sm {
  min-width: 14rem !important;
}

.min-w-xl-7md {
  min-width: 28rem !important;
}

.min-w-xl-7lg {
  min-width: 42rem !important;
}

.min-w-xl-7xl {
  min-width: 84rem !important;
}

.max-w-xl-8sm {
  max-width: 16rem !important;
}

.max-w-xl-8md {
  max-width: 32rem !important;
}

.max-w-xl-8lg {
  max-width: 48rem !important;
}

.max-w-xl-8xl {
  max-width: 96rem !important;
}

.min-w-xl-8sm {
  min-width: 16rem !important;
}

.min-w-xl-8md {
  min-width: 32rem !important;
}

.min-w-xl-8lg {
  min-width: 48rem !important;
}

.min-w-xl-8xl {
  min-width: 96rem !important;
}

.max-w-xl-9sm {
  max-width: 18rem !important;
}

.max-w-xl-9md {
  max-width: 36rem !important;
}

.max-w-xl-9lg {
  max-width: 54rem !important;
}

.max-w-xl-9xl {
  max-width: 108rem !important;
}

.min-w-xl-9sm {
  min-width: 18rem !important;
}

.min-w-xl-9md {
  min-width: 36rem !important;
}

.min-w-xl-9lg {
  min-width: 54rem !important;
}

.min-w-xl-9xl {
  min-width: 108rem !important;
}

.max-w-xl-10sm {
  max-width: 20rem !important;
}

.max-w-xl-10md {
  max-width: 40rem !important;
}

.max-w-xl-10lg {
  max-width: 60rem !important;
}

.max-w-xl-10xl {
  max-width: 120rem !important;
}

.min-w-xl-10sm {
  min-width: 20rem !important;
}

.min-w-xl-10md {
  min-width: 40rem !important;
}

.min-w-xl-10lg {
  min-width: 60rem !important;
}

.min-w-xl-10xl {
  min-width: 120rem !important;
}

.max-w-xl-11sm {
  max-width: 22rem !important;
}

.max-w-xl-11md {
  max-width: 44rem !important;
}

.max-w-xl-11lg {
  max-width: 66rem !important;
}

.max-w-xl-11xl {
  max-width: 132rem !important;
}

.min-w-xl-11sm {
  min-width: 22rem !important;
}

.min-w-xl-11md {
  min-width: 44rem !important;
}

.min-w-xl-11lg {
  min-width: 66rem !important;
}

.min-w-xl-11xl {
  min-width: 132rem !important;
}

.max-w-xl-12sm {
  max-width: 24rem !important;
}

.max-w-xl-12md {
  max-width: 48rem !important;
}

.max-w-xl-12lg {
  max-width: 72rem !important;
}

.max-w-xl-12xl {
  max-width: 144rem !important;
}

.min-w-xl-12sm {
  min-width: 24rem !important;
}

.min-w-xl-12md {
  min-width: 48rem !important;
}

.min-w-xl-12lg {
  min-width: 72rem !important;
}

.min-w-xl-12xl {
  min-width: 144rem !important;
}

.max-w-xxl-1sm {
  max-width: 2rem !important;
}

.max-w-xxl-1md {
  max-width: 4rem !important;
}

.max-w-xxl-1lg {
  max-width: 6rem !important;
}

.max-w-xxl-1xl {
  max-width: 12rem !important;
}

.min-w-xxl-1sm {
  min-width: 2rem !important;
}

.min-w-xxl-1md {
  min-width: 4rem !important;
}

.min-w-xxl-1lg {
  min-width: 6rem !important;
}

.min-w-xxl-1xl {
  min-width: 12rem !important;
}

.max-w-xxl-2sm {
  max-width: 4rem !important;
}

.max-w-xxl-2md {
  max-width: 8rem !important;
}

.max-w-xxl-2lg {
  max-width: 12rem !important;
}

.max-w-xxl-2xl {
  max-width: 24rem !important;
}

.min-w-xxl-2sm {
  min-width: 4rem !important;
}

.min-w-xxl-2md {
  min-width: 8rem !important;
}

.min-w-xxl-2lg {
  min-width: 12rem !important;
}

.min-w-xxl-2xl {
  min-width: 24rem !important;
}

.max-w-xxl-3sm {
  max-width: 6rem !important;
}

.max-w-xxl-3md {
  max-width: 12rem !important;
}

.max-w-xxl-3lg {
  max-width: 18rem !important;
}

.max-w-xxl-3xl {
  max-width: 36rem !important;
}

.min-w-xxl-3sm {
  min-width: 6rem !important;
}

.min-w-xxl-3md {
  min-width: 12rem !important;
}

.min-w-xxl-3lg {
  min-width: 18rem !important;
}

.min-w-xxl-3xl {
  min-width: 36rem !important;
}

.max-w-xxl-4sm {
  max-width: 8rem !important;
}

.max-w-xxl-4md {
  max-width: 16rem !important;
}

.max-w-xxl-4lg {
  max-width: 24rem !important;
}

.max-w-xxl-4xl {
  max-width: 48rem !important;
}

.min-w-xxl-4sm {
  min-width: 8rem !important;
}

.min-w-xxl-4md {
  min-width: 16rem !important;
}

.min-w-xxl-4lg {
  min-width: 24rem !important;
}

.min-w-xxl-4xl {
  min-width: 48rem !important;
}

.max-w-xxl-5sm {
  max-width: 10rem !important;
}

.max-w-xxl-5md {
  max-width: 20rem !important;
}

.max-w-xxl-5lg {
  max-width: 30rem !important;
}

.max-w-xxl-5xl {
  max-width: 60rem !important;
}

.min-w-xxl-5sm {
  min-width: 10rem !important;
}

.min-w-xxl-5md {
  min-width: 20rem !important;
}

.min-w-xxl-5lg {
  min-width: 30rem !important;
}

.min-w-xxl-5xl {
  min-width: 60rem !important;
}

.max-w-xxl-6sm {
  max-width: 12rem !important;
}

.max-w-xxl-6md {
  max-width: 24rem !important;
}

.max-w-xxl-6lg {
  max-width: 36rem !important;
}

.max-w-xxl-6xl {
  max-width: 72rem !important;
}

.min-w-xxl-6sm {
  min-width: 12rem !important;
}

.min-w-xxl-6md {
  min-width: 24rem !important;
}

.min-w-xxl-6lg {
  min-width: 36rem !important;
}

.min-w-xxl-6xl {
  min-width: 72rem !important;
}

.max-w-xxl-7sm {
  max-width: 14rem !important;
}

.max-w-xxl-7md {
  max-width: 28rem !important;
}

.max-w-xxl-7lg {
  max-width: 42rem !important;
}

.max-w-xxl-7xl {
  max-width: 84rem !important;
}

.min-w-xxl-7sm {
  min-width: 14rem !important;
}

.min-w-xxl-7md {
  min-width: 28rem !important;
}

.min-w-xxl-7lg {
  min-width: 42rem !important;
}

.min-w-xxl-7xl {
  min-width: 84rem !important;
}

.max-w-xxl-8sm {
  max-width: 16rem !important;
}

.max-w-xxl-8md {
  max-width: 32rem !important;
}

.max-w-xxl-8lg {
  max-width: 48rem !important;
}

.max-w-xxl-8xl {
  max-width: 96rem !important;
}

.min-w-xxl-8sm {
  min-width: 16rem !important;
}

.min-w-xxl-8md {
  min-width: 32rem !important;
}

.min-w-xxl-8lg {
  min-width: 48rem !important;
}

.min-w-xxl-8xl {
  min-width: 96rem !important;
}

.max-w-xxl-9sm {
  max-width: 18rem !important;
}

.max-w-xxl-9md {
  max-width: 36rem !important;
}

.max-w-xxl-9lg {
  max-width: 54rem !important;
}

.max-w-xxl-9xl {
  max-width: 108rem !important;
}

.min-w-xxl-9sm {
  min-width: 18rem !important;
}

.min-w-xxl-9md {
  min-width: 36rem !important;
}

.min-w-xxl-9lg {
  min-width: 54rem !important;
}

.min-w-xxl-9xl {
  min-width: 108rem !important;
}

.max-w-xxl-10sm {
  max-width: 20rem !important;
}

.max-w-xxl-10md {
  max-width: 40rem !important;
}

.max-w-xxl-10lg {
  max-width: 60rem !important;
}

.max-w-xxl-10xl {
  max-width: 120rem !important;
}

.min-w-xxl-10sm {
  min-width: 20rem !important;
}

.min-w-xxl-10md {
  min-width: 40rem !important;
}

.min-w-xxl-10lg {
  min-width: 60rem !important;
}

.min-w-xxl-10xl {
  min-width: 120rem !important;
}

.max-w-xxl-11sm {
  max-width: 22rem !important;
}

.max-w-xxl-11md {
  max-width: 44rem !important;
}

.max-w-xxl-11lg {
  max-width: 66rem !important;
}

.max-w-xxl-11xl {
  max-width: 132rem !important;
}

.min-w-xxl-11sm {
  min-width: 22rem !important;
}

.min-w-xxl-11md {
  min-width: 44rem !important;
}

.min-w-xxl-11lg {
  min-width: 66rem !important;
}

.min-w-xxl-11xl {
  min-width: 132rem !important;
}

.max-w-xxl-12sm {
  max-width: 24rem !important;
}

.max-w-xxl-12md {
  max-width: 48rem !important;
}

.max-w-xxl-12lg {
  max-width: 72rem !important;
}

.max-w-xxl-12xl {
  max-width: 144rem !important;
}

.min-w-xxl-12sm {
  min-width: 24rem !important;
}

.min-w-xxl-12md {
  min-width: 48rem !important;
}

.min-w-xxl-12lg {
  min-width: 72rem !important;
}

.min-w-xxl-12xl {
  min-width: 144rem !important;
}

.max-w-xxxl-1sm {
  max-width: 2rem !important;
}

.max-w-xxxl-1md {
  max-width: 4rem !important;
}

.max-w-xxxl-1lg {
  max-width: 6rem !important;
}

.max-w-xxxl-1xl {
  max-width: 12rem !important;
}

.min-w-xxxl-1sm {
  min-width: 2rem !important;
}

.min-w-xxxl-1md {
  min-width: 4rem !important;
}

.min-w-xxxl-1lg {
  min-width: 6rem !important;
}

.min-w-xxxl-1xl {
  min-width: 12rem !important;
}

.max-w-xxxl-2sm {
  max-width: 4rem !important;
}

.max-w-xxxl-2md {
  max-width: 8rem !important;
}

.max-w-xxxl-2lg {
  max-width: 12rem !important;
}

.max-w-xxxl-2xl {
  max-width: 24rem !important;
}

.min-w-xxxl-2sm {
  min-width: 4rem !important;
}

.min-w-xxxl-2md {
  min-width: 8rem !important;
}

.min-w-xxxl-2lg {
  min-width: 12rem !important;
}

.min-w-xxxl-2xl {
  min-width: 24rem !important;
}

.max-w-xxxl-3sm {
  max-width: 6rem !important;
}

.max-w-xxxl-3md {
  max-width: 12rem !important;
}

.max-w-xxxl-3lg {
  max-width: 18rem !important;
}

.max-w-xxxl-3xl {
  max-width: 36rem !important;
}

.min-w-xxxl-3sm {
  min-width: 6rem !important;
}

.min-w-xxxl-3md {
  min-width: 12rem !important;
}

.min-w-xxxl-3lg {
  min-width: 18rem !important;
}

.min-w-xxxl-3xl {
  min-width: 36rem !important;
}

.max-w-xxxl-4sm {
  max-width: 8rem !important;
}

.max-w-xxxl-4md {
  max-width: 16rem !important;
}

.max-w-xxxl-4lg {
  max-width: 24rem !important;
}

.max-w-xxxl-4xl {
  max-width: 48rem !important;
}

.min-w-xxxl-4sm {
  min-width: 8rem !important;
}

.min-w-xxxl-4md {
  min-width: 16rem !important;
}

.min-w-xxxl-4lg {
  min-width: 24rem !important;
}

.min-w-xxxl-4xl {
  min-width: 48rem !important;
}

.max-w-xxxl-5sm {
  max-width: 10rem !important;
}

.max-w-xxxl-5md {
  max-width: 20rem !important;
}

.max-w-xxxl-5lg {
  max-width: 30rem !important;
}

.max-w-xxxl-5xl {
  max-width: 60rem !important;
}

.min-w-xxxl-5sm {
  min-width: 10rem !important;
}

.min-w-xxxl-5md {
  min-width: 20rem !important;
}

.min-w-xxxl-5lg {
  min-width: 30rem !important;
}

.min-w-xxxl-5xl {
  min-width: 60rem !important;
}

.max-w-xxxl-6sm {
  max-width: 12rem !important;
}

.max-w-xxxl-6md {
  max-width: 24rem !important;
}

.max-w-xxxl-6lg {
  max-width: 36rem !important;
}

.max-w-xxxl-6xl {
  max-width: 72rem !important;
}

.min-w-xxxl-6sm {
  min-width: 12rem !important;
}

.min-w-xxxl-6md {
  min-width: 24rem !important;
}

.min-w-xxxl-6lg {
  min-width: 36rem !important;
}

.min-w-xxxl-6xl {
  min-width: 72rem !important;
}

.max-w-xxxl-7sm {
  max-width: 14rem !important;
}

.max-w-xxxl-7md {
  max-width: 28rem !important;
}

.max-w-xxxl-7lg {
  max-width: 42rem !important;
}

.max-w-xxxl-7xl {
  max-width: 84rem !important;
}

.min-w-xxxl-7sm {
  min-width: 14rem !important;
}

.min-w-xxxl-7md {
  min-width: 28rem !important;
}

.min-w-xxxl-7lg {
  min-width: 42rem !important;
}

.min-w-xxxl-7xl {
  min-width: 84rem !important;
}

.max-w-xxxl-8sm {
  max-width: 16rem !important;
}

.max-w-xxxl-8md {
  max-width: 32rem !important;
}

.max-w-xxxl-8lg {
  max-width: 48rem !important;
}

.max-w-xxxl-8xl {
  max-width: 96rem !important;
}

.min-w-xxxl-8sm {
  min-width: 16rem !important;
}

.min-w-xxxl-8md {
  min-width: 32rem !important;
}

.min-w-xxxl-8lg {
  min-width: 48rem !important;
}

.min-w-xxxl-8xl {
  min-width: 96rem !important;
}

.max-w-xxxl-9sm {
  max-width: 18rem !important;
}

.max-w-xxxl-9md {
  max-width: 36rem !important;
}

.max-w-xxxl-9lg {
  max-width: 54rem !important;
}

.max-w-xxxl-9xl {
  max-width: 108rem !important;
}

.min-w-xxxl-9sm {
  min-width: 18rem !important;
}

.min-w-xxxl-9md {
  min-width: 36rem !important;
}

.min-w-xxxl-9lg {
  min-width: 54rem !important;
}

.min-w-xxxl-9xl {
  min-width: 108rem !important;
}

.max-w-xxxl-10sm {
  max-width: 20rem !important;
}

.max-w-xxxl-10md {
  max-width: 40rem !important;
}

.max-w-xxxl-10lg {
  max-width: 60rem !important;
}

.max-w-xxxl-10xl {
  max-width: 120rem !important;
}

.min-w-xxxl-10sm {
  min-width: 20rem !important;
}

.min-w-xxxl-10md {
  min-width: 40rem !important;
}

.min-w-xxxl-10lg {
  min-width: 60rem !important;
}

.min-w-xxxl-10xl {
  min-width: 120rem !important;
}

.max-w-xxxl-11sm {
  max-width: 22rem !important;
}

.max-w-xxxl-11md {
  max-width: 44rem !important;
}

.max-w-xxxl-11lg {
  max-width: 66rem !important;
}

.max-w-xxxl-11xl {
  max-width: 132rem !important;
}

.min-w-xxxl-11sm {
  min-width: 22rem !important;
}

.min-w-xxxl-11md {
  min-width: 44rem !important;
}

.min-w-xxxl-11lg {
  min-width: 66rem !important;
}

.min-w-xxxl-11xl {
  min-width: 132rem !important;
}

.max-w-xxxl-12sm {
  max-width: 24rem !important;
}

.max-w-xxxl-12md {
  max-width: 48rem !important;
}

.max-w-xxxl-12lg {
  max-width: 72rem !important;
}

.max-w-xxxl-12xl {
  max-width: 144rem !important;
}

.min-w-xxxl-12sm {
  min-width: 24rem !important;
}

.min-w-xxxl-12md {
  min-width: 48rem !important;
}

.min-w-xxxl-12lg {
  min-width: 72rem !important;
}

.min-w-xxxl-12xl {
  min-width: 144rem !important;
}

.max-w-hd-1sm {
  max-width: 2rem !important;
}

.max-w-hd-1md {
  max-width: 4rem !important;
}

.max-w-hd-1lg {
  max-width: 6rem !important;
}

.max-w-hd-1xl {
  max-width: 12rem !important;
}

.min-w-hd-1sm {
  min-width: 2rem !important;
}

.min-w-hd-1md {
  min-width: 4rem !important;
}

.min-w-hd-1lg {
  min-width: 6rem !important;
}

.min-w-hd-1xl {
  min-width: 12rem !important;
}

.max-w-hd-2sm {
  max-width: 4rem !important;
}

.max-w-hd-2md {
  max-width: 8rem !important;
}

.max-w-hd-2lg {
  max-width: 12rem !important;
}

.max-w-hd-2xl {
  max-width: 24rem !important;
}

.min-w-hd-2sm {
  min-width: 4rem !important;
}

.min-w-hd-2md {
  min-width: 8rem !important;
}

.min-w-hd-2lg {
  min-width: 12rem !important;
}

.min-w-hd-2xl {
  min-width: 24rem !important;
}

.max-w-hd-3sm {
  max-width: 6rem !important;
}

.max-w-hd-3md {
  max-width: 12rem !important;
}

.max-w-hd-3lg {
  max-width: 18rem !important;
}

.max-w-hd-3xl {
  max-width: 36rem !important;
}

.min-w-hd-3sm {
  min-width: 6rem !important;
}

.min-w-hd-3md {
  min-width: 12rem !important;
}

.min-w-hd-3lg {
  min-width: 18rem !important;
}

.min-w-hd-3xl {
  min-width: 36rem !important;
}

.max-w-hd-4sm {
  max-width: 8rem !important;
}

.max-w-hd-4md {
  max-width: 16rem !important;
}

.max-w-hd-4lg {
  max-width: 24rem !important;
}

.max-w-hd-4xl {
  max-width: 48rem !important;
}

.min-w-hd-4sm {
  min-width: 8rem !important;
}

.min-w-hd-4md {
  min-width: 16rem !important;
}

.min-w-hd-4lg {
  min-width: 24rem !important;
}

.min-w-hd-4xl {
  min-width: 48rem !important;
}

.max-w-hd-5sm {
  max-width: 10rem !important;
}

.max-w-hd-5md {
  max-width: 20rem !important;
}

.max-w-hd-5lg {
  max-width: 30rem !important;
}

.max-w-hd-5xl {
  max-width: 60rem !important;
}

.min-w-hd-5sm {
  min-width: 10rem !important;
}

.min-w-hd-5md {
  min-width: 20rem !important;
}

.min-w-hd-5lg {
  min-width: 30rem !important;
}

.min-w-hd-5xl {
  min-width: 60rem !important;
}

.max-w-hd-6sm {
  max-width: 12rem !important;
}

.max-w-hd-6md {
  max-width: 24rem !important;
}

.max-w-hd-6lg {
  max-width: 36rem !important;
}

.max-w-hd-6xl {
  max-width: 72rem !important;
}

.min-w-hd-6sm {
  min-width: 12rem !important;
}

.min-w-hd-6md {
  min-width: 24rem !important;
}

.min-w-hd-6lg {
  min-width: 36rem !important;
}

.min-w-hd-6xl {
  min-width: 72rem !important;
}

.max-w-hd-7sm {
  max-width: 14rem !important;
}

.max-w-hd-7md {
  max-width: 28rem !important;
}

.max-w-hd-7lg {
  max-width: 42rem !important;
}

.max-w-hd-7xl {
  max-width: 84rem !important;
}

.min-w-hd-7sm {
  min-width: 14rem !important;
}

.min-w-hd-7md {
  min-width: 28rem !important;
}

.min-w-hd-7lg {
  min-width: 42rem !important;
}

.min-w-hd-7xl {
  min-width: 84rem !important;
}

.max-w-hd-8sm {
  max-width: 16rem !important;
}

.max-w-hd-8md {
  max-width: 32rem !important;
}

.max-w-hd-8lg {
  max-width: 48rem !important;
}

.max-w-hd-8xl {
  max-width: 96rem !important;
}

.min-w-hd-8sm {
  min-width: 16rem !important;
}

.min-w-hd-8md {
  min-width: 32rem !important;
}

.min-w-hd-8lg {
  min-width: 48rem !important;
}

.min-w-hd-8xl {
  min-width: 96rem !important;
}

.max-w-hd-9sm {
  max-width: 18rem !important;
}

.max-w-hd-9md {
  max-width: 36rem !important;
}

.max-w-hd-9lg {
  max-width: 54rem !important;
}

.max-w-hd-9xl {
  max-width: 108rem !important;
}

.min-w-hd-9sm {
  min-width: 18rem !important;
}

.min-w-hd-9md {
  min-width: 36rem !important;
}

.min-w-hd-9lg {
  min-width: 54rem !important;
}

.min-w-hd-9xl {
  min-width: 108rem !important;
}

.max-w-hd-10sm {
  max-width: 20rem !important;
}

.max-w-hd-10md {
  max-width: 40rem !important;
}

.max-w-hd-10lg {
  max-width: 60rem !important;
}

.max-w-hd-10xl {
  max-width: 120rem !important;
}

.min-w-hd-10sm {
  min-width: 20rem !important;
}

.min-w-hd-10md {
  min-width: 40rem !important;
}

.min-w-hd-10lg {
  min-width: 60rem !important;
}

.min-w-hd-10xl {
  min-width: 120rem !important;
}

.max-w-hd-11sm {
  max-width: 22rem !important;
}

.max-w-hd-11md {
  max-width: 44rem !important;
}

.max-w-hd-11lg {
  max-width: 66rem !important;
}

.max-w-hd-11xl {
  max-width: 132rem !important;
}

.min-w-hd-11sm {
  min-width: 22rem !important;
}

.min-w-hd-11md {
  min-width: 44rem !important;
}

.min-w-hd-11lg {
  min-width: 66rem !important;
}

.min-w-hd-11xl {
  min-width: 132rem !important;
}

.max-w-hd-12sm {
  max-width: 24rem !important;
}

.max-w-hd-12md {
  max-width: 48rem !important;
}

.max-w-hd-12lg {
  max-width: 72rem !important;
}

.max-w-hd-12xl {
  max-width: 144rem !important;
}

.min-w-hd-12sm {
  min-width: 24rem !important;
}

.min-w-hd-12md {
  min-width: 48rem !important;
}

.min-w-hd-12lg {
  min-width: 72rem !important;
}

.min-w-hd-12xl {
  min-width: 144rem !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.z-index-20 {
  z-index: 20 !important;
}

.z-index-30 {
  z-index: 30 !important;
}

.z-index-40 {
  z-index: 40 !important;
}

.z-index-50 {
  z-index: 50 !important;
}

.z-index-60 {
  z-index: 60 !important;
}

.z-index-70 {
  z-index: 70 !important;
}

.z-index-80 {
  z-index: 80 !important;
}

.z-index-90 {
  z-index: 90 !important;
}

.z-index-100 {
  z-index: 100 !important;
}

.z-index-110 {
  z-index: 110 !important;
}

.z-index-120 {
  z-index: 120 !important;
}

.z-index-130 {
  z-index: 130 !important;
}

.z-index-140 {
  z-index: 140 !important;
}

.z-index-150 {
  z-index: 150 !important;
}

.z-index-160 {
  z-index: 160 !important;
}

.z-index-170 {
  z-index: 170 !important;
}

.z-index-180 {
  z-index: 180 !important;
}

.z-index-190 {
  z-index: 190 !important;
}

.z-index-200 {
  z-index: 200 !important;
}

.z-index-210 {
  z-index: 210 !important;
}

.z-index-220 {
  z-index: 220 !important;
}

.z-index-230 {
  z-index: 230 !important;
}

.z-index-240 {
  z-index: 240 !important;
}

.z-index-250 {
  z-index: 250 !important;
}

.z-index-260 {
  z-index: 260 !important;
}

.z-index-270 {
  z-index: 270 !important;
}

.z-index-280 {
  z-index: 280 !important;
}

.z-index-290 {
  z-index: 290 !important;
}

.z-index-300 {
  z-index: 300 !important;
}

.z-index-310 {
  z-index: 310 !important;
}

.z-index-320 {
  z-index: 320 !important;
}

.z-index-330 {
  z-index: 330 !important;
}

.z-index-340 {
  z-index: 340 !important;
}

.z-index-350 {
  z-index: 350 !important;
}

.z-index-360 {
  z-index: 360 !important;
}

.z-index-370 {
  z-index: 370 !important;
}

.z-index-380 {
  z-index: 380 !important;
}

.z-index-390 {
  z-index: 390 !important;
}

.z-index-400 {
  z-index: 400 !important;
}

.z-index-410 {
  z-index: 410 !important;
}

.z-index-420 {
  z-index: 420 !important;
}

.z-index-430 {
  z-index: 430 !important;
}

.z-index-440 {
  z-index: 440 !important;
}

.z-index-450 {
  z-index: 450 !important;
}

.z-index-460 {
  z-index: 460 !important;
}

.z-index-470 {
  z-index: 470 !important;
}

.z-index-480 {
  z-index: 480 !important;
}

.z-index-490 {
  z-index: 490 !important;
}

.z-index-500 {
  z-index: 500 !important;
}

.z-index-510 {
  z-index: 510 !important;
}

.z-index-520 {
  z-index: 520 !important;
}

.z-index-530 {
  z-index: 530 !important;
}

.z-index-540 {
  z-index: 540 !important;
}

.z-index-550 {
  z-index: 550 !important;
}

.z-index-560 {
  z-index: 560 !important;
}

.z-index-570 {
  z-index: 570 !important;
}

.z-index-580 {
  z-index: 580 !important;
}

.z-index-590 {
  z-index: 590 !important;
}

.z-index-600 {
  z-index: 600 !important;
}

.z-index-610 {
  z-index: 610 !important;
}

.z-index-620 {
  z-index: 620 !important;
}

.z-index-630 {
  z-index: 630 !important;
}

.z-index-640 {
  z-index: 640 !important;
}

.z-index-650 {
  z-index: 650 !important;
}

.z-index-660 {
  z-index: 660 !important;
}

.z-index-670 {
  z-index: 670 !important;
}

.z-index-680 {
  z-index: 680 !important;
}

.z-index-690 {
  z-index: 690 !important;
}

.z-index-700 {
  z-index: 700 !important;
}

.z-index-710 {
  z-index: 710 !important;
}

.z-index-720 {
  z-index: 720 !important;
}

.z-index-730 {
  z-index: 730 !important;
}

.z-index-740 {
  z-index: 740 !important;
}

.z-index-750 {
  z-index: 750 !important;
}

.z-index-760 {
  z-index: 760 !important;
}

.z-index-770 {
  z-index: 770 !important;
}

.z-index-780 {
  z-index: 780 !important;
}

.z-index-790 {
  z-index: 790 !important;
}

.z-index-800 {
  z-index: 800 !important;
}

.z-index-810 {
  z-index: 810 !important;
}

.z-index-820 {
  z-index: 820 !important;
}

.z-index-830 {
  z-index: 830 !important;
}

.z-index-840 {
  z-index: 840 !important;
}

.z-index-850 {
  z-index: 850 !important;
}

.z-index-860 {
  z-index: 860 !important;
}

.z-index-870 {
  z-index: 870 !important;
}

.z-index-880 {
  z-index: 880 !important;
}

.z-index-890 {
  z-index: 890 !important;
}

.z-index-900 {
  z-index: 900 !important;
}

.z-index-910 {
  z-index: 910 !important;
}

.z-index-920 {
  z-index: 920 !important;
}

.z-index-930 {
  z-index: 930 !important;
}

.z-index-940 {
  z-index: 940 !important;
}

.z-index-950 {
  z-index: 950 !important;
}

.z-index-960 {
  z-index: 960 !important;
}

.z-index-970 {
  z-index: 970 !important;
}

.z-index-980 {
  z-index: 980 !important;
}

.z-index-990 {
  z-index: 990 !important;
}

.z-index-1000 {
  z-index: 1000 !important;
}

.p-px-5 {
  padding: 5px;
}

.pl-px-5 {
  padding-left: 5px;
}

.pr-px-5 {
  padding-right: 5px;
}

.pb-px-5 {
  padding-bottom: 5px;
}

.pt-px-5 {
  padding-top: 5px;
}

.px-px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-px-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.m-px-5 {
  margin: 5px;
}

.ml-px-5 {
  margin-left: 5px;
}

.mr-px-5 {
  margin-right: 5px;
}

.mb-px-5 {
  margin-bottom: 5px;
}

.mt-px-5 {
  margin-top: 5px;
}

.mx-px-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.my-px-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.p-px-10 {
  padding: 10px;
}

.pl-px-10 {
  padding-left: 10px;
}

.pr-px-10 {
  padding-right: 10px;
}

.pb-px-10 {
  padding-bottom: 10px;
}

.pt-px-10 {
  padding-top: 10px;
}

.px-px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-px-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.m-px-10 {
  margin: 10px;
}

.ml-px-10 {
  margin-left: 10px;
}

.mr-px-10 {
  margin-right: 10px;
}

.mb-px-10 {
  margin-bottom: 10px;
}

.mt-px-10 {
  margin-top: 10px;
}

.mx-px-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-px-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.p-px-15 {
  padding: 15px;
}

.pl-px-15 {
  padding-left: 15px;
}

.pr-px-15 {
  padding-right: 15px;
}

.pb-px-15 {
  padding-bottom: 15px;
}

.pt-px-15 {
  padding-top: 15px;
}

.px-px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-px-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.m-px-15 {
  margin: 15px;
}

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

.mr-px-15 {
  margin-right: 15px;
}

.mb-px-15 {
  margin-bottom: 15px;
}

.mt-px-15 {
  margin-top: 15px;
}

.mx-px-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.my-px-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.p-px-20 {
  padding: 20px;
}

.pl-px-20 {
  padding-left: 20px;
}

.pr-px-20 {
  padding-right: 20px;
}

.pb-px-20 {
  padding-bottom: 20px;
}

.pt-px-20 {
  padding-top: 20px;
}

.px-px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-px-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.m-px-20 {
  margin: 20px;
}

.ml-px-20 {
  margin-left: 20px;
}

.mr-px-20 {
  margin-right: 20px;
}

.mb-px-20 {
  margin-bottom: 20px;
}

.mt-px-20 {
  margin-top: 20px;
}

.mx-px-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-px-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.p-px-25 {
  padding: 25px;
}

.pl-px-25 {
  padding-left: 25px;
}

.pr-px-25 {
  padding-right: 25px;
}

.pb-px-25 {
  padding-bottom: 25px;
}

.pt-px-25 {
  padding-top: 25px;
}

.px-px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-px-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.m-px-25 {
  margin: 25px;
}

.ml-px-25 {
  margin-left: 25px;
}

.mr-px-25 {
  margin-right: 25px;
}

.mb-px-25 {
  margin-bottom: 25px;
}

.mt-px-25 {
  margin-top: 25px;
}

.mx-px-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.my-px-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.p-px-30 {
  padding: 30px;
}

.pl-px-30 {
  padding-left: 30px;
}

.pr-px-30 {
  padding-right: 30px;
}

.pb-px-30 {
  padding-bottom: 30px;
}

.pt-px-30 {
  padding-top: 30px;
}

.px-px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-px-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.m-px-30 {
  margin: 30px;
}

.ml-px-30 {
  margin-left: 30px;
}

.mr-px-30 {
  margin-right: 30px;
}

.mb-px-30 {
  margin-bottom: 30px;
}

.mt-px-30 {
  margin-top: 30px;
}

.mx-px-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-px-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-px-35 {
  padding: 35px;
}

.pl-px-35 {
  padding-left: 35px;
}

.pr-px-35 {
  padding-right: 35px;
}

.pb-px-35 {
  padding-bottom: 35px;
}

.pt-px-35 {
  padding-top: 35px;
}

.px-px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.py-px-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.m-px-35 {
  margin: 35px;
}

.ml-px-35 {
  margin-left: 35px;
}

.mr-px-35 {
  margin-right: 35px;
}

.mb-px-35 {
  margin-bottom: 35px;
}

.mt-px-35 {
  margin-top: 35px;
}

.mx-px-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.my-px-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.p-px-40 {
  padding: 40px;
}

.pl-px-40 {
  padding-left: 40px;
}

.pr-px-40 {
  padding-right: 40px;
}

.pb-px-40 {
  padding-bottom: 40px;
}

.pt-px-40 {
  padding-top: 40px;
}

.px-px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

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

.m-px-40 {
  margin: 40px;
}

.ml-px-40 {
  margin-left: 40px;
}

.mr-px-40 {
  margin-right: 40px;
}

.mb-px-40 {
  margin-bottom: 40px;
}

.mt-px-40 {
  margin-top: 40px;
}

.mx-px-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.my-px-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.p-px-45 {
  padding: 45px;
}

.pl-px-45 {
  padding-left: 45px;
}

.pr-px-45 {
  padding-right: 45px;
}

.pb-px-45 {
  padding-bottom: 45px;
}

.pt-px-45 {
  padding-top: 45px;
}

.px-px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.py-px-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.m-px-45 {
  margin: 45px;
}

.ml-px-45 {
  margin-left: 45px;
}

.mr-px-45 {
  margin-right: 45px;
}

.mb-px-45 {
  margin-bottom: 45px;
}

.mt-px-45 {
  margin-top: 45px;
}

.mx-px-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.my-px-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.p-px-50 {
  padding: 50px;
}

.pl-px-50 {
  padding-left: 50px;
}

.pr-px-50 {
  padding-right: 50px;
}

.pb-px-50 {
  padding-bottom: 50px;
}

.pt-px-50 {
  padding-top: 50px;
}

.px-px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-px-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.m-px-50 {
  margin: 50px;
}

.ml-px-50 {
  margin-left: 50px;
}

.mr-px-50 {
  margin-right: 50px;
}

.mb-px-50 {
  margin-bottom: 50px;
}

.mt-px-50 {
  margin-top: 50px;
}

.mx-px-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.my-px-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.p-px-55 {
  padding: 55px;
}

.pl-px-55 {
  padding-left: 55px;
}

.pr-px-55 {
  padding-right: 55px;
}

.pb-px-55 {
  padding-bottom: 55px;
}

.pt-px-55 {
  padding-top: 55px;
}

.px-px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.py-px-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.m-px-55 {
  margin: 55px;
}

.ml-px-55 {
  margin-left: 55px;
}

.mr-px-55 {
  margin-right: 55px;
}

.mb-px-55 {
  margin-bottom: 55px;
}

.mt-px-55 {
  margin-top: 55px;
}

.mx-px-55 {
  margin-left: 55px;
  margin-right: 55px;
}

.my-px-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

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

.pl-px-60 {
  padding-left: 60px;
}

.pr-px-60 {
  padding-right: 60px;
}

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

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

.px-px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

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

.m-px-60 {
  margin: 60px;
}

.ml-px-60 {
  margin-left: 60px;
}

.mr-px-60 {
  margin-right: 60px;
}

.mb-px-60 {
  margin-bottom: 60px;
}

.mt-px-60 {
  margin-top: 60px;
}

.mx-px-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.my-px-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.p-px-65 {
  padding: 65px;
}

.pl-px-65 {
  padding-left: 65px;
}

.pr-px-65 {
  padding-right: 65px;
}

.pb-px-65 {
  padding-bottom: 65px;
}

.pt-px-65 {
  padding-top: 65px;
}

.px-px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.py-px-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.m-px-65 {
  margin: 65px;
}

.ml-px-65 {
  margin-left: 65px;
}

.mr-px-65 {
  margin-right: 65px;
}

.mb-px-65 {
  margin-bottom: 65px;
}

.mt-px-65 {
  margin-top: 65px;
}

.mx-px-65 {
  margin-left: 65px;
  margin-right: 65px;
}

.my-px-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

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

.pl-px-70 {
  padding-left: 70px;
}

.pr-px-70 {
  padding-right: 70px;
}

.pb-px-70 {
  padding-bottom: 70px;
}

.pt-px-70 {
  padding-top: 70px;
}

.px-px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.py-px-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.m-px-70 {
  margin: 70px;
}

.ml-px-70 {
  margin-left: 70px;
}

.mr-px-70 {
  margin-right: 70px;
}

.mb-px-70 {
  margin-bottom: 70px;
}

.mt-px-70 {
  margin-top: 70px;
}

.mx-px-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.my-px-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.p-px-75 {
  padding: 75px;
}

.pl-px-75 {
  padding-left: 75px;
}

.pr-px-75 {
  padding-right: 75px;
}

.pb-px-75 {
  padding-bottom: 75px;
}

.pt-px-75 {
  padding-top: 75px;
}

.px-px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.py-px-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.m-px-75 {
  margin: 75px;
}

.ml-px-75 {
  margin-left: 75px;
}

.mr-px-75 {
  margin-right: 75px;
}

.mb-px-75 {
  margin-bottom: 75px;
}

.mt-px-75 {
  margin-top: 75px;
}

.mx-px-75 {
  margin-left: 75px;
  margin-right: 75px;
}

.my-px-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.p-px-80 {
  padding: 80px;
}

.pl-px-80 {
  padding-left: 80px;
}

.pr-px-80 {
  padding-right: 80px;
}

.pb-px-80 {
  padding-bottom: 80px;
}

.pt-px-80 {
  padding-top: 80px;
}

.px-px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.py-px-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.m-px-80 {
  margin: 80px;
}

.ml-px-80 {
  margin-left: 80px;
}

.mr-px-80 {
  margin-right: 80px;
}

.mb-px-80 {
  margin-bottom: 80px;
}

.mt-px-80 {
  margin-top: 80px;
}

.mx-px-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.my-px-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.p-px-85 {
  padding: 85px;
}

.pl-px-85 {
  padding-left: 85px;
}

.pr-px-85 {
  padding-right: 85px;
}

.pb-px-85 {
  padding-bottom: 85px;
}

.pt-px-85 {
  padding-top: 85px;
}

.px-px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.py-px-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.m-px-85 {
  margin: 85px;
}

.ml-px-85 {
  margin-left: 85px;
}

.mr-px-85 {
  margin-right: 85px;
}

.mb-px-85 {
  margin-bottom: 85px;
}

.mt-px-85 {
  margin-top: 85px;
}

.mx-px-85 {
  margin-left: 85px;
  margin-right: 85px;
}

.my-px-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.p-px-90 {
  padding: 90px;
}

.pl-px-90 {
  padding-left: 90px;
}

.pr-px-90 {
  padding-right: 90px;
}

.pb-px-90 {
  padding-bottom: 90px;
}

.pt-px-90 {
  padding-top: 90px;
}

.px-px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.py-px-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.m-px-90 {
  margin: 90px;
}

.ml-px-90 {
  margin-left: 90px;
}

.mr-px-90 {
  margin-right: 90px;
}

.mb-px-90 {
  margin-bottom: 90px;
}

.mt-px-90 {
  margin-top: 90px;
}

.mx-px-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.my-px-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.p-px-95 {
  padding: 95px;
}

.pl-px-95 {
  padding-left: 95px;
}

.pr-px-95 {
  padding-right: 95px;
}

.pb-px-95 {
  padding-bottom: 95px;
}

.pt-px-95 {
  padding-top: 95px;
}

.px-px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.py-px-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.m-px-95 {
  margin: 95px;
}

.ml-px-95 {
  margin-left: 95px;
}

.mr-px-95 {
  margin-right: 95px;
}

.mb-px-95 {
  margin-bottom: 95px;
}

.mt-px-95 {
  margin-top: 95px;
}

.mx-px-95 {
  margin-left: 95px;
  margin-right: 95px;
}

.my-px-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.p-px-100 {
  padding: 100px;
}

.pl-px-100 {
  padding-left: 100px;
}

.pr-px-100 {
  padding-right: 100px;
}

.pb-px-100 {
  padding-bottom: 100px;
}

.pt-px-100 {
  padding-top: 100px;
}

.px-px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-px-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.m-px-100 {
  margin: 100px;
}

.ml-px-100 {
  margin-left: 100px;
}

.mr-px-100 {
  margin-right: 100px;
}

.mb-px-100 {
  margin-bottom: 100px;
}

.mt-px-100 {
  margin-top: 100px;
}

.mx-px-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-px-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.p-px-105 {
  padding: 105px;
}

.pl-px-105 {
  padding-left: 105px;
}

.pr-px-105 {
  padding-right: 105px;
}

.pb-px-105 {
  padding-bottom: 105px;
}

.pt-px-105 {
  padding-top: 105px;
}

.px-px-105 {
  padding-left: 105px;
  padding-right: 105px;
}

.py-px-105 {
  padding-top: 105px;
  padding-bottom: 105px;
}

.m-px-105 {
  margin: 105px;
}

.ml-px-105 {
  margin-left: 105px;
}

.mr-px-105 {
  margin-right: 105px;
}

.mb-px-105 {
  margin-bottom: 105px;
}

.mt-px-105 {
  margin-top: 105px;
}

.mx-px-105 {
  margin-left: 105px;
  margin-right: 105px;
}

.my-px-105 {
  margin-top: 105px;
  margin-bottom: 105px;
}

.p-px-110 {
  padding: 110px;
}

.pl-px-110 {
  padding-left: 110px;
}

.pr-px-110 {
  padding-right: 110px;
}

.pb-px-110 {
  padding-bottom: 110px;
}

.pt-px-110 {
  padding-top: 110px;
}

.px-px-110 {
  padding-left: 110px;
  padding-right: 110px;
}

.py-px-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.m-px-110 {
  margin: 110px;
}

.ml-px-110 {
  margin-left: 110px;
}

.mr-px-110 {
  margin-right: 110px;
}

.mb-px-110 {
  margin-bottom: 110px;
}

.mt-px-110 {
  margin-top: 110px;
}

.mx-px-110 {
  margin-left: 110px;
  margin-right: 110px;
}

.my-px-110 {
  margin-top: 110px;
  margin-bottom: 110px;
}

.p-px-115 {
  padding: 115px;
}

.pl-px-115 {
  padding-left: 115px;
}

.pr-px-115 {
  padding-right: 115px;
}

.pb-px-115 {
  padding-bottom: 115px;
}

.pt-px-115 {
  padding-top: 115px;
}

.px-px-115 {
  padding-left: 115px;
  padding-right: 115px;
}

.py-px-115 {
  padding-top: 115px;
  padding-bottom: 115px;
}

.m-px-115 {
  margin: 115px;
}

.ml-px-115 {
  margin-left: 115px;
}

.mr-px-115 {
  margin-right: 115px;
}

.mb-px-115 {
  margin-bottom: 115px;
}

.mt-px-115 {
  margin-top: 115px;
}

.mx-px-115 {
  margin-left: 115px;
  margin-right: 115px;
}

.my-px-115 {
  margin-top: 115px;
  margin-bottom: 115px;
}

.p-px-120 {
  padding: 120px;
}

.pl-px-120 {
  padding-left: 120px;
}

.pr-px-120 {
  padding-right: 120px;
}

.pb-px-120 {
  padding-bottom: 120px;
}

.pt-px-120 {
  padding-top: 120px;
}

.px-px-120 {
  padding-left: 120px;
  padding-right: 120px;
}

.py-px-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.m-px-120 {
  margin: 120px;
}

.ml-px-120 {
  margin-left: 120px;
}

.mr-px-120 {
  margin-right: 120px;
}

.mb-px-120 {
  margin-bottom: 120px;
}

.mt-px-120 {
  margin-top: 120px;
}

.mx-px-120 {
  margin-left: 120px;
  margin-right: 120px;
}

.my-px-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.p-px-125 {
  padding: 125px;
}

.pl-px-125 {
  padding-left: 125px;
}

.pr-px-125 {
  padding-right: 125px;
}

.pb-px-125 {
  padding-bottom: 125px;
}

.pt-px-125 {
  padding-top: 125px;
}

.px-px-125 {
  padding-left: 125px;
  padding-right: 125px;
}

.py-px-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

.m-px-125 {
  margin: 125px;
}

.ml-px-125 {
  margin-left: 125px;
}

.mr-px-125 {
  margin-right: 125px;
}

.mb-px-125 {
  margin-bottom: 125px;
}

.mt-px-125 {
  margin-top: 125px;
}

.mx-px-125 {
  margin-left: 125px;
  margin-right: 125px;
}

.my-px-125 {
  margin-top: 125px;
  margin-bottom: 125px;
}

.p-px-130 {
  padding: 130px;
}

.pl-px-130 {
  padding-left: 130px;
}

.pr-px-130 {
  padding-right: 130px;
}

.pb-px-130 {
  padding-bottom: 130px;
}

.pt-px-130 {
  padding-top: 130px;
}

.px-px-130 {
  padding-left: 130px;
  padding-right: 130px;
}

.py-px-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.m-px-130 {
  margin: 130px;
}

.ml-px-130 {
  margin-left: 130px;
}

.mr-px-130 {
  margin-right: 130px;
}

.mb-px-130 {
  margin-bottom: 130px;
}

.mt-px-130 {
  margin-top: 130px;
}

.mx-px-130 {
  margin-left: 130px;
  margin-right: 130px;
}

.my-px-130 {
  margin-top: 130px;
  margin-bottom: 130px;
}

.p-px-135 {
  padding: 135px;
}

.pl-px-135 {
  padding-left: 135px;
}

.pr-px-135 {
  padding-right: 135px;
}

.pb-px-135 {
  padding-bottom: 135px;
}

.pt-px-135 {
  padding-top: 135px;
}

.px-px-135 {
  padding-left: 135px;
  padding-right: 135px;
}

.py-px-135 {
  padding-top: 135px;
  padding-bottom: 135px;
}

.m-px-135 {
  margin: 135px;
}

.ml-px-135 {
  margin-left: 135px;
}

.mr-px-135 {
  margin-right: 135px;
}

.mb-px-135 {
  margin-bottom: 135px;
}

.mt-px-135 {
  margin-top: 135px;
}

.mx-px-135 {
  margin-left: 135px;
  margin-right: 135px;
}

.my-px-135 {
  margin-top: 135px;
  margin-bottom: 135px;
}

.p-px-140 {
  padding: 140px;
}

.pl-px-140 {
  padding-left: 140px;
}

.pr-px-140 {
  padding-right: 140px;
}

.pb-px-140 {
  padding-bottom: 140px;
}

.pt-px-140 {
  padding-top: 140px;
}

.px-px-140 {
  padding-left: 140px;
  padding-right: 140px;
}

.py-px-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.m-px-140 {
  margin: 140px;
}

.ml-px-140 {
  margin-left: 140px;
}

.mr-px-140 {
  margin-right: 140px;
}

.mb-px-140 {
  margin-bottom: 140px;
}

.mt-px-140 {
  margin-top: 140px;
}

.mx-px-140 {
  margin-left: 140px;
  margin-right: 140px;
}

.my-px-140 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.p-px-145 {
  padding: 145px;
}

.pl-px-145 {
  padding-left: 145px;
}

.pr-px-145 {
  padding-right: 145px;
}

.pb-px-145 {
  padding-bottom: 145px;
}

.pt-px-145 {
  padding-top: 145px;
}

.px-px-145 {
  padding-left: 145px;
  padding-right: 145px;
}

.py-px-145 {
  padding-top: 145px;
  padding-bottom: 145px;
}

.m-px-145 {
  margin: 145px;
}

.ml-px-145 {
  margin-left: 145px;
}

.mr-px-145 {
  margin-right: 145px;
}

.mb-px-145 {
  margin-bottom: 145px;
}

.mt-px-145 {
  margin-top: 145px;
}

.mx-px-145 {
  margin-left: 145px;
  margin-right: 145px;
}

.my-px-145 {
  margin-top: 145px;
  margin-bottom: 145px;
}

.p-px-150 {
  padding: 150px;
}

.pl-px-150 {
  padding-left: 150px;
}

.pr-px-150 {
  padding-right: 150px;
}

.pb-px-150 {
  padding-bottom: 150px;
}

.pt-px-150 {
  padding-top: 150px;
}

.px-px-150 {
  padding-left: 150px;
  padding-right: 150px;
}

.py-px-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.m-px-150 {
  margin: 150px;
}

.ml-px-150 {
  margin-left: 150px;
}

.mr-px-150 {
  margin-right: 150px;
}

.mb-px-150 {
  margin-bottom: 150px;
}

.mt-px-150 {
  margin-top: 150px;
}

.mx-px-150 {
  margin-left: 150px;
  margin-right: 150px;
}

.my-px-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}

.p-px-155 {
  padding: 155px;
}

.pl-px-155 {
  padding-left: 155px;
}

.pr-px-155 {
  padding-right: 155px;
}

.pb-px-155 {
  padding-bottom: 155px;
}

.pt-px-155 {
  padding-top: 155px;
}

.px-px-155 {
  padding-left: 155px;
  padding-right: 155px;
}

.py-px-155 {
  padding-top: 155px;
  padding-bottom: 155px;
}

.m-px-155 {
  margin: 155px;
}

.ml-px-155 {
  margin-left: 155px;
}

.mr-px-155 {
  margin-right: 155px;
}

.mb-px-155 {
  margin-bottom: 155px;
}

.mt-px-155 {
  margin-top: 155px;
}

.mx-px-155 {
  margin-left: 155px;
  margin-right: 155px;
}

.my-px-155 {
  margin-top: 155px;
  margin-bottom: 155px;
}

.p-px-160 {
  padding: 160px;
}

.pl-px-160 {
  padding-left: 160px;
}

.pr-px-160 {
  padding-right: 160px;
}

.pb-px-160 {
  padding-bottom: 160px;
}

.pt-px-160 {
  padding-top: 160px;
}

.px-px-160 {
  padding-left: 160px;
  padding-right: 160px;
}

.py-px-160 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.m-px-160 {
  margin: 160px;
}

.ml-px-160 {
  margin-left: 160px;
}

.mr-px-160 {
  margin-right: 160px;
}

.mb-px-160 {
  margin-bottom: 160px;
}

.mt-px-160 {
  margin-top: 160px;
}

.mx-px-160 {
  margin-left: 160px;
  margin-right: 160px;
}

.my-px-160 {
  margin-top: 160px;
  margin-bottom: 160px;
}

.p-px-165 {
  padding: 165px;
}

.pl-px-165 {
  padding-left: 165px;
}

.pr-px-165 {
  padding-right: 165px;
}

.pb-px-165 {
  padding-bottom: 165px;
}

.pt-px-165 {
  padding-top: 165px;
}

.px-px-165 {
  padding-left: 165px;
  padding-right: 165px;
}

.py-px-165 {
  padding-top: 165px;
  padding-bottom: 165px;
}

.m-px-165 {
  margin: 165px;
}

.ml-px-165 {
  margin-left: 165px;
}

.mr-px-165 {
  margin-right: 165px;
}

.mb-px-165 {
  margin-bottom: 165px;
}

.mt-px-165 {
  margin-top: 165px;
}

.mx-px-165 {
  margin-left: 165px;
  margin-right: 165px;
}

.my-px-165 {
  margin-top: 165px;
  margin-bottom: 165px;
}

.p-px-170 {
  padding: 170px;
}

.pl-px-170 {
  padding-left: 170px;
}

.pr-px-170 {
  padding-right: 170px;
}

.pb-px-170 {
  padding-bottom: 170px;
}

.pt-px-170 {
  padding-top: 170px;
}

.px-px-170 {
  padding-left: 170px;
  padding-right: 170px;
}

.py-px-170 {
  padding-top: 170px;
  padding-bottom: 170px;
}

.m-px-170 {
  margin: 170px;
}

.ml-px-170 {
  margin-left: 170px;
}

.mr-px-170 {
  margin-right: 170px;
}

.mb-px-170 {
  margin-bottom: 170px;
}

.mt-px-170 {
  margin-top: 170px;
}

.mx-px-170 {
  margin-left: 170px;
  margin-right: 170px;
}

.my-px-170 {
  margin-top: 170px;
  margin-bottom: 170px;
}

.p-px-175 {
  padding: 175px;
}

.pl-px-175 {
  padding-left: 175px;
}

.pr-px-175 {
  padding-right: 175px;
}

.pb-px-175 {
  padding-bottom: 175px;
}

.pt-px-175 {
  padding-top: 175px;
}

.px-px-175 {
  padding-left: 175px;
  padding-right: 175px;
}

.py-px-175 {
  padding-top: 175px;
  padding-bottom: 175px;
}

.m-px-175 {
  margin: 175px;
}

.ml-px-175 {
  margin-left: 175px;
}

.mr-px-175 {
  margin-right: 175px;
}

.mb-px-175 {
  margin-bottom: 175px;
}

.mt-px-175 {
  margin-top: 175px;
}

.mx-px-175 {
  margin-left: 175px;
  margin-right: 175px;
}

.my-px-175 {
  margin-top: 175px;
  margin-bottom: 175px;
}

.p-px-180 {
  padding: 180px;
}

.pl-px-180 {
  padding-left: 180px;
}

.pr-px-180 {
  padding-right: 180px;
}

.pb-px-180 {
  padding-bottom: 180px;
}

.pt-px-180 {
  padding-top: 180px;
}

.px-px-180 {
  padding-left: 180px;
  padding-right: 180px;
}

.py-px-180 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.m-px-180 {
  margin: 180px;
}

.ml-px-180 {
  margin-left: 180px;
}

.mr-px-180 {
  margin-right: 180px;
}

.mb-px-180 {
  margin-bottom: 180px;
}

.mt-px-180 {
  margin-top: 180px;
}

.mx-px-180 {
  margin-left: 180px;
  margin-right: 180px;
}

.my-px-180 {
  margin-top: 180px;
  margin-bottom: 180px;
}

.p-px-185 {
  padding: 185px;
}

.pl-px-185 {
  padding-left: 185px;
}

.pr-px-185 {
  padding-right: 185px;
}

.pb-px-185 {
  padding-bottom: 185px;
}

.pt-px-185 {
  padding-top: 185px;
}

.px-px-185 {
  padding-left: 185px;
  padding-right: 185px;
}

.py-px-185 {
  padding-top: 185px;
  padding-bottom: 185px;
}

.m-px-185 {
  margin: 185px;
}

.ml-px-185 {
  margin-left: 185px;
}

.mr-px-185 {
  margin-right: 185px;
}

.mb-px-185 {
  margin-bottom: 185px;
}

.mt-px-185 {
  margin-top: 185px;
}

.mx-px-185 {
  margin-left: 185px;
  margin-right: 185px;
}

.my-px-185 {
  margin-top: 185px;
  margin-bottom: 185px;
}

.p-px-190 {
  padding: 190px;
}

.pl-px-190 {
  padding-left: 190px;
}

.pr-px-190 {
  padding-right: 190px;
}

.pb-px-190 {
  padding-bottom: 190px;
}

.pt-px-190 {
  padding-top: 190px;
}

.px-px-190 {
  padding-left: 190px;
  padding-right: 190px;
}

.py-px-190 {
  padding-top: 190px;
  padding-bottom: 190px;
}

.m-px-190 {
  margin: 190px;
}

.ml-px-190 {
  margin-left: 190px;
}

.mr-px-190 {
  margin-right: 190px;
}

.mb-px-190 {
  margin-bottom: 190px;
}

.mt-px-190 {
  margin-top: 190px;
}

.mx-px-190 {
  margin-left: 190px;
  margin-right: 190px;
}

.my-px-190 {
  margin-top: 190px;
  margin-bottom: 190px;
}

.p-px-195 {
  padding: 195px;
}

.pl-px-195 {
  padding-left: 195px;
}

.pr-px-195 {
  padding-right: 195px;
}

.pb-px-195 {
  padding-bottom: 195px;
}

.pt-px-195 {
  padding-top: 195px;
}

.px-px-195 {
  padding-left: 195px;
  padding-right: 195px;
}

.py-px-195 {
  padding-top: 195px;
  padding-bottom: 195px;
}

.m-px-195 {
  margin: 195px;
}

.ml-px-195 {
  margin-left: 195px;
}

.mr-px-195 {
  margin-right: 195px;
}

.mb-px-195 {
  margin-bottom: 195px;
}

.mt-px-195 {
  margin-top: 195px;
}

.mx-px-195 {
  margin-left: 195px;
  margin-right: 195px;
}

.my-px-195 {
  margin-top: 195px;
  margin-bottom: 195px;
}

.p-px-200 {
  padding: 200px;
}

.pl-px-200 {
  padding-left: 200px;
}

.pr-px-200 {
  padding-right: 200px;
}

.pb-px-200 {
  padding-bottom: 200px;
}

.pt-px-200 {
  padding-top: 200px;
}

.px-px-200 {
  padding-left: 200px;
  padding-right: 200px;
}

.py-px-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.m-px-200 {
  margin: 200px;
}

.ml-px-200 {
  margin-left: 200px;
}

.mr-px-200 {
  margin-right: 200px;
}

.mb-px-200 {
  margin-bottom: 200px;
}

.mt-px-200 {
  margin-top: 200px;
}

.mx-px-200 {
  margin-left: 200px;
  margin-right: 200px;
}

.my-px-200 {
  margin-top: 200px;
  margin-bottom: 200px;
}

@media only screen and (min-width: 320px) {
  .p-px-xxs-5 {
    padding: 5px !important;
  }
  .pl-px-xxs-5 {
    padding-left: 5px !important;
  }
  .pr-px-xxs-5 {
    padding-right: 5px !important;
  }
  .pb-px-xxs-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-xxs-5 {
    padding-top: 5px !important;
  }
  .px-px-xxs-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-xxs-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-xxs-5 {
    margin: 5px !important;
  }
  .ml-px-xxs-5 {
    margin-left: 5px !important;
  }
  .mr-px-xxs-5 {
    margin-right: 5px !important;
  }
  .mb-px-xxs-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-xxs-5 {
    margin-top: 5px !important;
  }
  .mx-px-xxs-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-xxs-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-xxs-10 {
    padding: 10px !important;
  }
  .pl-px-xxs-10 {
    padding-left: 10px !important;
  }
  .pr-px-xxs-10 {
    padding-right: 10px !important;
  }
  .pb-px-xxs-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-xxs-10 {
    padding-top: 10px !important;
  }
  .px-px-xxs-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-xxs-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-xxs-10 {
    margin: 10px !important;
  }
  .ml-px-xxs-10 {
    margin-left: 10px !important;
  }
  .mr-px-xxs-10 {
    margin-right: 10px !important;
  }
  .mb-px-xxs-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-xxs-10 {
    margin-top: 10px !important;
  }
  .mx-px-xxs-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-xxs-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-xxs-15 {
    padding: 15px !important;
  }
  .pl-px-xxs-15 {
    padding-left: 15px !important;
  }
  .pr-px-xxs-15 {
    padding-right: 15px !important;
  }
  .pb-px-xxs-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-xxs-15 {
    padding-top: 15px !important;
  }
  .px-px-xxs-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-xxs-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-xxs-15 {
    margin: 15px !important;
  }
  .ml-px-xxs-15 {
    margin-left: 15px !important;
  }
  .mr-px-xxs-15 {
    margin-right: 15px !important;
  }
  .mb-px-xxs-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-xxs-15 {
    margin-top: 15px !important;
  }
  .mx-px-xxs-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-xxs-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-xxs-20 {
    padding: 20px !important;
  }
  .pl-px-xxs-20 {
    padding-left: 20px !important;
  }
  .pr-px-xxs-20 {
    padding-right: 20px !important;
  }
  .pb-px-xxs-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-xxs-20 {
    padding-top: 20px !important;
  }
  .px-px-xxs-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-xxs-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-xxs-20 {
    margin: 20px !important;
  }
  .ml-px-xxs-20 {
    margin-left: 20px !important;
  }
  .mr-px-xxs-20 {
    margin-right: 20px !important;
  }
  .mb-px-xxs-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-xxs-20 {
    margin-top: 20px !important;
  }
  .mx-px-xxs-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-xxs-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-xxs-25 {
    padding: 25px !important;
  }
  .pl-px-xxs-25 {
    padding-left: 25px !important;
  }
  .pr-px-xxs-25 {
    padding-right: 25px !important;
  }
  .pb-px-xxs-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-xxs-25 {
    padding-top: 25px !important;
  }
  .px-px-xxs-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-xxs-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-xxs-25 {
    margin: 25px !important;
  }
  .ml-px-xxs-25 {
    margin-left: 25px !important;
  }
  .mr-px-xxs-25 {
    margin-right: 25px !important;
  }
  .mb-px-xxs-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-xxs-25 {
    margin-top: 25px !important;
  }
  .mx-px-xxs-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-xxs-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-xxs-30 {
    padding: 30px !important;
  }
  .pl-px-xxs-30 {
    padding-left: 30px !important;
  }
  .pr-px-xxs-30 {
    padding-right: 30px !important;
  }
  .pb-px-xxs-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-xxs-30 {
    padding-top: 30px !important;
  }
  .px-px-xxs-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-xxs-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-xxs-30 {
    margin: 30px !important;
  }
  .ml-px-xxs-30 {
    margin-left: 30px !important;
  }
  .mr-px-xxs-30 {
    margin-right: 30px !important;
  }
  .mb-px-xxs-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-xxs-30 {
    margin-top: 30px !important;
  }
  .mx-px-xxs-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-xxs-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-xxs-35 {
    padding: 35px !important;
  }
  .pl-px-xxs-35 {
    padding-left: 35px !important;
  }
  .pr-px-xxs-35 {
    padding-right: 35px !important;
  }
  .pb-px-xxs-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-xxs-35 {
    padding-top: 35px !important;
  }
  .px-px-xxs-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-xxs-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-xxs-35 {
    margin: 35px !important;
  }
  .ml-px-xxs-35 {
    margin-left: 35px !important;
  }
  .mr-px-xxs-35 {
    margin-right: 35px !important;
  }
  .mb-px-xxs-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-xxs-35 {
    margin-top: 35px !important;
  }
  .mx-px-xxs-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-xxs-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-xxs-40 {
    padding: 40px !important;
  }
  .pl-px-xxs-40 {
    padding-left: 40px !important;
  }
  .pr-px-xxs-40 {
    padding-right: 40px !important;
  }
  .pb-px-xxs-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-xxs-40 {
    padding-top: 40px !important;
  }
  .px-px-xxs-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-xxs-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-xxs-40 {
    margin: 40px !important;
  }
  .ml-px-xxs-40 {
    margin-left: 40px !important;
  }
  .mr-px-xxs-40 {
    margin-right: 40px !important;
  }
  .mb-px-xxs-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-xxs-40 {
    margin-top: 40px !important;
  }
  .mx-px-xxs-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-xxs-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-xxs-45 {
    padding: 45px !important;
  }
  .pl-px-xxs-45 {
    padding-left: 45px !important;
  }
  .pr-px-xxs-45 {
    padding-right: 45px !important;
  }
  .pb-px-xxs-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-xxs-45 {
    padding-top: 45px !important;
  }
  .px-px-xxs-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-xxs-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-xxs-45 {
    margin: 45px !important;
  }
  .ml-px-xxs-45 {
    margin-left: 45px !important;
  }
  .mr-px-xxs-45 {
    margin-right: 45px !important;
  }
  .mb-px-xxs-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-xxs-45 {
    margin-top: 45px !important;
  }
  .mx-px-xxs-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-xxs-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-xxs-50 {
    padding: 50px !important;
  }
  .pl-px-xxs-50 {
    padding-left: 50px !important;
  }
  .pr-px-xxs-50 {
    padding-right: 50px !important;
  }
  .pb-px-xxs-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-xxs-50 {
    padding-top: 50px !important;
  }
  .px-px-xxs-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-xxs-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-xxs-50 {
    margin: 50px !important;
  }
  .ml-px-xxs-50 {
    margin-left: 50px !important;
  }
  .mr-px-xxs-50 {
    margin-right: 50px !important;
  }
  .mb-px-xxs-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-xxs-50 {
    margin-top: 50px !important;
  }
  .mx-px-xxs-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-xxs-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-xxs-55 {
    padding: 55px !important;
  }
  .pl-px-xxs-55 {
    padding-left: 55px !important;
  }
  .pr-px-xxs-55 {
    padding-right: 55px !important;
  }
  .pb-px-xxs-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-xxs-55 {
    padding-top: 55px !important;
  }
  .px-px-xxs-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-xxs-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-xxs-55 {
    margin: 55px !important;
  }
  .ml-px-xxs-55 {
    margin-left: 55px !important;
  }
  .mr-px-xxs-55 {
    margin-right: 55px !important;
  }
  .mb-px-xxs-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-xxs-55 {
    margin-top: 55px !important;
  }
  .mx-px-xxs-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-xxs-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-xxs-60 {
    padding: 60px !important;
  }
  .pl-px-xxs-60 {
    padding-left: 60px !important;
  }
  .pr-px-xxs-60 {
    padding-right: 60px !important;
  }
  .pb-px-xxs-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-xxs-60 {
    padding-top: 60px !important;
  }
  .px-px-xxs-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-xxs-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-xxs-60 {
    margin: 60px !important;
  }
  .ml-px-xxs-60 {
    margin-left: 60px !important;
  }
  .mr-px-xxs-60 {
    margin-right: 60px !important;
  }
  .mb-px-xxs-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-xxs-60 {
    margin-top: 60px !important;
  }
  .mx-px-xxs-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-xxs-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-xxs-65 {
    padding: 65px !important;
  }
  .pl-px-xxs-65 {
    padding-left: 65px !important;
  }
  .pr-px-xxs-65 {
    padding-right: 65px !important;
  }
  .pb-px-xxs-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-xxs-65 {
    padding-top: 65px !important;
  }
  .px-px-xxs-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-xxs-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-xxs-65 {
    margin: 65px !important;
  }
  .ml-px-xxs-65 {
    margin-left: 65px !important;
  }
  .mr-px-xxs-65 {
    margin-right: 65px !important;
  }
  .mb-px-xxs-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-xxs-65 {
    margin-top: 65px !important;
  }
  .mx-px-xxs-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-xxs-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-xxs-70 {
    padding: 70px !important;
  }
  .pl-px-xxs-70 {
    padding-left: 70px !important;
  }
  .pr-px-xxs-70 {
    padding-right: 70px !important;
  }
  .pb-px-xxs-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-xxs-70 {
    padding-top: 70px !important;
  }
  .px-px-xxs-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-xxs-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-xxs-70 {
    margin: 70px !important;
  }
  .ml-px-xxs-70 {
    margin-left: 70px !important;
  }
  .mr-px-xxs-70 {
    margin-right: 70px !important;
  }
  .mb-px-xxs-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-xxs-70 {
    margin-top: 70px !important;
  }
  .mx-px-xxs-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-xxs-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-xxs-75 {
    padding: 75px !important;
  }
  .pl-px-xxs-75 {
    padding-left: 75px !important;
  }
  .pr-px-xxs-75 {
    padding-right: 75px !important;
  }
  .pb-px-xxs-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-xxs-75 {
    padding-top: 75px !important;
  }
  .px-px-xxs-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-xxs-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-xxs-75 {
    margin: 75px !important;
  }
  .ml-px-xxs-75 {
    margin-left: 75px !important;
  }
  .mr-px-xxs-75 {
    margin-right: 75px !important;
  }
  .mb-px-xxs-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-xxs-75 {
    margin-top: 75px !important;
  }
  .mx-px-xxs-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-xxs-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-xxs-80 {
    padding: 80px !important;
  }
  .pl-px-xxs-80 {
    padding-left: 80px !important;
  }
  .pr-px-xxs-80 {
    padding-right: 80px !important;
  }
  .pb-px-xxs-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-xxs-80 {
    padding-top: 80px !important;
  }
  .px-px-xxs-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-xxs-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-xxs-80 {
    margin: 80px !important;
  }
  .ml-px-xxs-80 {
    margin-left: 80px !important;
  }
  .mr-px-xxs-80 {
    margin-right: 80px !important;
  }
  .mb-px-xxs-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-xxs-80 {
    margin-top: 80px !important;
  }
  .mx-px-xxs-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-xxs-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-xxs-85 {
    padding: 85px !important;
  }
  .pl-px-xxs-85 {
    padding-left: 85px !important;
  }
  .pr-px-xxs-85 {
    padding-right: 85px !important;
  }
  .pb-px-xxs-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-xxs-85 {
    padding-top: 85px !important;
  }
  .px-px-xxs-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-xxs-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-xxs-85 {
    margin: 85px !important;
  }
  .ml-px-xxs-85 {
    margin-left: 85px !important;
  }
  .mr-px-xxs-85 {
    margin-right: 85px !important;
  }
  .mb-px-xxs-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-xxs-85 {
    margin-top: 85px !important;
  }
  .mx-px-xxs-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-xxs-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-xxs-90 {
    padding: 90px !important;
  }
  .pl-px-xxs-90 {
    padding-left: 90px !important;
  }
  .pr-px-xxs-90 {
    padding-right: 90px !important;
  }
  .pb-px-xxs-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-xxs-90 {
    padding-top: 90px !important;
  }
  .px-px-xxs-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-xxs-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-xxs-90 {
    margin: 90px !important;
  }
  .ml-px-xxs-90 {
    margin-left: 90px !important;
  }
  .mr-px-xxs-90 {
    margin-right: 90px !important;
  }
  .mb-px-xxs-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-xxs-90 {
    margin-top: 90px !important;
  }
  .mx-px-xxs-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-xxs-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-xxs-95 {
    padding: 95px !important;
  }
  .pl-px-xxs-95 {
    padding-left: 95px !important;
  }
  .pr-px-xxs-95 {
    padding-right: 95px !important;
  }
  .pb-px-xxs-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-xxs-95 {
    padding-top: 95px !important;
  }
  .px-px-xxs-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-xxs-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-xxs-95 {
    margin: 95px !important;
  }
  .ml-px-xxs-95 {
    margin-left: 95px !important;
  }
  .mr-px-xxs-95 {
    margin-right: 95px !important;
  }
  .mb-px-xxs-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-xxs-95 {
    margin-top: 95px !important;
  }
  .mx-px-xxs-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-xxs-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-xxs-100 {
    padding: 100px !important;
  }
  .pl-px-xxs-100 {
    padding-left: 100px !important;
  }
  .pr-px-xxs-100 {
    padding-right: 100px !important;
  }
  .pb-px-xxs-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-xxs-100 {
    padding-top: 100px !important;
  }
  .px-px-xxs-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-xxs-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-xxs-100 {
    margin: 100px !important;
  }
  .ml-px-xxs-100 {
    margin-left: 100px !important;
  }
  .mr-px-xxs-100 {
    margin-right: 100px !important;
  }
  .mb-px-xxs-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-xxs-100 {
    margin-top: 100px !important;
  }
  .mx-px-xxs-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-xxs-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-xxs-105 {
    padding: 105px !important;
  }
  .pl-px-xxs-105 {
    padding-left: 105px !important;
  }
  .pr-px-xxs-105 {
    padding-right: 105px !important;
  }
  .pb-px-xxs-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-xxs-105 {
    padding-top: 105px !important;
  }
  .px-px-xxs-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-xxs-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-xxs-105 {
    margin: 105px !important;
  }
  .ml-px-xxs-105 {
    margin-left: 105px !important;
  }
  .mr-px-xxs-105 {
    margin-right: 105px !important;
  }
  .mb-px-xxs-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-xxs-105 {
    margin-top: 105px !important;
  }
  .mx-px-xxs-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-xxs-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-xxs-110 {
    padding: 110px !important;
  }
  .pl-px-xxs-110 {
    padding-left: 110px !important;
  }
  .pr-px-xxs-110 {
    padding-right: 110px !important;
  }
  .pb-px-xxs-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-xxs-110 {
    padding-top: 110px !important;
  }
  .px-px-xxs-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-xxs-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-xxs-110 {
    margin: 110px !important;
  }
  .ml-px-xxs-110 {
    margin-left: 110px !important;
  }
  .mr-px-xxs-110 {
    margin-right: 110px !important;
  }
  .mb-px-xxs-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-xxs-110 {
    margin-top: 110px !important;
  }
  .mx-px-xxs-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-xxs-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-xxs-115 {
    padding: 115px !important;
  }
  .pl-px-xxs-115 {
    padding-left: 115px !important;
  }
  .pr-px-xxs-115 {
    padding-right: 115px !important;
  }
  .pb-px-xxs-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-xxs-115 {
    padding-top: 115px !important;
  }
  .px-px-xxs-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-xxs-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-xxs-115 {
    margin: 115px !important;
  }
  .ml-px-xxs-115 {
    margin-left: 115px !important;
  }
  .mr-px-xxs-115 {
    margin-right: 115px !important;
  }
  .mb-px-xxs-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-xxs-115 {
    margin-top: 115px !important;
  }
  .mx-px-xxs-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-xxs-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-xxs-120 {
    padding: 120px !important;
  }
  .pl-px-xxs-120 {
    padding-left: 120px !important;
  }
  .pr-px-xxs-120 {
    padding-right: 120px !important;
  }
  .pb-px-xxs-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-xxs-120 {
    padding-top: 120px !important;
  }
  .px-px-xxs-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-xxs-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-xxs-120 {
    margin: 120px !important;
  }
  .ml-px-xxs-120 {
    margin-left: 120px !important;
  }
  .mr-px-xxs-120 {
    margin-right: 120px !important;
  }
  .mb-px-xxs-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-xxs-120 {
    margin-top: 120px !important;
  }
  .mx-px-xxs-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-xxs-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-xxs-125 {
    padding: 125px !important;
  }
  .pl-px-xxs-125 {
    padding-left: 125px !important;
  }
  .pr-px-xxs-125 {
    padding-right: 125px !important;
  }
  .pb-px-xxs-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-xxs-125 {
    padding-top: 125px !important;
  }
  .px-px-xxs-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-xxs-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-xxs-125 {
    margin: 125px !important;
  }
  .ml-px-xxs-125 {
    margin-left: 125px !important;
  }
  .mr-px-xxs-125 {
    margin-right: 125px !important;
  }
  .mb-px-xxs-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-xxs-125 {
    margin-top: 125px !important;
  }
  .mx-px-xxs-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-xxs-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-xxs-130 {
    padding: 130px !important;
  }
  .pl-px-xxs-130 {
    padding-left: 130px !important;
  }
  .pr-px-xxs-130 {
    padding-right: 130px !important;
  }
  .pb-px-xxs-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-xxs-130 {
    padding-top: 130px !important;
  }
  .px-px-xxs-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-xxs-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-xxs-130 {
    margin: 130px !important;
  }
  .ml-px-xxs-130 {
    margin-left: 130px !important;
  }
  .mr-px-xxs-130 {
    margin-right: 130px !important;
  }
  .mb-px-xxs-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-xxs-130 {
    margin-top: 130px !important;
  }
  .mx-px-xxs-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-xxs-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-xxs-135 {
    padding: 135px !important;
  }
  .pl-px-xxs-135 {
    padding-left: 135px !important;
  }
  .pr-px-xxs-135 {
    padding-right: 135px !important;
  }
  .pb-px-xxs-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-xxs-135 {
    padding-top: 135px !important;
  }
  .px-px-xxs-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-xxs-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-xxs-135 {
    margin: 135px !important;
  }
  .ml-px-xxs-135 {
    margin-left: 135px !important;
  }
  .mr-px-xxs-135 {
    margin-right: 135px !important;
  }
  .mb-px-xxs-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-xxs-135 {
    margin-top: 135px !important;
  }
  .mx-px-xxs-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-xxs-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-xxs-140 {
    padding: 140px !important;
  }
  .pl-px-xxs-140 {
    padding-left: 140px !important;
  }
  .pr-px-xxs-140 {
    padding-right: 140px !important;
  }
  .pb-px-xxs-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-xxs-140 {
    padding-top: 140px !important;
  }
  .px-px-xxs-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-xxs-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-xxs-140 {
    margin: 140px !important;
  }
  .ml-px-xxs-140 {
    margin-left: 140px !important;
  }
  .mr-px-xxs-140 {
    margin-right: 140px !important;
  }
  .mb-px-xxs-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-xxs-140 {
    margin-top: 140px !important;
  }
  .mx-px-xxs-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-xxs-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-xxs-145 {
    padding: 145px !important;
  }
  .pl-px-xxs-145 {
    padding-left: 145px !important;
  }
  .pr-px-xxs-145 {
    padding-right: 145px !important;
  }
  .pb-px-xxs-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-xxs-145 {
    padding-top: 145px !important;
  }
  .px-px-xxs-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-xxs-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-xxs-145 {
    margin: 145px !important;
  }
  .ml-px-xxs-145 {
    margin-left: 145px !important;
  }
  .mr-px-xxs-145 {
    margin-right: 145px !important;
  }
  .mb-px-xxs-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-xxs-145 {
    margin-top: 145px !important;
  }
  .mx-px-xxs-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-xxs-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-xxs-150 {
    padding: 150px !important;
  }
  .pl-px-xxs-150 {
    padding-left: 150px !important;
  }
  .pr-px-xxs-150 {
    padding-right: 150px !important;
  }
  .pb-px-xxs-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-xxs-150 {
    padding-top: 150px !important;
  }
  .px-px-xxs-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-xxs-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-xxs-150 {
    margin: 150px !important;
  }
  .ml-px-xxs-150 {
    margin-left: 150px !important;
  }
  .mr-px-xxs-150 {
    margin-right: 150px !important;
  }
  .mb-px-xxs-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-xxs-150 {
    margin-top: 150px !important;
  }
  .mx-px-xxs-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-xxs-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-xxs-155 {
    padding: 155px !important;
  }
  .pl-px-xxs-155 {
    padding-left: 155px !important;
  }
  .pr-px-xxs-155 {
    padding-right: 155px !important;
  }
  .pb-px-xxs-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-xxs-155 {
    padding-top: 155px !important;
  }
  .px-px-xxs-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-xxs-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-xxs-155 {
    margin: 155px !important;
  }
  .ml-px-xxs-155 {
    margin-left: 155px !important;
  }
  .mr-px-xxs-155 {
    margin-right: 155px !important;
  }
  .mb-px-xxs-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-xxs-155 {
    margin-top: 155px !important;
  }
  .mx-px-xxs-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-xxs-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-xxs-160 {
    padding: 160px !important;
  }
  .pl-px-xxs-160 {
    padding-left: 160px !important;
  }
  .pr-px-xxs-160 {
    padding-right: 160px !important;
  }
  .pb-px-xxs-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-xxs-160 {
    padding-top: 160px !important;
  }
  .px-px-xxs-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-xxs-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-xxs-160 {
    margin: 160px !important;
  }
  .ml-px-xxs-160 {
    margin-left: 160px !important;
  }
  .mr-px-xxs-160 {
    margin-right: 160px !important;
  }
  .mb-px-xxs-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-xxs-160 {
    margin-top: 160px !important;
  }
  .mx-px-xxs-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-xxs-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-xxs-165 {
    padding: 165px !important;
  }
  .pl-px-xxs-165 {
    padding-left: 165px !important;
  }
  .pr-px-xxs-165 {
    padding-right: 165px !important;
  }
  .pb-px-xxs-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-xxs-165 {
    padding-top: 165px !important;
  }
  .px-px-xxs-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-xxs-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-xxs-165 {
    margin: 165px !important;
  }
  .ml-px-xxs-165 {
    margin-left: 165px !important;
  }
  .mr-px-xxs-165 {
    margin-right: 165px !important;
  }
  .mb-px-xxs-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-xxs-165 {
    margin-top: 165px !important;
  }
  .mx-px-xxs-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-xxs-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-xxs-170 {
    padding: 170px !important;
  }
  .pl-px-xxs-170 {
    padding-left: 170px !important;
  }
  .pr-px-xxs-170 {
    padding-right: 170px !important;
  }
  .pb-px-xxs-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-xxs-170 {
    padding-top: 170px !important;
  }
  .px-px-xxs-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-xxs-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-xxs-170 {
    margin: 170px !important;
  }
  .ml-px-xxs-170 {
    margin-left: 170px !important;
  }
  .mr-px-xxs-170 {
    margin-right: 170px !important;
  }
  .mb-px-xxs-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-xxs-170 {
    margin-top: 170px !important;
  }
  .mx-px-xxs-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-xxs-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-xxs-175 {
    padding: 175px !important;
  }
  .pl-px-xxs-175 {
    padding-left: 175px !important;
  }
  .pr-px-xxs-175 {
    padding-right: 175px !important;
  }
  .pb-px-xxs-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-xxs-175 {
    padding-top: 175px !important;
  }
  .px-px-xxs-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-xxs-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-xxs-175 {
    margin: 175px !important;
  }
  .ml-px-xxs-175 {
    margin-left: 175px !important;
  }
  .mr-px-xxs-175 {
    margin-right: 175px !important;
  }
  .mb-px-xxs-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-xxs-175 {
    margin-top: 175px !important;
  }
  .mx-px-xxs-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-xxs-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-xxs-180 {
    padding: 180px !important;
  }
  .pl-px-xxs-180 {
    padding-left: 180px !important;
  }
  .pr-px-xxs-180 {
    padding-right: 180px !important;
  }
  .pb-px-xxs-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-xxs-180 {
    padding-top: 180px !important;
  }
  .px-px-xxs-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-xxs-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-xxs-180 {
    margin: 180px !important;
  }
  .ml-px-xxs-180 {
    margin-left: 180px !important;
  }
  .mr-px-xxs-180 {
    margin-right: 180px !important;
  }
  .mb-px-xxs-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-xxs-180 {
    margin-top: 180px !important;
  }
  .mx-px-xxs-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-xxs-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-xxs-185 {
    padding: 185px !important;
  }
  .pl-px-xxs-185 {
    padding-left: 185px !important;
  }
  .pr-px-xxs-185 {
    padding-right: 185px !important;
  }
  .pb-px-xxs-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-xxs-185 {
    padding-top: 185px !important;
  }
  .px-px-xxs-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-xxs-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-xxs-185 {
    margin: 185px !important;
  }
  .ml-px-xxs-185 {
    margin-left: 185px !important;
  }
  .mr-px-xxs-185 {
    margin-right: 185px !important;
  }
  .mb-px-xxs-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-xxs-185 {
    margin-top: 185px !important;
  }
  .mx-px-xxs-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-xxs-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-xxs-190 {
    padding: 190px !important;
  }
  .pl-px-xxs-190 {
    padding-left: 190px !important;
  }
  .pr-px-xxs-190 {
    padding-right: 190px !important;
  }
  .pb-px-xxs-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-xxs-190 {
    padding-top: 190px !important;
  }
  .px-px-xxs-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-xxs-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-xxs-190 {
    margin: 190px !important;
  }
  .ml-px-xxs-190 {
    margin-left: 190px !important;
  }
  .mr-px-xxs-190 {
    margin-right: 190px !important;
  }
  .mb-px-xxs-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-xxs-190 {
    margin-top: 190px !important;
  }
  .mx-px-xxs-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-xxs-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-xxs-195 {
    padding: 195px !important;
  }
  .pl-px-xxs-195 {
    padding-left: 195px !important;
  }
  .pr-px-xxs-195 {
    padding-right: 195px !important;
  }
  .pb-px-xxs-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-xxs-195 {
    padding-top: 195px !important;
  }
  .px-px-xxs-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-xxs-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-xxs-195 {
    margin: 195px !important;
  }
  .ml-px-xxs-195 {
    margin-left: 195px !important;
  }
  .mr-px-xxs-195 {
    margin-right: 195px !important;
  }
  .mb-px-xxs-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-xxs-195 {
    margin-top: 195px !important;
  }
  .mx-px-xxs-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-xxs-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-xxs-200 {
    padding: 200px !important;
  }
  .pl-px-xxs-200 {
    padding-left: 200px !important;
  }
  .pr-px-xxs-200 {
    padding-right: 200px !important;
  }
  .pb-px-xxs-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-xxs-200 {
    padding-top: 200px !important;
  }
  .px-px-xxs-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-xxs-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-xxs-200 {
    margin: 200px !important;
  }
  .ml-px-xxs-200 {
    margin-left: 200px !important;
  }
  .mr-px-xxs-200 {
    margin-right: 200px !important;
  }
  .mb-px-xxs-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-xxs-200 {
    margin-top: 200px !important;
  }
  .mx-px-xxs-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-xxs-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 414px) {
  .p-px-xs-5 {
    padding: 5px !important;
  }
  .pl-px-xs-5 {
    padding-left: 5px !important;
  }
  .pr-px-xs-5 {
    padding-right: 5px !important;
  }
  .pb-px-xs-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-xs-5 {
    padding-top: 5px !important;
  }
  .px-px-xs-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-xs-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-xs-5 {
    margin: 5px !important;
  }
  .ml-px-xs-5 {
    margin-left: 5px !important;
  }
  .mr-px-xs-5 {
    margin-right: 5px !important;
  }
  .mb-px-xs-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-xs-5 {
    margin-top: 5px !important;
  }
  .mx-px-xs-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-xs-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-xs-10 {
    padding: 10px !important;
  }
  .pl-px-xs-10 {
    padding-left: 10px !important;
  }
  .pr-px-xs-10 {
    padding-right: 10px !important;
  }
  .pb-px-xs-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-xs-10 {
    padding-top: 10px !important;
  }
  .px-px-xs-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-xs-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-xs-10 {
    margin: 10px !important;
  }
  .ml-px-xs-10 {
    margin-left: 10px !important;
  }
  .mr-px-xs-10 {
    margin-right: 10px !important;
  }
  .mb-px-xs-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-xs-10 {
    margin-top: 10px !important;
  }
  .mx-px-xs-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-xs-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-xs-15 {
    padding: 15px !important;
  }
  .pl-px-xs-15 {
    padding-left: 15px !important;
  }
  .pr-px-xs-15 {
    padding-right: 15px !important;
  }
  .pb-px-xs-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-xs-15 {
    padding-top: 15px !important;
  }
  .px-px-xs-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-xs-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-xs-15 {
    margin: 15px !important;
  }
  .ml-px-xs-15 {
    margin-left: 15px !important;
  }
  .mr-px-xs-15 {
    margin-right: 15px !important;
  }
  .mb-px-xs-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-xs-15 {
    margin-top: 15px !important;
  }
  .mx-px-xs-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-xs-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-xs-20 {
    padding: 20px !important;
  }
  .pl-px-xs-20 {
    padding-left: 20px !important;
  }
  .pr-px-xs-20 {
    padding-right: 20px !important;
  }
  .pb-px-xs-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-xs-20 {
    padding-top: 20px !important;
  }
  .px-px-xs-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-xs-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-xs-20 {
    margin: 20px !important;
  }
  .ml-px-xs-20 {
    margin-left: 20px !important;
  }
  .mr-px-xs-20 {
    margin-right: 20px !important;
  }
  .mb-px-xs-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-xs-20 {
    margin-top: 20px !important;
  }
  .mx-px-xs-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-xs-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-xs-25 {
    padding: 25px !important;
  }
  .pl-px-xs-25 {
    padding-left: 25px !important;
  }
  .pr-px-xs-25 {
    padding-right: 25px !important;
  }
  .pb-px-xs-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-xs-25 {
    padding-top: 25px !important;
  }
  .px-px-xs-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-xs-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-xs-25 {
    margin: 25px !important;
  }
  .ml-px-xs-25 {
    margin-left: 25px !important;
  }
  .mr-px-xs-25 {
    margin-right: 25px !important;
  }
  .mb-px-xs-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-xs-25 {
    margin-top: 25px !important;
  }
  .mx-px-xs-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-xs-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-xs-30 {
    padding: 30px !important;
  }
  .pl-px-xs-30 {
    padding-left: 30px !important;
  }
  .pr-px-xs-30 {
    padding-right: 30px !important;
  }
  .pb-px-xs-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-xs-30 {
    padding-top: 30px !important;
  }
  .px-px-xs-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-xs-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-xs-30 {
    margin: 30px !important;
  }
  .ml-px-xs-30 {
    margin-left: 30px !important;
  }
  .mr-px-xs-30 {
    margin-right: 30px !important;
  }
  .mb-px-xs-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-xs-30 {
    margin-top: 30px !important;
  }
  .mx-px-xs-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-xs-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-xs-35 {
    padding: 35px !important;
  }
  .pl-px-xs-35 {
    padding-left: 35px !important;
  }
  .pr-px-xs-35 {
    padding-right: 35px !important;
  }
  .pb-px-xs-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-xs-35 {
    padding-top: 35px !important;
  }
  .px-px-xs-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-xs-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-xs-35 {
    margin: 35px !important;
  }
  .ml-px-xs-35 {
    margin-left: 35px !important;
  }
  .mr-px-xs-35 {
    margin-right: 35px !important;
  }
  .mb-px-xs-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-xs-35 {
    margin-top: 35px !important;
  }
  .mx-px-xs-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-xs-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-xs-40 {
    padding: 40px !important;
  }
  .pl-px-xs-40 {
    padding-left: 40px !important;
  }
  .pr-px-xs-40 {
    padding-right: 40px !important;
  }
  .pb-px-xs-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-xs-40 {
    padding-top: 40px !important;
  }
  .px-px-xs-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-xs-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-xs-40 {
    margin: 40px !important;
  }
  .ml-px-xs-40 {
    margin-left: 40px !important;
  }
  .mr-px-xs-40 {
    margin-right: 40px !important;
  }
  .mb-px-xs-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-xs-40 {
    margin-top: 40px !important;
  }
  .mx-px-xs-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-xs-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-xs-45 {
    padding: 45px !important;
  }
  .pl-px-xs-45 {
    padding-left: 45px !important;
  }
  .pr-px-xs-45 {
    padding-right: 45px !important;
  }
  .pb-px-xs-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-xs-45 {
    padding-top: 45px !important;
  }
  .px-px-xs-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-xs-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-xs-45 {
    margin: 45px !important;
  }
  .ml-px-xs-45 {
    margin-left: 45px !important;
  }
  .mr-px-xs-45 {
    margin-right: 45px !important;
  }
  .mb-px-xs-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-xs-45 {
    margin-top: 45px !important;
  }
  .mx-px-xs-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-xs-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-xs-50 {
    padding: 50px !important;
  }
  .pl-px-xs-50 {
    padding-left: 50px !important;
  }
  .pr-px-xs-50 {
    padding-right: 50px !important;
  }
  .pb-px-xs-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-xs-50 {
    padding-top: 50px !important;
  }
  .px-px-xs-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-xs-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-xs-50 {
    margin: 50px !important;
  }
  .ml-px-xs-50 {
    margin-left: 50px !important;
  }
  .mr-px-xs-50 {
    margin-right: 50px !important;
  }
  .mb-px-xs-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-xs-50 {
    margin-top: 50px !important;
  }
  .mx-px-xs-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-xs-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-xs-55 {
    padding: 55px !important;
  }
  .pl-px-xs-55 {
    padding-left: 55px !important;
  }
  .pr-px-xs-55 {
    padding-right: 55px !important;
  }
  .pb-px-xs-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-xs-55 {
    padding-top: 55px !important;
  }
  .px-px-xs-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-xs-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-xs-55 {
    margin: 55px !important;
  }
  .ml-px-xs-55 {
    margin-left: 55px !important;
  }
  .mr-px-xs-55 {
    margin-right: 55px !important;
  }
  .mb-px-xs-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-xs-55 {
    margin-top: 55px !important;
  }
  .mx-px-xs-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-xs-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-xs-60 {
    padding: 60px !important;
  }
  .pl-px-xs-60 {
    padding-left: 60px !important;
  }
  .pr-px-xs-60 {
    padding-right: 60px !important;
  }
  .pb-px-xs-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-xs-60 {
    padding-top: 60px !important;
  }
  .px-px-xs-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-xs-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-xs-60 {
    margin: 60px !important;
  }
  .ml-px-xs-60 {
    margin-left: 60px !important;
  }
  .mr-px-xs-60 {
    margin-right: 60px !important;
  }
  .mb-px-xs-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-xs-60 {
    margin-top: 60px !important;
  }
  .mx-px-xs-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-xs-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-xs-65 {
    padding: 65px !important;
  }
  .pl-px-xs-65 {
    padding-left: 65px !important;
  }
  .pr-px-xs-65 {
    padding-right: 65px !important;
  }
  .pb-px-xs-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-xs-65 {
    padding-top: 65px !important;
  }
  .px-px-xs-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-xs-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-xs-65 {
    margin: 65px !important;
  }
  .ml-px-xs-65 {
    margin-left: 65px !important;
  }
  .mr-px-xs-65 {
    margin-right: 65px !important;
  }
  .mb-px-xs-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-xs-65 {
    margin-top: 65px !important;
  }
  .mx-px-xs-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-xs-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-xs-70 {
    padding: 70px !important;
  }
  .pl-px-xs-70 {
    padding-left: 70px !important;
  }
  .pr-px-xs-70 {
    padding-right: 70px !important;
  }
  .pb-px-xs-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-xs-70 {
    padding-top: 70px !important;
  }
  .px-px-xs-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-xs-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-xs-70 {
    margin: 70px !important;
  }
  .ml-px-xs-70 {
    margin-left: 70px !important;
  }
  .mr-px-xs-70 {
    margin-right: 70px !important;
  }
  .mb-px-xs-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-xs-70 {
    margin-top: 70px !important;
  }
  .mx-px-xs-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-xs-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-xs-75 {
    padding: 75px !important;
  }
  .pl-px-xs-75 {
    padding-left: 75px !important;
  }
  .pr-px-xs-75 {
    padding-right: 75px !important;
  }
  .pb-px-xs-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-xs-75 {
    padding-top: 75px !important;
  }
  .px-px-xs-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-xs-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-xs-75 {
    margin: 75px !important;
  }
  .ml-px-xs-75 {
    margin-left: 75px !important;
  }
  .mr-px-xs-75 {
    margin-right: 75px !important;
  }
  .mb-px-xs-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-xs-75 {
    margin-top: 75px !important;
  }
  .mx-px-xs-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-xs-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-xs-80 {
    padding: 80px !important;
  }
  .pl-px-xs-80 {
    padding-left: 80px !important;
  }
  .pr-px-xs-80 {
    padding-right: 80px !important;
  }
  .pb-px-xs-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-xs-80 {
    padding-top: 80px !important;
  }
  .px-px-xs-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-xs-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-xs-80 {
    margin: 80px !important;
  }
  .ml-px-xs-80 {
    margin-left: 80px !important;
  }
  .mr-px-xs-80 {
    margin-right: 80px !important;
  }
  .mb-px-xs-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-xs-80 {
    margin-top: 80px !important;
  }
  .mx-px-xs-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-xs-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-xs-85 {
    padding: 85px !important;
  }
  .pl-px-xs-85 {
    padding-left: 85px !important;
  }
  .pr-px-xs-85 {
    padding-right: 85px !important;
  }
  .pb-px-xs-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-xs-85 {
    padding-top: 85px !important;
  }
  .px-px-xs-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-xs-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-xs-85 {
    margin: 85px !important;
  }
  .ml-px-xs-85 {
    margin-left: 85px !important;
  }
  .mr-px-xs-85 {
    margin-right: 85px !important;
  }
  .mb-px-xs-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-xs-85 {
    margin-top: 85px !important;
  }
  .mx-px-xs-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-xs-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-xs-90 {
    padding: 90px !important;
  }
  .pl-px-xs-90 {
    padding-left: 90px !important;
  }
  .pr-px-xs-90 {
    padding-right: 90px !important;
  }
  .pb-px-xs-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-xs-90 {
    padding-top: 90px !important;
  }
  .px-px-xs-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-xs-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-xs-90 {
    margin: 90px !important;
  }
  .ml-px-xs-90 {
    margin-left: 90px !important;
  }
  .mr-px-xs-90 {
    margin-right: 90px !important;
  }
  .mb-px-xs-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-xs-90 {
    margin-top: 90px !important;
  }
  .mx-px-xs-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-xs-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-xs-95 {
    padding: 95px !important;
  }
  .pl-px-xs-95 {
    padding-left: 95px !important;
  }
  .pr-px-xs-95 {
    padding-right: 95px !important;
  }
  .pb-px-xs-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-xs-95 {
    padding-top: 95px !important;
  }
  .px-px-xs-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-xs-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-xs-95 {
    margin: 95px !important;
  }
  .ml-px-xs-95 {
    margin-left: 95px !important;
  }
  .mr-px-xs-95 {
    margin-right: 95px !important;
  }
  .mb-px-xs-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-xs-95 {
    margin-top: 95px !important;
  }
  .mx-px-xs-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-xs-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-xs-100 {
    padding: 100px !important;
  }
  .pl-px-xs-100 {
    padding-left: 100px !important;
  }
  .pr-px-xs-100 {
    padding-right: 100px !important;
  }
  .pb-px-xs-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-xs-100 {
    padding-top: 100px !important;
  }
  .px-px-xs-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-xs-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-xs-100 {
    margin: 100px !important;
  }
  .ml-px-xs-100 {
    margin-left: 100px !important;
  }
  .mr-px-xs-100 {
    margin-right: 100px !important;
  }
  .mb-px-xs-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-xs-100 {
    margin-top: 100px !important;
  }
  .mx-px-xs-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-xs-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-xs-105 {
    padding: 105px !important;
  }
  .pl-px-xs-105 {
    padding-left: 105px !important;
  }
  .pr-px-xs-105 {
    padding-right: 105px !important;
  }
  .pb-px-xs-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-xs-105 {
    padding-top: 105px !important;
  }
  .px-px-xs-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-xs-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-xs-105 {
    margin: 105px !important;
  }
  .ml-px-xs-105 {
    margin-left: 105px !important;
  }
  .mr-px-xs-105 {
    margin-right: 105px !important;
  }
  .mb-px-xs-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-xs-105 {
    margin-top: 105px !important;
  }
  .mx-px-xs-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-xs-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-xs-110 {
    padding: 110px !important;
  }
  .pl-px-xs-110 {
    padding-left: 110px !important;
  }
  .pr-px-xs-110 {
    padding-right: 110px !important;
  }
  .pb-px-xs-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-xs-110 {
    padding-top: 110px !important;
  }
  .px-px-xs-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-xs-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-xs-110 {
    margin: 110px !important;
  }
  .ml-px-xs-110 {
    margin-left: 110px !important;
  }
  .mr-px-xs-110 {
    margin-right: 110px !important;
  }
  .mb-px-xs-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-xs-110 {
    margin-top: 110px !important;
  }
  .mx-px-xs-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-xs-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-xs-115 {
    padding: 115px !important;
  }
  .pl-px-xs-115 {
    padding-left: 115px !important;
  }
  .pr-px-xs-115 {
    padding-right: 115px !important;
  }
  .pb-px-xs-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-xs-115 {
    padding-top: 115px !important;
  }
  .px-px-xs-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-xs-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-xs-115 {
    margin: 115px !important;
  }
  .ml-px-xs-115 {
    margin-left: 115px !important;
  }
  .mr-px-xs-115 {
    margin-right: 115px !important;
  }
  .mb-px-xs-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-xs-115 {
    margin-top: 115px !important;
  }
  .mx-px-xs-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-xs-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-xs-120 {
    padding: 120px !important;
  }
  .pl-px-xs-120 {
    padding-left: 120px !important;
  }
  .pr-px-xs-120 {
    padding-right: 120px !important;
  }
  .pb-px-xs-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-xs-120 {
    padding-top: 120px !important;
  }
  .px-px-xs-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-xs-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-xs-120 {
    margin: 120px !important;
  }
  .ml-px-xs-120 {
    margin-left: 120px !important;
  }
  .mr-px-xs-120 {
    margin-right: 120px !important;
  }
  .mb-px-xs-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-xs-120 {
    margin-top: 120px !important;
  }
  .mx-px-xs-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-xs-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-xs-125 {
    padding: 125px !important;
  }
  .pl-px-xs-125 {
    padding-left: 125px !important;
  }
  .pr-px-xs-125 {
    padding-right: 125px !important;
  }
  .pb-px-xs-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-xs-125 {
    padding-top: 125px !important;
  }
  .px-px-xs-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-xs-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-xs-125 {
    margin: 125px !important;
  }
  .ml-px-xs-125 {
    margin-left: 125px !important;
  }
  .mr-px-xs-125 {
    margin-right: 125px !important;
  }
  .mb-px-xs-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-xs-125 {
    margin-top: 125px !important;
  }
  .mx-px-xs-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-xs-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-xs-130 {
    padding: 130px !important;
  }
  .pl-px-xs-130 {
    padding-left: 130px !important;
  }
  .pr-px-xs-130 {
    padding-right: 130px !important;
  }
  .pb-px-xs-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-xs-130 {
    padding-top: 130px !important;
  }
  .px-px-xs-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-xs-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-xs-130 {
    margin: 130px !important;
  }
  .ml-px-xs-130 {
    margin-left: 130px !important;
  }
  .mr-px-xs-130 {
    margin-right: 130px !important;
  }
  .mb-px-xs-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-xs-130 {
    margin-top: 130px !important;
  }
  .mx-px-xs-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-xs-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-xs-135 {
    padding: 135px !important;
  }
  .pl-px-xs-135 {
    padding-left: 135px !important;
  }
  .pr-px-xs-135 {
    padding-right: 135px !important;
  }
  .pb-px-xs-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-xs-135 {
    padding-top: 135px !important;
  }
  .px-px-xs-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-xs-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-xs-135 {
    margin: 135px !important;
  }
  .ml-px-xs-135 {
    margin-left: 135px !important;
  }
  .mr-px-xs-135 {
    margin-right: 135px !important;
  }
  .mb-px-xs-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-xs-135 {
    margin-top: 135px !important;
  }
  .mx-px-xs-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-xs-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-xs-140 {
    padding: 140px !important;
  }
  .pl-px-xs-140 {
    padding-left: 140px !important;
  }
  .pr-px-xs-140 {
    padding-right: 140px !important;
  }
  .pb-px-xs-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-xs-140 {
    padding-top: 140px !important;
  }
  .px-px-xs-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-xs-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-xs-140 {
    margin: 140px !important;
  }
  .ml-px-xs-140 {
    margin-left: 140px !important;
  }
  .mr-px-xs-140 {
    margin-right: 140px !important;
  }
  .mb-px-xs-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-xs-140 {
    margin-top: 140px !important;
  }
  .mx-px-xs-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-xs-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-xs-145 {
    padding: 145px !important;
  }
  .pl-px-xs-145 {
    padding-left: 145px !important;
  }
  .pr-px-xs-145 {
    padding-right: 145px !important;
  }
  .pb-px-xs-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-xs-145 {
    padding-top: 145px !important;
  }
  .px-px-xs-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-xs-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-xs-145 {
    margin: 145px !important;
  }
  .ml-px-xs-145 {
    margin-left: 145px !important;
  }
  .mr-px-xs-145 {
    margin-right: 145px !important;
  }
  .mb-px-xs-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-xs-145 {
    margin-top: 145px !important;
  }
  .mx-px-xs-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-xs-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-xs-150 {
    padding: 150px !important;
  }
  .pl-px-xs-150 {
    padding-left: 150px !important;
  }
  .pr-px-xs-150 {
    padding-right: 150px !important;
  }
  .pb-px-xs-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-xs-150 {
    padding-top: 150px !important;
  }
  .px-px-xs-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-xs-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-xs-150 {
    margin: 150px !important;
  }
  .ml-px-xs-150 {
    margin-left: 150px !important;
  }
  .mr-px-xs-150 {
    margin-right: 150px !important;
  }
  .mb-px-xs-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-xs-150 {
    margin-top: 150px !important;
  }
  .mx-px-xs-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-xs-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-xs-155 {
    padding: 155px !important;
  }
  .pl-px-xs-155 {
    padding-left: 155px !important;
  }
  .pr-px-xs-155 {
    padding-right: 155px !important;
  }
  .pb-px-xs-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-xs-155 {
    padding-top: 155px !important;
  }
  .px-px-xs-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-xs-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-xs-155 {
    margin: 155px !important;
  }
  .ml-px-xs-155 {
    margin-left: 155px !important;
  }
  .mr-px-xs-155 {
    margin-right: 155px !important;
  }
  .mb-px-xs-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-xs-155 {
    margin-top: 155px !important;
  }
  .mx-px-xs-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-xs-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-xs-160 {
    padding: 160px !important;
  }
  .pl-px-xs-160 {
    padding-left: 160px !important;
  }
  .pr-px-xs-160 {
    padding-right: 160px !important;
  }
  .pb-px-xs-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-xs-160 {
    padding-top: 160px !important;
  }
  .px-px-xs-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-xs-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-xs-160 {
    margin: 160px !important;
  }
  .ml-px-xs-160 {
    margin-left: 160px !important;
  }
  .mr-px-xs-160 {
    margin-right: 160px !important;
  }
  .mb-px-xs-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-xs-160 {
    margin-top: 160px !important;
  }
  .mx-px-xs-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-xs-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-xs-165 {
    padding: 165px !important;
  }
  .pl-px-xs-165 {
    padding-left: 165px !important;
  }
  .pr-px-xs-165 {
    padding-right: 165px !important;
  }
  .pb-px-xs-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-xs-165 {
    padding-top: 165px !important;
  }
  .px-px-xs-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-xs-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-xs-165 {
    margin: 165px !important;
  }
  .ml-px-xs-165 {
    margin-left: 165px !important;
  }
  .mr-px-xs-165 {
    margin-right: 165px !important;
  }
  .mb-px-xs-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-xs-165 {
    margin-top: 165px !important;
  }
  .mx-px-xs-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-xs-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-xs-170 {
    padding: 170px !important;
  }
  .pl-px-xs-170 {
    padding-left: 170px !important;
  }
  .pr-px-xs-170 {
    padding-right: 170px !important;
  }
  .pb-px-xs-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-xs-170 {
    padding-top: 170px !important;
  }
  .px-px-xs-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-xs-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-xs-170 {
    margin: 170px !important;
  }
  .ml-px-xs-170 {
    margin-left: 170px !important;
  }
  .mr-px-xs-170 {
    margin-right: 170px !important;
  }
  .mb-px-xs-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-xs-170 {
    margin-top: 170px !important;
  }
  .mx-px-xs-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-xs-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-xs-175 {
    padding: 175px !important;
  }
  .pl-px-xs-175 {
    padding-left: 175px !important;
  }
  .pr-px-xs-175 {
    padding-right: 175px !important;
  }
  .pb-px-xs-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-xs-175 {
    padding-top: 175px !important;
  }
  .px-px-xs-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-xs-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-xs-175 {
    margin: 175px !important;
  }
  .ml-px-xs-175 {
    margin-left: 175px !important;
  }
  .mr-px-xs-175 {
    margin-right: 175px !important;
  }
  .mb-px-xs-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-xs-175 {
    margin-top: 175px !important;
  }
  .mx-px-xs-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-xs-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-xs-180 {
    padding: 180px !important;
  }
  .pl-px-xs-180 {
    padding-left: 180px !important;
  }
  .pr-px-xs-180 {
    padding-right: 180px !important;
  }
  .pb-px-xs-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-xs-180 {
    padding-top: 180px !important;
  }
  .px-px-xs-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-xs-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-xs-180 {
    margin: 180px !important;
  }
  .ml-px-xs-180 {
    margin-left: 180px !important;
  }
  .mr-px-xs-180 {
    margin-right: 180px !important;
  }
  .mb-px-xs-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-xs-180 {
    margin-top: 180px !important;
  }
  .mx-px-xs-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-xs-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-xs-185 {
    padding: 185px !important;
  }
  .pl-px-xs-185 {
    padding-left: 185px !important;
  }
  .pr-px-xs-185 {
    padding-right: 185px !important;
  }
  .pb-px-xs-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-xs-185 {
    padding-top: 185px !important;
  }
  .px-px-xs-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-xs-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-xs-185 {
    margin: 185px !important;
  }
  .ml-px-xs-185 {
    margin-left: 185px !important;
  }
  .mr-px-xs-185 {
    margin-right: 185px !important;
  }
  .mb-px-xs-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-xs-185 {
    margin-top: 185px !important;
  }
  .mx-px-xs-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-xs-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-xs-190 {
    padding: 190px !important;
  }
  .pl-px-xs-190 {
    padding-left: 190px !important;
  }
  .pr-px-xs-190 {
    padding-right: 190px !important;
  }
  .pb-px-xs-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-xs-190 {
    padding-top: 190px !important;
  }
  .px-px-xs-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-xs-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-xs-190 {
    margin: 190px !important;
  }
  .ml-px-xs-190 {
    margin-left: 190px !important;
  }
  .mr-px-xs-190 {
    margin-right: 190px !important;
  }
  .mb-px-xs-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-xs-190 {
    margin-top: 190px !important;
  }
  .mx-px-xs-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-xs-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-xs-195 {
    padding: 195px !important;
  }
  .pl-px-xs-195 {
    padding-left: 195px !important;
  }
  .pr-px-xs-195 {
    padding-right: 195px !important;
  }
  .pb-px-xs-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-xs-195 {
    padding-top: 195px !important;
  }
  .px-px-xs-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-xs-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-xs-195 {
    margin: 195px !important;
  }
  .ml-px-xs-195 {
    margin-left: 195px !important;
  }
  .mr-px-xs-195 {
    margin-right: 195px !important;
  }
  .mb-px-xs-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-xs-195 {
    margin-top: 195px !important;
  }
  .mx-px-xs-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-xs-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-xs-200 {
    padding: 200px !important;
  }
  .pl-px-xs-200 {
    padding-left: 200px !important;
  }
  .pr-px-xs-200 {
    padding-right: 200px !important;
  }
  .pb-px-xs-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-xs-200 {
    padding-top: 200px !important;
  }
  .px-px-xs-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-xs-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-xs-200 {
    margin: 200px !important;
  }
  .ml-px-xs-200 {
    margin-left: 200px !important;
  }
  .mr-px-xs-200 {
    margin-right: 200px !important;
  }
  .mb-px-xs-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-xs-200 {
    margin-top: 200px !important;
  }
  .mx-px-xs-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-xs-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 576px) {
  .p-px-sm-5 {
    padding: 5px !important;
  }
  .pl-px-sm-5 {
    padding-left: 5px !important;
  }
  .pr-px-sm-5 {
    padding-right: 5px !important;
  }
  .pb-px-sm-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-sm-5 {
    padding-top: 5px !important;
  }
  .px-px-sm-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-sm-5 {
    margin: 5px !important;
  }
  .ml-px-sm-5 {
    margin-left: 5px !important;
  }
  .mr-px-sm-5 {
    margin-right: 5px !important;
  }
  .mb-px-sm-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-sm-5 {
    margin-top: 5px !important;
  }
  .mx-px-sm-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-sm-10 {
    padding: 10px !important;
  }
  .pl-px-sm-10 {
    padding-left: 10px !important;
  }
  .pr-px-sm-10 {
    padding-right: 10px !important;
  }
  .pb-px-sm-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-sm-10 {
    padding-top: 10px !important;
  }
  .px-px-sm-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-sm-10 {
    margin: 10px !important;
  }
  .ml-px-sm-10 {
    margin-left: 10px !important;
  }
  .mr-px-sm-10 {
    margin-right: 10px !important;
  }
  .mb-px-sm-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-sm-10 {
    margin-top: 10px !important;
  }
  .mx-px-sm-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-sm-15 {
    padding: 15px !important;
  }
  .pl-px-sm-15 {
    padding-left: 15px !important;
  }
  .pr-px-sm-15 {
    padding-right: 15px !important;
  }
  .pb-px-sm-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-sm-15 {
    padding-top: 15px !important;
  }
  .px-px-sm-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-sm-15 {
    margin: 15px !important;
  }
  .ml-px-sm-15 {
    margin-left: 15px !important;
  }
  .mr-px-sm-15 {
    margin-right: 15px !important;
  }
  .mb-px-sm-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-sm-15 {
    margin-top: 15px !important;
  }
  .mx-px-sm-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-sm-20 {
    padding: 20px !important;
  }
  .pl-px-sm-20 {
    padding-left: 20px !important;
  }
  .pr-px-sm-20 {
    padding-right: 20px !important;
  }
  .pb-px-sm-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-sm-20 {
    padding-top: 20px !important;
  }
  .px-px-sm-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-sm-20 {
    margin: 20px !important;
  }
  .ml-px-sm-20 {
    margin-left: 20px !important;
  }
  .mr-px-sm-20 {
    margin-right: 20px !important;
  }
  .mb-px-sm-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-sm-20 {
    margin-top: 20px !important;
  }
  .mx-px-sm-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-sm-25 {
    padding: 25px !important;
  }
  .pl-px-sm-25 {
    padding-left: 25px !important;
  }
  .pr-px-sm-25 {
    padding-right: 25px !important;
  }
  .pb-px-sm-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-sm-25 {
    padding-top: 25px !important;
  }
  .px-px-sm-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-sm-25 {
    margin: 25px !important;
  }
  .ml-px-sm-25 {
    margin-left: 25px !important;
  }
  .mr-px-sm-25 {
    margin-right: 25px !important;
  }
  .mb-px-sm-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-sm-25 {
    margin-top: 25px !important;
  }
  .mx-px-sm-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-sm-30 {
    padding: 30px !important;
  }
  .pl-px-sm-30 {
    padding-left: 30px !important;
  }
  .pr-px-sm-30 {
    padding-right: 30px !important;
  }
  .pb-px-sm-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-sm-30 {
    padding-top: 30px !important;
  }
  .px-px-sm-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-sm-30 {
    margin: 30px !important;
  }
  .ml-px-sm-30 {
    margin-left: 30px !important;
  }
  .mr-px-sm-30 {
    margin-right: 30px !important;
  }
  .mb-px-sm-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-sm-30 {
    margin-top: 30px !important;
  }
  .mx-px-sm-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-sm-35 {
    padding: 35px !important;
  }
  .pl-px-sm-35 {
    padding-left: 35px !important;
  }
  .pr-px-sm-35 {
    padding-right: 35px !important;
  }
  .pb-px-sm-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-sm-35 {
    padding-top: 35px !important;
  }
  .px-px-sm-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-sm-35 {
    margin: 35px !important;
  }
  .ml-px-sm-35 {
    margin-left: 35px !important;
  }
  .mr-px-sm-35 {
    margin-right: 35px !important;
  }
  .mb-px-sm-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-sm-35 {
    margin-top: 35px !important;
  }
  .mx-px-sm-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-sm-40 {
    padding: 40px !important;
  }
  .pl-px-sm-40 {
    padding-left: 40px !important;
  }
  .pr-px-sm-40 {
    padding-right: 40px !important;
  }
  .pb-px-sm-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-sm-40 {
    padding-top: 40px !important;
  }
  .px-px-sm-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-sm-40 {
    margin: 40px !important;
  }
  .ml-px-sm-40 {
    margin-left: 40px !important;
  }
  .mr-px-sm-40 {
    margin-right: 40px !important;
  }
  .mb-px-sm-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-sm-40 {
    margin-top: 40px !important;
  }
  .mx-px-sm-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-sm-45 {
    padding: 45px !important;
  }
  .pl-px-sm-45 {
    padding-left: 45px !important;
  }
  .pr-px-sm-45 {
    padding-right: 45px !important;
  }
  .pb-px-sm-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-sm-45 {
    padding-top: 45px !important;
  }
  .px-px-sm-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-sm-45 {
    margin: 45px !important;
  }
  .ml-px-sm-45 {
    margin-left: 45px !important;
  }
  .mr-px-sm-45 {
    margin-right: 45px !important;
  }
  .mb-px-sm-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-sm-45 {
    margin-top: 45px !important;
  }
  .mx-px-sm-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-sm-50 {
    padding: 50px !important;
  }
  .pl-px-sm-50 {
    padding-left: 50px !important;
  }
  .pr-px-sm-50 {
    padding-right: 50px !important;
  }
  .pb-px-sm-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-sm-50 {
    padding-top: 50px !important;
  }
  .px-px-sm-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-sm-50 {
    margin: 50px !important;
  }
  .ml-px-sm-50 {
    margin-left: 50px !important;
  }
  .mr-px-sm-50 {
    margin-right: 50px !important;
  }
  .mb-px-sm-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-sm-50 {
    margin-top: 50px !important;
  }
  .mx-px-sm-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-sm-55 {
    padding: 55px !important;
  }
  .pl-px-sm-55 {
    padding-left: 55px !important;
  }
  .pr-px-sm-55 {
    padding-right: 55px !important;
  }
  .pb-px-sm-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-sm-55 {
    padding-top: 55px !important;
  }
  .px-px-sm-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-sm-55 {
    margin: 55px !important;
  }
  .ml-px-sm-55 {
    margin-left: 55px !important;
  }
  .mr-px-sm-55 {
    margin-right: 55px !important;
  }
  .mb-px-sm-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-sm-55 {
    margin-top: 55px !important;
  }
  .mx-px-sm-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-sm-60 {
    padding: 60px !important;
  }
  .pl-px-sm-60 {
    padding-left: 60px !important;
  }
  .pr-px-sm-60 {
    padding-right: 60px !important;
  }
  .pb-px-sm-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-sm-60 {
    padding-top: 60px !important;
  }
  .px-px-sm-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-sm-60 {
    margin: 60px !important;
  }
  .ml-px-sm-60 {
    margin-left: 60px !important;
  }
  .mr-px-sm-60 {
    margin-right: 60px !important;
  }
  .mb-px-sm-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-sm-60 {
    margin-top: 60px !important;
  }
  .mx-px-sm-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-sm-65 {
    padding: 65px !important;
  }
  .pl-px-sm-65 {
    padding-left: 65px !important;
  }
  .pr-px-sm-65 {
    padding-right: 65px !important;
  }
  .pb-px-sm-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-sm-65 {
    padding-top: 65px !important;
  }
  .px-px-sm-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-sm-65 {
    margin: 65px !important;
  }
  .ml-px-sm-65 {
    margin-left: 65px !important;
  }
  .mr-px-sm-65 {
    margin-right: 65px !important;
  }
  .mb-px-sm-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-sm-65 {
    margin-top: 65px !important;
  }
  .mx-px-sm-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-sm-70 {
    padding: 70px !important;
  }
  .pl-px-sm-70 {
    padding-left: 70px !important;
  }
  .pr-px-sm-70 {
    padding-right: 70px !important;
  }
  .pb-px-sm-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-sm-70 {
    padding-top: 70px !important;
  }
  .px-px-sm-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-sm-70 {
    margin: 70px !important;
  }
  .ml-px-sm-70 {
    margin-left: 70px !important;
  }
  .mr-px-sm-70 {
    margin-right: 70px !important;
  }
  .mb-px-sm-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-sm-70 {
    margin-top: 70px !important;
  }
  .mx-px-sm-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-sm-75 {
    padding: 75px !important;
  }
  .pl-px-sm-75 {
    padding-left: 75px !important;
  }
  .pr-px-sm-75 {
    padding-right: 75px !important;
  }
  .pb-px-sm-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-sm-75 {
    padding-top: 75px !important;
  }
  .px-px-sm-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-sm-75 {
    margin: 75px !important;
  }
  .ml-px-sm-75 {
    margin-left: 75px !important;
  }
  .mr-px-sm-75 {
    margin-right: 75px !important;
  }
  .mb-px-sm-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-sm-75 {
    margin-top: 75px !important;
  }
  .mx-px-sm-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-sm-80 {
    padding: 80px !important;
  }
  .pl-px-sm-80 {
    padding-left: 80px !important;
  }
  .pr-px-sm-80 {
    padding-right: 80px !important;
  }
  .pb-px-sm-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-sm-80 {
    padding-top: 80px !important;
  }
  .px-px-sm-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-sm-80 {
    margin: 80px !important;
  }
  .ml-px-sm-80 {
    margin-left: 80px !important;
  }
  .mr-px-sm-80 {
    margin-right: 80px !important;
  }
  .mb-px-sm-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-sm-80 {
    margin-top: 80px !important;
  }
  .mx-px-sm-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-sm-85 {
    padding: 85px !important;
  }
  .pl-px-sm-85 {
    padding-left: 85px !important;
  }
  .pr-px-sm-85 {
    padding-right: 85px !important;
  }
  .pb-px-sm-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-sm-85 {
    padding-top: 85px !important;
  }
  .px-px-sm-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-sm-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-sm-85 {
    margin: 85px !important;
  }
  .ml-px-sm-85 {
    margin-left: 85px !important;
  }
  .mr-px-sm-85 {
    margin-right: 85px !important;
  }
  .mb-px-sm-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-sm-85 {
    margin-top: 85px !important;
  }
  .mx-px-sm-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-sm-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-sm-90 {
    padding: 90px !important;
  }
  .pl-px-sm-90 {
    padding-left: 90px !important;
  }
  .pr-px-sm-90 {
    padding-right: 90px !important;
  }
  .pb-px-sm-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-sm-90 {
    padding-top: 90px !important;
  }
  .px-px-sm-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-sm-90 {
    margin: 90px !important;
  }
  .ml-px-sm-90 {
    margin-left: 90px !important;
  }
  .mr-px-sm-90 {
    margin-right: 90px !important;
  }
  .mb-px-sm-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-sm-90 {
    margin-top: 90px !important;
  }
  .mx-px-sm-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-sm-95 {
    padding: 95px !important;
  }
  .pl-px-sm-95 {
    padding-left: 95px !important;
  }
  .pr-px-sm-95 {
    padding-right: 95px !important;
  }
  .pb-px-sm-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-sm-95 {
    padding-top: 95px !important;
  }
  .px-px-sm-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-sm-95 {
    margin: 95px !important;
  }
  .ml-px-sm-95 {
    margin-left: 95px !important;
  }
  .mr-px-sm-95 {
    margin-right: 95px !important;
  }
  .mb-px-sm-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-sm-95 {
    margin-top: 95px !important;
  }
  .mx-px-sm-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-sm-100 {
    padding: 100px !important;
  }
  .pl-px-sm-100 {
    padding-left: 100px !important;
  }
  .pr-px-sm-100 {
    padding-right: 100px !important;
  }
  .pb-px-sm-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-sm-100 {
    padding-top: 100px !important;
  }
  .px-px-sm-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-sm-100 {
    margin: 100px !important;
  }
  .ml-px-sm-100 {
    margin-left: 100px !important;
  }
  .mr-px-sm-100 {
    margin-right: 100px !important;
  }
  .mb-px-sm-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-sm-100 {
    margin-top: 100px !important;
  }
  .mx-px-sm-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-sm-105 {
    padding: 105px !important;
  }
  .pl-px-sm-105 {
    padding-left: 105px !important;
  }
  .pr-px-sm-105 {
    padding-right: 105px !important;
  }
  .pb-px-sm-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-sm-105 {
    padding-top: 105px !important;
  }
  .px-px-sm-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-sm-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-sm-105 {
    margin: 105px !important;
  }
  .ml-px-sm-105 {
    margin-left: 105px !important;
  }
  .mr-px-sm-105 {
    margin-right: 105px !important;
  }
  .mb-px-sm-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-sm-105 {
    margin-top: 105px !important;
  }
  .mx-px-sm-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-sm-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-sm-110 {
    padding: 110px !important;
  }
  .pl-px-sm-110 {
    padding-left: 110px !important;
  }
  .pr-px-sm-110 {
    padding-right: 110px !important;
  }
  .pb-px-sm-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-sm-110 {
    padding-top: 110px !important;
  }
  .px-px-sm-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-sm-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-sm-110 {
    margin: 110px !important;
  }
  .ml-px-sm-110 {
    margin-left: 110px !important;
  }
  .mr-px-sm-110 {
    margin-right: 110px !important;
  }
  .mb-px-sm-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-sm-110 {
    margin-top: 110px !important;
  }
  .mx-px-sm-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-sm-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-sm-115 {
    padding: 115px !important;
  }
  .pl-px-sm-115 {
    padding-left: 115px !important;
  }
  .pr-px-sm-115 {
    padding-right: 115px !important;
  }
  .pb-px-sm-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-sm-115 {
    padding-top: 115px !important;
  }
  .px-px-sm-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-sm-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-sm-115 {
    margin: 115px !important;
  }
  .ml-px-sm-115 {
    margin-left: 115px !important;
  }
  .mr-px-sm-115 {
    margin-right: 115px !important;
  }
  .mb-px-sm-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-sm-115 {
    margin-top: 115px !important;
  }
  .mx-px-sm-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-sm-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-sm-120 {
    padding: 120px !important;
  }
  .pl-px-sm-120 {
    padding-left: 120px !important;
  }
  .pr-px-sm-120 {
    padding-right: 120px !important;
  }
  .pb-px-sm-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-sm-120 {
    padding-top: 120px !important;
  }
  .px-px-sm-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-sm-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-sm-120 {
    margin: 120px !important;
  }
  .ml-px-sm-120 {
    margin-left: 120px !important;
  }
  .mr-px-sm-120 {
    margin-right: 120px !important;
  }
  .mb-px-sm-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-sm-120 {
    margin-top: 120px !important;
  }
  .mx-px-sm-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-sm-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-sm-125 {
    padding: 125px !important;
  }
  .pl-px-sm-125 {
    padding-left: 125px !important;
  }
  .pr-px-sm-125 {
    padding-right: 125px !important;
  }
  .pb-px-sm-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-sm-125 {
    padding-top: 125px !important;
  }
  .px-px-sm-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-sm-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-sm-125 {
    margin: 125px !important;
  }
  .ml-px-sm-125 {
    margin-left: 125px !important;
  }
  .mr-px-sm-125 {
    margin-right: 125px !important;
  }
  .mb-px-sm-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-sm-125 {
    margin-top: 125px !important;
  }
  .mx-px-sm-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-sm-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-sm-130 {
    padding: 130px !important;
  }
  .pl-px-sm-130 {
    padding-left: 130px !important;
  }
  .pr-px-sm-130 {
    padding-right: 130px !important;
  }
  .pb-px-sm-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-sm-130 {
    padding-top: 130px !important;
  }
  .px-px-sm-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-sm-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-sm-130 {
    margin: 130px !important;
  }
  .ml-px-sm-130 {
    margin-left: 130px !important;
  }
  .mr-px-sm-130 {
    margin-right: 130px !important;
  }
  .mb-px-sm-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-sm-130 {
    margin-top: 130px !important;
  }
  .mx-px-sm-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-sm-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-sm-135 {
    padding: 135px !important;
  }
  .pl-px-sm-135 {
    padding-left: 135px !important;
  }
  .pr-px-sm-135 {
    padding-right: 135px !important;
  }
  .pb-px-sm-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-sm-135 {
    padding-top: 135px !important;
  }
  .px-px-sm-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-sm-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-sm-135 {
    margin: 135px !important;
  }
  .ml-px-sm-135 {
    margin-left: 135px !important;
  }
  .mr-px-sm-135 {
    margin-right: 135px !important;
  }
  .mb-px-sm-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-sm-135 {
    margin-top: 135px !important;
  }
  .mx-px-sm-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-sm-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-sm-140 {
    padding: 140px !important;
  }
  .pl-px-sm-140 {
    padding-left: 140px !important;
  }
  .pr-px-sm-140 {
    padding-right: 140px !important;
  }
  .pb-px-sm-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-sm-140 {
    padding-top: 140px !important;
  }
  .px-px-sm-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-sm-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-sm-140 {
    margin: 140px !important;
  }
  .ml-px-sm-140 {
    margin-left: 140px !important;
  }
  .mr-px-sm-140 {
    margin-right: 140px !important;
  }
  .mb-px-sm-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-sm-140 {
    margin-top: 140px !important;
  }
  .mx-px-sm-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-sm-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-sm-145 {
    padding: 145px !important;
  }
  .pl-px-sm-145 {
    padding-left: 145px !important;
  }
  .pr-px-sm-145 {
    padding-right: 145px !important;
  }
  .pb-px-sm-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-sm-145 {
    padding-top: 145px !important;
  }
  .px-px-sm-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-sm-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-sm-145 {
    margin: 145px !important;
  }
  .ml-px-sm-145 {
    margin-left: 145px !important;
  }
  .mr-px-sm-145 {
    margin-right: 145px !important;
  }
  .mb-px-sm-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-sm-145 {
    margin-top: 145px !important;
  }
  .mx-px-sm-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-sm-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-sm-150 {
    padding: 150px !important;
  }
  .pl-px-sm-150 {
    padding-left: 150px !important;
  }
  .pr-px-sm-150 {
    padding-right: 150px !important;
  }
  .pb-px-sm-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-sm-150 {
    padding-top: 150px !important;
  }
  .px-px-sm-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-sm-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-sm-150 {
    margin: 150px !important;
  }
  .ml-px-sm-150 {
    margin-left: 150px !important;
  }
  .mr-px-sm-150 {
    margin-right: 150px !important;
  }
  .mb-px-sm-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-sm-150 {
    margin-top: 150px !important;
  }
  .mx-px-sm-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-sm-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-sm-155 {
    padding: 155px !important;
  }
  .pl-px-sm-155 {
    padding-left: 155px !important;
  }
  .pr-px-sm-155 {
    padding-right: 155px !important;
  }
  .pb-px-sm-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-sm-155 {
    padding-top: 155px !important;
  }
  .px-px-sm-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-sm-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-sm-155 {
    margin: 155px !important;
  }
  .ml-px-sm-155 {
    margin-left: 155px !important;
  }
  .mr-px-sm-155 {
    margin-right: 155px !important;
  }
  .mb-px-sm-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-sm-155 {
    margin-top: 155px !important;
  }
  .mx-px-sm-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-sm-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-sm-160 {
    padding: 160px !important;
  }
  .pl-px-sm-160 {
    padding-left: 160px !important;
  }
  .pr-px-sm-160 {
    padding-right: 160px !important;
  }
  .pb-px-sm-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-sm-160 {
    padding-top: 160px !important;
  }
  .px-px-sm-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-sm-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-sm-160 {
    margin: 160px !important;
  }
  .ml-px-sm-160 {
    margin-left: 160px !important;
  }
  .mr-px-sm-160 {
    margin-right: 160px !important;
  }
  .mb-px-sm-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-sm-160 {
    margin-top: 160px !important;
  }
  .mx-px-sm-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-sm-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-sm-165 {
    padding: 165px !important;
  }
  .pl-px-sm-165 {
    padding-left: 165px !important;
  }
  .pr-px-sm-165 {
    padding-right: 165px !important;
  }
  .pb-px-sm-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-sm-165 {
    padding-top: 165px !important;
  }
  .px-px-sm-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-sm-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-sm-165 {
    margin: 165px !important;
  }
  .ml-px-sm-165 {
    margin-left: 165px !important;
  }
  .mr-px-sm-165 {
    margin-right: 165px !important;
  }
  .mb-px-sm-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-sm-165 {
    margin-top: 165px !important;
  }
  .mx-px-sm-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-sm-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-sm-170 {
    padding: 170px !important;
  }
  .pl-px-sm-170 {
    padding-left: 170px !important;
  }
  .pr-px-sm-170 {
    padding-right: 170px !important;
  }
  .pb-px-sm-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-sm-170 {
    padding-top: 170px !important;
  }
  .px-px-sm-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-sm-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-sm-170 {
    margin: 170px !important;
  }
  .ml-px-sm-170 {
    margin-left: 170px !important;
  }
  .mr-px-sm-170 {
    margin-right: 170px !important;
  }
  .mb-px-sm-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-sm-170 {
    margin-top: 170px !important;
  }
  .mx-px-sm-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-sm-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-sm-175 {
    padding: 175px !important;
  }
  .pl-px-sm-175 {
    padding-left: 175px !important;
  }
  .pr-px-sm-175 {
    padding-right: 175px !important;
  }
  .pb-px-sm-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-sm-175 {
    padding-top: 175px !important;
  }
  .px-px-sm-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-sm-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-sm-175 {
    margin: 175px !important;
  }
  .ml-px-sm-175 {
    margin-left: 175px !important;
  }
  .mr-px-sm-175 {
    margin-right: 175px !important;
  }
  .mb-px-sm-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-sm-175 {
    margin-top: 175px !important;
  }
  .mx-px-sm-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-sm-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-sm-180 {
    padding: 180px !important;
  }
  .pl-px-sm-180 {
    padding-left: 180px !important;
  }
  .pr-px-sm-180 {
    padding-right: 180px !important;
  }
  .pb-px-sm-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-sm-180 {
    padding-top: 180px !important;
  }
  .px-px-sm-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-sm-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-sm-180 {
    margin: 180px !important;
  }
  .ml-px-sm-180 {
    margin-left: 180px !important;
  }
  .mr-px-sm-180 {
    margin-right: 180px !important;
  }
  .mb-px-sm-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-sm-180 {
    margin-top: 180px !important;
  }
  .mx-px-sm-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-sm-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-sm-185 {
    padding: 185px !important;
  }
  .pl-px-sm-185 {
    padding-left: 185px !important;
  }
  .pr-px-sm-185 {
    padding-right: 185px !important;
  }
  .pb-px-sm-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-sm-185 {
    padding-top: 185px !important;
  }
  .px-px-sm-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-sm-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-sm-185 {
    margin: 185px !important;
  }
  .ml-px-sm-185 {
    margin-left: 185px !important;
  }
  .mr-px-sm-185 {
    margin-right: 185px !important;
  }
  .mb-px-sm-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-sm-185 {
    margin-top: 185px !important;
  }
  .mx-px-sm-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-sm-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-sm-190 {
    padding: 190px !important;
  }
  .pl-px-sm-190 {
    padding-left: 190px !important;
  }
  .pr-px-sm-190 {
    padding-right: 190px !important;
  }
  .pb-px-sm-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-sm-190 {
    padding-top: 190px !important;
  }
  .px-px-sm-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-sm-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-sm-190 {
    margin: 190px !important;
  }
  .ml-px-sm-190 {
    margin-left: 190px !important;
  }
  .mr-px-sm-190 {
    margin-right: 190px !important;
  }
  .mb-px-sm-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-sm-190 {
    margin-top: 190px !important;
  }
  .mx-px-sm-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-sm-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-sm-195 {
    padding: 195px !important;
  }
  .pl-px-sm-195 {
    padding-left: 195px !important;
  }
  .pr-px-sm-195 {
    padding-right: 195px !important;
  }
  .pb-px-sm-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-sm-195 {
    padding-top: 195px !important;
  }
  .px-px-sm-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-sm-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-sm-195 {
    margin: 195px !important;
  }
  .ml-px-sm-195 {
    margin-left: 195px !important;
  }
  .mr-px-sm-195 {
    margin-right: 195px !important;
  }
  .mb-px-sm-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-sm-195 {
    margin-top: 195px !important;
  }
  .mx-px-sm-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-sm-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-sm-200 {
    padding: 200px !important;
  }
  .pl-px-sm-200 {
    padding-left: 200px !important;
  }
  .pr-px-sm-200 {
    padding-right: 200px !important;
  }
  .pb-px-sm-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-sm-200 {
    padding-top: 200px !important;
  }
  .px-px-sm-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-sm-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-sm-200 {
    margin: 200px !important;
  }
  .ml-px-sm-200 {
    margin-left: 200px !important;
  }
  .mr-px-sm-200 {
    margin-right: 200px !important;
  }
  .mb-px-sm-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-sm-200 {
    margin-top: 200px !important;
  }
  .mx-px-sm-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-sm-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 768px) {
  .p-px-md-5 {
    padding: 5px !important;
  }
  .pl-px-md-5 {
    padding-left: 5px !important;
  }
  .pr-px-md-5 {
    padding-right: 5px !important;
  }
  .pb-px-md-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-md-5 {
    padding-top: 5px !important;
  }
  .px-px-md-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-md-5 {
    margin: 5px !important;
  }
  .ml-px-md-5 {
    margin-left: 5px !important;
  }
  .mr-px-md-5 {
    margin-right: 5px !important;
  }
  .mb-px-md-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-md-5 {
    margin-top: 5px !important;
  }
  .mx-px-md-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-md-10 {
    padding: 10px !important;
  }
  .pl-px-md-10 {
    padding-left: 10px !important;
  }
  .pr-px-md-10 {
    padding-right: 10px !important;
  }
  .pb-px-md-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-md-10 {
    padding-top: 10px !important;
  }
  .px-px-md-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-md-10 {
    margin: 10px !important;
  }
  .ml-px-md-10 {
    margin-left: 10px !important;
  }
  .mr-px-md-10 {
    margin-right: 10px !important;
  }
  .mb-px-md-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-md-10 {
    margin-top: 10px !important;
  }
  .mx-px-md-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-md-15 {
    padding: 15px !important;
  }
  .pl-px-md-15 {
    padding-left: 15px !important;
  }
  .pr-px-md-15 {
    padding-right: 15px !important;
  }
  .pb-px-md-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-md-15 {
    padding-top: 15px !important;
  }
  .px-px-md-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-md-15 {
    margin: 15px !important;
  }
  .ml-px-md-15 {
    margin-left: 15px !important;
  }
  .mr-px-md-15 {
    margin-right: 15px !important;
  }
  .mb-px-md-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-md-15 {
    margin-top: 15px !important;
  }
  .mx-px-md-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-md-20 {
    padding: 20px !important;
  }
  .pl-px-md-20 {
    padding-left: 20px !important;
  }
  .pr-px-md-20 {
    padding-right: 20px !important;
  }
  .pb-px-md-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-md-20 {
    padding-top: 20px !important;
  }
  .px-px-md-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-md-20 {
    margin: 20px !important;
  }
  .ml-px-md-20 {
    margin-left: 20px !important;
  }
  .mr-px-md-20 {
    margin-right: 20px !important;
  }
  .mb-px-md-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-md-20 {
    margin-top: 20px !important;
  }
  .mx-px-md-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-md-25 {
    padding: 25px !important;
  }
  .pl-px-md-25 {
    padding-left: 25px !important;
  }
  .pr-px-md-25 {
    padding-right: 25px !important;
  }
  .pb-px-md-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-md-25 {
    padding-top: 25px !important;
  }
  .px-px-md-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-md-25 {
    margin: 25px !important;
  }
  .ml-px-md-25 {
    margin-left: 25px !important;
  }
  .mr-px-md-25 {
    margin-right: 25px !important;
  }
  .mb-px-md-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-md-25 {
    margin-top: 25px !important;
  }
  .mx-px-md-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-md-30 {
    padding: 30px !important;
  }
  .pl-px-md-30 {
    padding-left: 30px !important;
  }
  .pr-px-md-30 {
    padding-right: 30px !important;
  }
  .pb-px-md-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-md-30 {
    padding-top: 30px !important;
  }
  .px-px-md-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-md-30 {
    margin: 30px !important;
  }
  .ml-px-md-30 {
    margin-left: 30px !important;
  }
  .mr-px-md-30 {
    margin-right: 30px !important;
  }
  .mb-px-md-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-md-30 {
    margin-top: 30px !important;
  }
  .mx-px-md-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-md-35 {
    padding: 35px !important;
  }
  .pl-px-md-35 {
    padding-left: 35px !important;
  }
  .pr-px-md-35 {
    padding-right: 35px !important;
  }
  .pb-px-md-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-md-35 {
    padding-top: 35px !important;
  }
  .px-px-md-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-md-35 {
    margin: 35px !important;
  }
  .ml-px-md-35 {
    margin-left: 35px !important;
  }
  .mr-px-md-35 {
    margin-right: 35px !important;
  }
  .mb-px-md-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-md-35 {
    margin-top: 35px !important;
  }
  .mx-px-md-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-md-40 {
    padding: 40px !important;
  }
  .pl-px-md-40 {
    padding-left: 40px !important;
  }
  .pr-px-md-40 {
    padding-right: 40px !important;
  }
  .pb-px-md-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-md-40 {
    padding-top: 40px !important;
  }
  .px-px-md-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-md-40 {
    margin: 40px !important;
  }
  .ml-px-md-40 {
    margin-left: 40px !important;
  }
  .mr-px-md-40 {
    margin-right: 40px !important;
  }
  .mb-px-md-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-md-40 {
    margin-top: 40px !important;
  }
  .mx-px-md-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-md-45 {
    padding: 45px !important;
  }
  .pl-px-md-45 {
    padding-left: 45px !important;
  }
  .pr-px-md-45 {
    padding-right: 45px !important;
  }
  .pb-px-md-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-md-45 {
    padding-top: 45px !important;
  }
  .px-px-md-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-md-45 {
    margin: 45px !important;
  }
  .ml-px-md-45 {
    margin-left: 45px !important;
  }
  .mr-px-md-45 {
    margin-right: 45px !important;
  }
  .mb-px-md-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-md-45 {
    margin-top: 45px !important;
  }
  .mx-px-md-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-md-50 {
    padding: 50px !important;
  }
  .pl-px-md-50 {
    padding-left: 50px !important;
  }
  .pr-px-md-50 {
    padding-right: 50px !important;
  }
  .pb-px-md-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-md-50 {
    padding-top: 50px !important;
  }
  .px-px-md-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-md-50 {
    margin: 50px !important;
  }
  .ml-px-md-50 {
    margin-left: 50px !important;
  }
  .mr-px-md-50 {
    margin-right: 50px !important;
  }
  .mb-px-md-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-md-50 {
    margin-top: 50px !important;
  }
  .mx-px-md-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-md-55 {
    padding: 55px !important;
  }
  .pl-px-md-55 {
    padding-left: 55px !important;
  }
  .pr-px-md-55 {
    padding-right: 55px !important;
  }
  .pb-px-md-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-md-55 {
    padding-top: 55px !important;
  }
  .px-px-md-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-md-55 {
    margin: 55px !important;
  }
  .ml-px-md-55 {
    margin-left: 55px !important;
  }
  .mr-px-md-55 {
    margin-right: 55px !important;
  }
  .mb-px-md-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-md-55 {
    margin-top: 55px !important;
  }
  .mx-px-md-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-md-60 {
    padding: 60px !important;
  }
  .pl-px-md-60 {
    padding-left: 60px !important;
  }
  .pr-px-md-60 {
    padding-right: 60px !important;
  }
  .pb-px-md-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-md-60 {
    padding-top: 60px !important;
  }
  .px-px-md-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-md-60 {
    margin: 60px !important;
  }
  .ml-px-md-60 {
    margin-left: 60px !important;
  }
  .mr-px-md-60 {
    margin-right: 60px !important;
  }
  .mb-px-md-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-md-60 {
    margin-top: 60px !important;
  }
  .mx-px-md-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-md-65 {
    padding: 65px !important;
  }
  .pl-px-md-65 {
    padding-left: 65px !important;
  }
  .pr-px-md-65 {
    padding-right: 65px !important;
  }
  .pb-px-md-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-md-65 {
    padding-top: 65px !important;
  }
  .px-px-md-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-md-65 {
    margin: 65px !important;
  }
  .ml-px-md-65 {
    margin-left: 65px !important;
  }
  .mr-px-md-65 {
    margin-right: 65px !important;
  }
  .mb-px-md-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-md-65 {
    margin-top: 65px !important;
  }
  .mx-px-md-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-md-70 {
    padding: 70px !important;
  }
  .pl-px-md-70 {
    padding-left: 70px !important;
  }
  .pr-px-md-70 {
    padding-right: 70px !important;
  }
  .pb-px-md-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-md-70 {
    padding-top: 70px !important;
  }
  .px-px-md-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-md-70 {
    margin: 70px !important;
  }
  .ml-px-md-70 {
    margin-left: 70px !important;
  }
  .mr-px-md-70 {
    margin-right: 70px !important;
  }
  .mb-px-md-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-md-70 {
    margin-top: 70px !important;
  }
  .mx-px-md-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-md-75 {
    padding: 75px !important;
  }
  .pl-px-md-75 {
    padding-left: 75px !important;
  }
  .pr-px-md-75 {
    padding-right: 75px !important;
  }
  .pb-px-md-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-md-75 {
    padding-top: 75px !important;
  }
  .px-px-md-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-md-75 {
    margin: 75px !important;
  }
  .ml-px-md-75 {
    margin-left: 75px !important;
  }
  .mr-px-md-75 {
    margin-right: 75px !important;
  }
  .mb-px-md-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-md-75 {
    margin-top: 75px !important;
  }
  .mx-px-md-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-md-80 {
    padding: 80px !important;
  }
  .pl-px-md-80 {
    padding-left: 80px !important;
  }
  .pr-px-md-80 {
    padding-right: 80px !important;
  }
  .pb-px-md-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-md-80 {
    padding-top: 80px !important;
  }
  .px-px-md-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-md-80 {
    margin: 80px !important;
  }
  .ml-px-md-80 {
    margin-left: 80px !important;
  }
  .mr-px-md-80 {
    margin-right: 80px !important;
  }
  .mb-px-md-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-md-80 {
    margin-top: 80px !important;
  }
  .mx-px-md-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-md-85 {
    padding: 85px !important;
  }
  .pl-px-md-85 {
    padding-left: 85px !important;
  }
  .pr-px-md-85 {
    padding-right: 85px !important;
  }
  .pb-px-md-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-md-85 {
    padding-top: 85px !important;
  }
  .px-px-md-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-md-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-md-85 {
    margin: 85px !important;
  }
  .ml-px-md-85 {
    margin-left: 85px !important;
  }
  .mr-px-md-85 {
    margin-right: 85px !important;
  }
  .mb-px-md-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-md-85 {
    margin-top: 85px !important;
  }
  .mx-px-md-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-md-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-md-90 {
    padding: 90px !important;
  }
  .pl-px-md-90 {
    padding-left: 90px !important;
  }
  .pr-px-md-90 {
    padding-right: 90px !important;
  }
  .pb-px-md-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-md-90 {
    padding-top: 90px !important;
  }
  .px-px-md-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-md-90 {
    margin: 90px !important;
  }
  .ml-px-md-90 {
    margin-left: 90px !important;
  }
  .mr-px-md-90 {
    margin-right: 90px !important;
  }
  .mb-px-md-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-md-90 {
    margin-top: 90px !important;
  }
  .mx-px-md-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-md-95 {
    padding: 95px !important;
  }
  .pl-px-md-95 {
    padding-left: 95px !important;
  }
  .pr-px-md-95 {
    padding-right: 95px !important;
  }
  .pb-px-md-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-md-95 {
    padding-top: 95px !important;
  }
  .px-px-md-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-md-95 {
    margin: 95px !important;
  }
  .ml-px-md-95 {
    margin-left: 95px !important;
  }
  .mr-px-md-95 {
    margin-right: 95px !important;
  }
  .mb-px-md-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-md-95 {
    margin-top: 95px !important;
  }
  .mx-px-md-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-md-100 {
    padding: 100px !important;
  }
  .pl-px-md-100 {
    padding-left: 100px !important;
  }
  .pr-px-md-100 {
    padding-right: 100px !important;
  }
  .pb-px-md-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-md-100 {
    padding-top: 100px !important;
  }
  .px-px-md-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-md-100 {
    margin: 100px !important;
  }
  .ml-px-md-100 {
    margin-left: 100px !important;
  }
  .mr-px-md-100 {
    margin-right: 100px !important;
  }
  .mb-px-md-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-md-100 {
    margin-top: 100px !important;
  }
  .mx-px-md-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-md-105 {
    padding: 105px !important;
  }
  .pl-px-md-105 {
    padding-left: 105px !important;
  }
  .pr-px-md-105 {
    padding-right: 105px !important;
  }
  .pb-px-md-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-md-105 {
    padding-top: 105px !important;
  }
  .px-px-md-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-md-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-md-105 {
    margin: 105px !important;
  }
  .ml-px-md-105 {
    margin-left: 105px !important;
  }
  .mr-px-md-105 {
    margin-right: 105px !important;
  }
  .mb-px-md-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-md-105 {
    margin-top: 105px !important;
  }
  .mx-px-md-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-md-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-md-110 {
    padding: 110px !important;
  }
  .pl-px-md-110 {
    padding-left: 110px !important;
  }
  .pr-px-md-110 {
    padding-right: 110px !important;
  }
  .pb-px-md-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-md-110 {
    padding-top: 110px !important;
  }
  .px-px-md-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-md-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-md-110 {
    margin: 110px !important;
  }
  .ml-px-md-110 {
    margin-left: 110px !important;
  }
  .mr-px-md-110 {
    margin-right: 110px !important;
  }
  .mb-px-md-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-md-110 {
    margin-top: 110px !important;
  }
  .mx-px-md-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-md-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-md-115 {
    padding: 115px !important;
  }
  .pl-px-md-115 {
    padding-left: 115px !important;
  }
  .pr-px-md-115 {
    padding-right: 115px !important;
  }
  .pb-px-md-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-md-115 {
    padding-top: 115px !important;
  }
  .px-px-md-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-md-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-md-115 {
    margin: 115px !important;
  }
  .ml-px-md-115 {
    margin-left: 115px !important;
  }
  .mr-px-md-115 {
    margin-right: 115px !important;
  }
  .mb-px-md-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-md-115 {
    margin-top: 115px !important;
  }
  .mx-px-md-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-md-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-md-120 {
    padding: 120px !important;
  }
  .pl-px-md-120 {
    padding-left: 120px !important;
  }
  .pr-px-md-120 {
    padding-right: 120px !important;
  }
  .pb-px-md-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-md-120 {
    padding-top: 120px !important;
  }
  .px-px-md-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-md-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-md-120 {
    margin: 120px !important;
  }
  .ml-px-md-120 {
    margin-left: 120px !important;
  }
  .mr-px-md-120 {
    margin-right: 120px !important;
  }
  .mb-px-md-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-md-120 {
    margin-top: 120px !important;
  }
  .mx-px-md-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-md-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-md-125 {
    padding: 125px !important;
  }
  .pl-px-md-125 {
    padding-left: 125px !important;
  }
  .pr-px-md-125 {
    padding-right: 125px !important;
  }
  .pb-px-md-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-md-125 {
    padding-top: 125px !important;
  }
  .px-px-md-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-md-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-md-125 {
    margin: 125px !important;
  }
  .ml-px-md-125 {
    margin-left: 125px !important;
  }
  .mr-px-md-125 {
    margin-right: 125px !important;
  }
  .mb-px-md-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-md-125 {
    margin-top: 125px !important;
  }
  .mx-px-md-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-md-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-md-130 {
    padding: 130px !important;
  }
  .pl-px-md-130 {
    padding-left: 130px !important;
  }
  .pr-px-md-130 {
    padding-right: 130px !important;
  }
  .pb-px-md-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-md-130 {
    padding-top: 130px !important;
  }
  .px-px-md-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-md-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-md-130 {
    margin: 130px !important;
  }
  .ml-px-md-130 {
    margin-left: 130px !important;
  }
  .mr-px-md-130 {
    margin-right: 130px !important;
  }
  .mb-px-md-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-md-130 {
    margin-top: 130px !important;
  }
  .mx-px-md-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-md-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-md-135 {
    padding: 135px !important;
  }
  .pl-px-md-135 {
    padding-left: 135px !important;
  }
  .pr-px-md-135 {
    padding-right: 135px !important;
  }
  .pb-px-md-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-md-135 {
    padding-top: 135px !important;
  }
  .px-px-md-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-md-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-md-135 {
    margin: 135px !important;
  }
  .ml-px-md-135 {
    margin-left: 135px !important;
  }
  .mr-px-md-135 {
    margin-right: 135px !important;
  }
  .mb-px-md-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-md-135 {
    margin-top: 135px !important;
  }
  .mx-px-md-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-md-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-md-140 {
    padding: 140px !important;
  }
  .pl-px-md-140 {
    padding-left: 140px !important;
  }
  .pr-px-md-140 {
    padding-right: 140px !important;
  }
  .pb-px-md-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-md-140 {
    padding-top: 140px !important;
  }
  .px-px-md-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-md-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-md-140 {
    margin: 140px !important;
  }
  .ml-px-md-140 {
    margin-left: 140px !important;
  }
  .mr-px-md-140 {
    margin-right: 140px !important;
  }
  .mb-px-md-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-md-140 {
    margin-top: 140px !important;
  }
  .mx-px-md-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-md-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-md-145 {
    padding: 145px !important;
  }
  .pl-px-md-145 {
    padding-left: 145px !important;
  }
  .pr-px-md-145 {
    padding-right: 145px !important;
  }
  .pb-px-md-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-md-145 {
    padding-top: 145px !important;
  }
  .px-px-md-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-md-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-md-145 {
    margin: 145px !important;
  }
  .ml-px-md-145 {
    margin-left: 145px !important;
  }
  .mr-px-md-145 {
    margin-right: 145px !important;
  }
  .mb-px-md-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-md-145 {
    margin-top: 145px !important;
  }
  .mx-px-md-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-md-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-md-150 {
    padding: 150px !important;
  }
  .pl-px-md-150 {
    padding-left: 150px !important;
  }
  .pr-px-md-150 {
    padding-right: 150px !important;
  }
  .pb-px-md-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-md-150 {
    padding-top: 150px !important;
  }
  .px-px-md-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-md-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-md-150 {
    margin: 150px !important;
  }
  .ml-px-md-150 {
    margin-left: 150px !important;
  }
  .mr-px-md-150 {
    margin-right: 150px !important;
  }
  .mb-px-md-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-md-150 {
    margin-top: 150px !important;
  }
  .mx-px-md-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-md-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-md-155 {
    padding: 155px !important;
  }
  .pl-px-md-155 {
    padding-left: 155px !important;
  }
  .pr-px-md-155 {
    padding-right: 155px !important;
  }
  .pb-px-md-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-md-155 {
    padding-top: 155px !important;
  }
  .px-px-md-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-md-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-md-155 {
    margin: 155px !important;
  }
  .ml-px-md-155 {
    margin-left: 155px !important;
  }
  .mr-px-md-155 {
    margin-right: 155px !important;
  }
  .mb-px-md-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-md-155 {
    margin-top: 155px !important;
  }
  .mx-px-md-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-md-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-md-160 {
    padding: 160px !important;
  }
  .pl-px-md-160 {
    padding-left: 160px !important;
  }
  .pr-px-md-160 {
    padding-right: 160px !important;
  }
  .pb-px-md-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-md-160 {
    padding-top: 160px !important;
  }
  .px-px-md-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-md-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-md-160 {
    margin: 160px !important;
  }
  .ml-px-md-160 {
    margin-left: 160px !important;
  }
  .mr-px-md-160 {
    margin-right: 160px !important;
  }
  .mb-px-md-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-md-160 {
    margin-top: 160px !important;
  }
  .mx-px-md-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-md-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-md-165 {
    padding: 165px !important;
  }
  .pl-px-md-165 {
    padding-left: 165px !important;
  }
  .pr-px-md-165 {
    padding-right: 165px !important;
  }
  .pb-px-md-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-md-165 {
    padding-top: 165px !important;
  }
  .px-px-md-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-md-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-md-165 {
    margin: 165px !important;
  }
  .ml-px-md-165 {
    margin-left: 165px !important;
  }
  .mr-px-md-165 {
    margin-right: 165px !important;
  }
  .mb-px-md-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-md-165 {
    margin-top: 165px !important;
  }
  .mx-px-md-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-md-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-md-170 {
    padding: 170px !important;
  }
  .pl-px-md-170 {
    padding-left: 170px !important;
  }
  .pr-px-md-170 {
    padding-right: 170px !important;
  }
  .pb-px-md-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-md-170 {
    padding-top: 170px !important;
  }
  .px-px-md-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-md-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-md-170 {
    margin: 170px !important;
  }
  .ml-px-md-170 {
    margin-left: 170px !important;
  }
  .mr-px-md-170 {
    margin-right: 170px !important;
  }
  .mb-px-md-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-md-170 {
    margin-top: 170px !important;
  }
  .mx-px-md-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-md-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-md-175 {
    padding: 175px !important;
  }
  .pl-px-md-175 {
    padding-left: 175px !important;
  }
  .pr-px-md-175 {
    padding-right: 175px !important;
  }
  .pb-px-md-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-md-175 {
    padding-top: 175px !important;
  }
  .px-px-md-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-md-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-md-175 {
    margin: 175px !important;
  }
  .ml-px-md-175 {
    margin-left: 175px !important;
  }
  .mr-px-md-175 {
    margin-right: 175px !important;
  }
  .mb-px-md-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-md-175 {
    margin-top: 175px !important;
  }
  .mx-px-md-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-md-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-md-180 {
    padding: 180px !important;
  }
  .pl-px-md-180 {
    padding-left: 180px !important;
  }
  .pr-px-md-180 {
    padding-right: 180px !important;
  }
  .pb-px-md-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-md-180 {
    padding-top: 180px !important;
  }
  .px-px-md-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-md-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-md-180 {
    margin: 180px !important;
  }
  .ml-px-md-180 {
    margin-left: 180px !important;
  }
  .mr-px-md-180 {
    margin-right: 180px !important;
  }
  .mb-px-md-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-md-180 {
    margin-top: 180px !important;
  }
  .mx-px-md-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-md-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-md-185 {
    padding: 185px !important;
  }
  .pl-px-md-185 {
    padding-left: 185px !important;
  }
  .pr-px-md-185 {
    padding-right: 185px !important;
  }
  .pb-px-md-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-md-185 {
    padding-top: 185px !important;
  }
  .px-px-md-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-md-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-md-185 {
    margin: 185px !important;
  }
  .ml-px-md-185 {
    margin-left: 185px !important;
  }
  .mr-px-md-185 {
    margin-right: 185px !important;
  }
  .mb-px-md-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-md-185 {
    margin-top: 185px !important;
  }
  .mx-px-md-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-md-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-md-190 {
    padding: 190px !important;
  }
  .pl-px-md-190 {
    padding-left: 190px !important;
  }
  .pr-px-md-190 {
    padding-right: 190px !important;
  }
  .pb-px-md-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-md-190 {
    padding-top: 190px !important;
  }
  .px-px-md-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-md-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-md-190 {
    margin: 190px !important;
  }
  .ml-px-md-190 {
    margin-left: 190px !important;
  }
  .mr-px-md-190 {
    margin-right: 190px !important;
  }
  .mb-px-md-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-md-190 {
    margin-top: 190px !important;
  }
  .mx-px-md-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-md-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-md-195 {
    padding: 195px !important;
  }
  .pl-px-md-195 {
    padding-left: 195px !important;
  }
  .pr-px-md-195 {
    padding-right: 195px !important;
  }
  .pb-px-md-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-md-195 {
    padding-top: 195px !important;
  }
  .px-px-md-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-md-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-md-195 {
    margin: 195px !important;
  }
  .ml-px-md-195 {
    margin-left: 195px !important;
  }
  .mr-px-md-195 {
    margin-right: 195px !important;
  }
  .mb-px-md-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-md-195 {
    margin-top: 195px !important;
  }
  .mx-px-md-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-md-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-md-200 {
    padding: 200px !important;
  }
  .pl-px-md-200 {
    padding-left: 200px !important;
  }
  .pr-px-md-200 {
    padding-right: 200px !important;
  }
  .pb-px-md-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-md-200 {
    padding-top: 200px !important;
  }
  .px-px-md-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-md-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-md-200 {
    margin: 200px !important;
  }
  .ml-px-md-200 {
    margin-left: 200px !important;
  }
  .mr-px-md-200 {
    margin-right: 200px !important;
  }
  .mb-px-md-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-md-200 {
    margin-top: 200px !important;
  }
  .mx-px-md-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-md-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 992px) {
  .p-px-lg-5 {
    padding: 5px !important;
  }
  .pl-px-lg-5 {
    padding-left: 5px !important;
  }
  .pr-px-lg-5 {
    padding-right: 5px !important;
  }
  .pb-px-lg-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-lg-5 {
    padding-top: 5px !important;
  }
  .px-px-lg-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-lg-5 {
    margin: 5px !important;
  }
  .ml-px-lg-5 {
    margin-left: 5px !important;
  }
  .mr-px-lg-5 {
    margin-right: 5px !important;
  }
  .mb-px-lg-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-lg-5 {
    margin-top: 5px !important;
  }
  .mx-px-lg-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-lg-10 {
    padding: 10px !important;
  }
  .pl-px-lg-10 {
    padding-left: 10px !important;
  }
  .pr-px-lg-10 {
    padding-right: 10px !important;
  }
  .pb-px-lg-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-lg-10 {
    padding-top: 10px !important;
  }
  .px-px-lg-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-lg-10 {
    margin: 10px !important;
  }
  .ml-px-lg-10 {
    margin-left: 10px !important;
  }
  .mr-px-lg-10 {
    margin-right: 10px !important;
  }
  .mb-px-lg-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-lg-10 {
    margin-top: 10px !important;
  }
  .mx-px-lg-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-lg-15 {
    padding: 15px !important;
  }
  .pl-px-lg-15 {
    padding-left: 15px !important;
  }
  .pr-px-lg-15 {
    padding-right: 15px !important;
  }
  .pb-px-lg-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-lg-15 {
    padding-top: 15px !important;
  }
  .px-px-lg-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-lg-15 {
    margin: 15px !important;
  }
  .ml-px-lg-15 {
    margin-left: 15px !important;
  }
  .mr-px-lg-15 {
    margin-right: 15px !important;
  }
  .mb-px-lg-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-lg-15 {
    margin-top: 15px !important;
  }
  .mx-px-lg-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-lg-20 {
    padding: 20px !important;
  }
  .pl-px-lg-20 {
    padding-left: 20px !important;
  }
  .pr-px-lg-20 {
    padding-right: 20px !important;
  }
  .pb-px-lg-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-lg-20 {
    padding-top: 20px !important;
  }
  .px-px-lg-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-lg-20 {
    margin: 20px !important;
  }
  .ml-px-lg-20 {
    margin-left: 20px !important;
  }
  .mr-px-lg-20 {
    margin-right: 20px !important;
  }
  .mb-px-lg-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-lg-20 {
    margin-top: 20px !important;
  }
  .mx-px-lg-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-lg-25 {
    padding: 25px !important;
  }
  .pl-px-lg-25 {
    padding-left: 25px !important;
  }
  .pr-px-lg-25 {
    padding-right: 25px !important;
  }
  .pb-px-lg-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-lg-25 {
    padding-top: 25px !important;
  }
  .px-px-lg-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-lg-25 {
    margin: 25px !important;
  }
  .ml-px-lg-25 {
    margin-left: 25px !important;
  }
  .mr-px-lg-25 {
    margin-right: 25px !important;
  }
  .mb-px-lg-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-lg-25 {
    margin-top: 25px !important;
  }
  .mx-px-lg-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-lg-30 {
    padding: 30px !important;
  }
  .pl-px-lg-30 {
    padding-left: 30px !important;
  }
  .pr-px-lg-30 {
    padding-right: 30px !important;
  }
  .pb-px-lg-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-lg-30 {
    padding-top: 30px !important;
  }
  .px-px-lg-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-lg-30 {
    margin: 30px !important;
  }
  .ml-px-lg-30 {
    margin-left: 30px !important;
  }
  .mr-px-lg-30 {
    margin-right: 30px !important;
  }
  .mb-px-lg-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-lg-30 {
    margin-top: 30px !important;
  }
  .mx-px-lg-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-lg-35 {
    padding: 35px !important;
  }
  .pl-px-lg-35 {
    padding-left: 35px !important;
  }
  .pr-px-lg-35 {
    padding-right: 35px !important;
  }
  .pb-px-lg-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-lg-35 {
    padding-top: 35px !important;
  }
  .px-px-lg-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-lg-35 {
    margin: 35px !important;
  }
  .ml-px-lg-35 {
    margin-left: 35px !important;
  }
  .mr-px-lg-35 {
    margin-right: 35px !important;
  }
  .mb-px-lg-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-lg-35 {
    margin-top: 35px !important;
  }
  .mx-px-lg-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-lg-40 {
    padding: 40px !important;
  }
  .pl-px-lg-40 {
    padding-left: 40px !important;
  }
  .pr-px-lg-40 {
    padding-right: 40px !important;
  }
  .pb-px-lg-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-lg-40 {
    padding-top: 40px !important;
  }
  .px-px-lg-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-lg-40 {
    margin: 40px !important;
  }
  .ml-px-lg-40 {
    margin-left: 40px !important;
  }
  .mr-px-lg-40 {
    margin-right: 40px !important;
  }
  .mb-px-lg-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-lg-40 {
    margin-top: 40px !important;
  }
  .mx-px-lg-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-lg-45 {
    padding: 45px !important;
  }
  .pl-px-lg-45 {
    padding-left: 45px !important;
  }
  .pr-px-lg-45 {
    padding-right: 45px !important;
  }
  .pb-px-lg-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-lg-45 {
    padding-top: 45px !important;
  }
  .px-px-lg-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-lg-45 {
    margin: 45px !important;
  }
  .ml-px-lg-45 {
    margin-left: 45px !important;
  }
  .mr-px-lg-45 {
    margin-right: 45px !important;
  }
  .mb-px-lg-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-lg-45 {
    margin-top: 45px !important;
  }
  .mx-px-lg-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-lg-50 {
    padding: 50px !important;
  }
  .pl-px-lg-50 {
    padding-left: 50px !important;
  }
  .pr-px-lg-50 {
    padding-right: 50px !important;
  }
  .pb-px-lg-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-lg-50 {
    padding-top: 50px !important;
  }
  .px-px-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-lg-50 {
    margin: 50px !important;
  }
  .ml-px-lg-50 {
    margin-left: 50px !important;
  }
  .mr-px-lg-50 {
    margin-right: 50px !important;
  }
  .mb-px-lg-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-lg-50 {
    margin-top: 50px !important;
  }
  .mx-px-lg-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-lg-55 {
    padding: 55px !important;
  }
  .pl-px-lg-55 {
    padding-left: 55px !important;
  }
  .pr-px-lg-55 {
    padding-right: 55px !important;
  }
  .pb-px-lg-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-lg-55 {
    padding-top: 55px !important;
  }
  .px-px-lg-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-lg-55 {
    margin: 55px !important;
  }
  .ml-px-lg-55 {
    margin-left: 55px !important;
  }
  .mr-px-lg-55 {
    margin-right: 55px !important;
  }
  .mb-px-lg-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-lg-55 {
    margin-top: 55px !important;
  }
  .mx-px-lg-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-lg-60 {
    padding: 60px !important;
  }
  .pl-px-lg-60 {
    padding-left: 60px !important;
  }
  .pr-px-lg-60 {
    padding-right: 60px !important;
  }
  .pb-px-lg-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-lg-60 {
    padding-top: 60px !important;
  }
  .px-px-lg-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-lg-60 {
    margin: 60px !important;
  }
  .ml-px-lg-60 {
    margin-left: 60px !important;
  }
  .mr-px-lg-60 {
    margin-right: 60px !important;
  }
  .mb-px-lg-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-lg-60 {
    margin-top: 60px !important;
  }
  .mx-px-lg-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-lg-65 {
    padding: 65px !important;
  }
  .pl-px-lg-65 {
    padding-left: 65px !important;
  }
  .pr-px-lg-65 {
    padding-right: 65px !important;
  }
  .pb-px-lg-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-lg-65 {
    padding-top: 65px !important;
  }
  .px-px-lg-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-lg-65 {
    margin: 65px !important;
  }
  .ml-px-lg-65 {
    margin-left: 65px !important;
  }
  .mr-px-lg-65 {
    margin-right: 65px !important;
  }
  .mb-px-lg-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-lg-65 {
    margin-top: 65px !important;
  }
  .mx-px-lg-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-lg-70 {
    padding: 70px !important;
  }
  .pl-px-lg-70 {
    padding-left: 70px !important;
  }
  .pr-px-lg-70 {
    padding-right: 70px !important;
  }
  .pb-px-lg-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-lg-70 {
    padding-top: 70px !important;
  }
  .px-px-lg-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-lg-70 {
    margin: 70px !important;
  }
  .ml-px-lg-70 {
    margin-left: 70px !important;
  }
  .mr-px-lg-70 {
    margin-right: 70px !important;
  }
  .mb-px-lg-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-lg-70 {
    margin-top: 70px !important;
  }
  .mx-px-lg-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-lg-75 {
    padding: 75px !important;
  }
  .pl-px-lg-75 {
    padding-left: 75px !important;
  }
  .pr-px-lg-75 {
    padding-right: 75px !important;
  }
  .pb-px-lg-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-lg-75 {
    padding-top: 75px !important;
  }
  .px-px-lg-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-lg-75 {
    margin: 75px !important;
  }
  .ml-px-lg-75 {
    margin-left: 75px !important;
  }
  .mr-px-lg-75 {
    margin-right: 75px !important;
  }
  .mb-px-lg-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-lg-75 {
    margin-top: 75px !important;
  }
  .mx-px-lg-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-lg-80 {
    padding: 80px !important;
  }
  .pl-px-lg-80 {
    padding-left: 80px !important;
  }
  .pr-px-lg-80 {
    padding-right: 80px !important;
  }
  .pb-px-lg-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-lg-80 {
    padding-top: 80px !important;
  }
  .px-px-lg-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-lg-80 {
    margin: 80px !important;
  }
  .ml-px-lg-80 {
    margin-left: 80px !important;
  }
  .mr-px-lg-80 {
    margin-right: 80px !important;
  }
  .mb-px-lg-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-lg-80 {
    margin-top: 80px !important;
  }
  .mx-px-lg-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-lg-85 {
    padding: 85px !important;
  }
  .pl-px-lg-85 {
    padding-left: 85px !important;
  }
  .pr-px-lg-85 {
    padding-right: 85px !important;
  }
  .pb-px-lg-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-lg-85 {
    padding-top: 85px !important;
  }
  .px-px-lg-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-lg-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-lg-85 {
    margin: 85px !important;
  }
  .ml-px-lg-85 {
    margin-left: 85px !important;
  }
  .mr-px-lg-85 {
    margin-right: 85px !important;
  }
  .mb-px-lg-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-lg-85 {
    margin-top: 85px !important;
  }
  .mx-px-lg-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-lg-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-lg-90 {
    padding: 90px !important;
  }
  .pl-px-lg-90 {
    padding-left: 90px !important;
  }
  .pr-px-lg-90 {
    padding-right: 90px !important;
  }
  .pb-px-lg-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-lg-90 {
    padding-top: 90px !important;
  }
  .px-px-lg-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-lg-90 {
    margin: 90px !important;
  }
  .ml-px-lg-90 {
    margin-left: 90px !important;
  }
  .mr-px-lg-90 {
    margin-right: 90px !important;
  }
  .mb-px-lg-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-lg-90 {
    margin-top: 90px !important;
  }
  .mx-px-lg-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-lg-95 {
    padding: 95px !important;
  }
  .pl-px-lg-95 {
    padding-left: 95px !important;
  }
  .pr-px-lg-95 {
    padding-right: 95px !important;
  }
  .pb-px-lg-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-lg-95 {
    padding-top: 95px !important;
  }
  .px-px-lg-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-lg-95 {
    margin: 95px !important;
  }
  .ml-px-lg-95 {
    margin-left: 95px !important;
  }
  .mr-px-lg-95 {
    margin-right: 95px !important;
  }
  .mb-px-lg-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-lg-95 {
    margin-top: 95px !important;
  }
  .mx-px-lg-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-lg-100 {
    padding: 100px !important;
  }
  .pl-px-lg-100 {
    padding-left: 100px !important;
  }
  .pr-px-lg-100 {
    padding-right: 100px !important;
  }
  .pb-px-lg-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-lg-100 {
    padding-top: 100px !important;
  }
  .px-px-lg-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-lg-100 {
    margin: 100px !important;
  }
  .ml-px-lg-100 {
    margin-left: 100px !important;
  }
  .mr-px-lg-100 {
    margin-right: 100px !important;
  }
  .mb-px-lg-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-lg-100 {
    margin-top: 100px !important;
  }
  .mx-px-lg-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-lg-105 {
    padding: 105px !important;
  }
  .pl-px-lg-105 {
    padding-left: 105px !important;
  }
  .pr-px-lg-105 {
    padding-right: 105px !important;
  }
  .pb-px-lg-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-lg-105 {
    padding-top: 105px !important;
  }
  .px-px-lg-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-lg-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-lg-105 {
    margin: 105px !important;
  }
  .ml-px-lg-105 {
    margin-left: 105px !important;
  }
  .mr-px-lg-105 {
    margin-right: 105px !important;
  }
  .mb-px-lg-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-lg-105 {
    margin-top: 105px !important;
  }
  .mx-px-lg-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-lg-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-lg-110 {
    padding: 110px !important;
  }
  .pl-px-lg-110 {
    padding-left: 110px !important;
  }
  .pr-px-lg-110 {
    padding-right: 110px !important;
  }
  .pb-px-lg-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-lg-110 {
    padding-top: 110px !important;
  }
  .px-px-lg-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-lg-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-lg-110 {
    margin: 110px !important;
  }
  .ml-px-lg-110 {
    margin-left: 110px !important;
  }
  .mr-px-lg-110 {
    margin-right: 110px !important;
  }
  .mb-px-lg-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-lg-110 {
    margin-top: 110px !important;
  }
  .mx-px-lg-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-lg-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-lg-115 {
    padding: 115px !important;
  }
  .pl-px-lg-115 {
    padding-left: 115px !important;
  }
  .pr-px-lg-115 {
    padding-right: 115px !important;
  }
  .pb-px-lg-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-lg-115 {
    padding-top: 115px !important;
  }
  .px-px-lg-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-lg-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-lg-115 {
    margin: 115px !important;
  }
  .ml-px-lg-115 {
    margin-left: 115px !important;
  }
  .mr-px-lg-115 {
    margin-right: 115px !important;
  }
  .mb-px-lg-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-lg-115 {
    margin-top: 115px !important;
  }
  .mx-px-lg-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-lg-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-lg-120 {
    padding: 120px !important;
  }
  .pl-px-lg-120 {
    padding-left: 120px !important;
  }
  .pr-px-lg-120 {
    padding-right: 120px !important;
  }
  .pb-px-lg-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-lg-120 {
    padding-top: 120px !important;
  }
  .px-px-lg-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-lg-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-lg-120 {
    margin: 120px !important;
  }
  .ml-px-lg-120 {
    margin-left: 120px !important;
  }
  .mr-px-lg-120 {
    margin-right: 120px !important;
  }
  .mb-px-lg-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-lg-120 {
    margin-top: 120px !important;
  }
  .mx-px-lg-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-lg-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-lg-125 {
    padding: 125px !important;
  }
  .pl-px-lg-125 {
    padding-left: 125px !important;
  }
  .pr-px-lg-125 {
    padding-right: 125px !important;
  }
  .pb-px-lg-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-lg-125 {
    padding-top: 125px !important;
  }
  .px-px-lg-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-lg-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-lg-125 {
    margin: 125px !important;
  }
  .ml-px-lg-125 {
    margin-left: 125px !important;
  }
  .mr-px-lg-125 {
    margin-right: 125px !important;
  }
  .mb-px-lg-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-lg-125 {
    margin-top: 125px !important;
  }
  .mx-px-lg-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-lg-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-lg-130 {
    padding: 130px !important;
  }
  .pl-px-lg-130 {
    padding-left: 130px !important;
  }
  .pr-px-lg-130 {
    padding-right: 130px !important;
  }
  .pb-px-lg-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-lg-130 {
    padding-top: 130px !important;
  }
  .px-px-lg-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-lg-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-lg-130 {
    margin: 130px !important;
  }
  .ml-px-lg-130 {
    margin-left: 130px !important;
  }
  .mr-px-lg-130 {
    margin-right: 130px !important;
  }
  .mb-px-lg-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-lg-130 {
    margin-top: 130px !important;
  }
  .mx-px-lg-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-lg-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-lg-135 {
    padding: 135px !important;
  }
  .pl-px-lg-135 {
    padding-left: 135px !important;
  }
  .pr-px-lg-135 {
    padding-right: 135px !important;
  }
  .pb-px-lg-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-lg-135 {
    padding-top: 135px !important;
  }
  .px-px-lg-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-lg-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-lg-135 {
    margin: 135px !important;
  }
  .ml-px-lg-135 {
    margin-left: 135px !important;
  }
  .mr-px-lg-135 {
    margin-right: 135px !important;
  }
  .mb-px-lg-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-lg-135 {
    margin-top: 135px !important;
  }
  .mx-px-lg-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-lg-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-lg-140 {
    padding: 140px !important;
  }
  .pl-px-lg-140 {
    padding-left: 140px !important;
  }
  .pr-px-lg-140 {
    padding-right: 140px !important;
  }
  .pb-px-lg-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-lg-140 {
    padding-top: 140px !important;
  }
  .px-px-lg-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-lg-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-lg-140 {
    margin: 140px !important;
  }
  .ml-px-lg-140 {
    margin-left: 140px !important;
  }
  .mr-px-lg-140 {
    margin-right: 140px !important;
  }
  .mb-px-lg-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-lg-140 {
    margin-top: 140px !important;
  }
  .mx-px-lg-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-lg-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-lg-145 {
    padding: 145px !important;
  }
  .pl-px-lg-145 {
    padding-left: 145px !important;
  }
  .pr-px-lg-145 {
    padding-right: 145px !important;
  }
  .pb-px-lg-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-lg-145 {
    padding-top: 145px !important;
  }
  .px-px-lg-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-lg-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-lg-145 {
    margin: 145px !important;
  }
  .ml-px-lg-145 {
    margin-left: 145px !important;
  }
  .mr-px-lg-145 {
    margin-right: 145px !important;
  }
  .mb-px-lg-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-lg-145 {
    margin-top: 145px !important;
  }
  .mx-px-lg-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-lg-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-lg-150 {
    padding: 150px !important;
  }
  .pl-px-lg-150 {
    padding-left: 150px !important;
  }
  .pr-px-lg-150 {
    padding-right: 150px !important;
  }
  .pb-px-lg-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-lg-150 {
    padding-top: 150px !important;
  }
  .px-px-lg-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-lg-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-lg-150 {
    margin: 150px !important;
  }
  .ml-px-lg-150 {
    margin-left: 150px !important;
  }
  .mr-px-lg-150 {
    margin-right: 150px !important;
  }
  .mb-px-lg-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-lg-150 {
    margin-top: 150px !important;
  }
  .mx-px-lg-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-lg-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-lg-155 {
    padding: 155px !important;
  }
  .pl-px-lg-155 {
    padding-left: 155px !important;
  }
  .pr-px-lg-155 {
    padding-right: 155px !important;
  }
  .pb-px-lg-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-lg-155 {
    padding-top: 155px !important;
  }
  .px-px-lg-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-lg-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-lg-155 {
    margin: 155px !important;
  }
  .ml-px-lg-155 {
    margin-left: 155px !important;
  }
  .mr-px-lg-155 {
    margin-right: 155px !important;
  }
  .mb-px-lg-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-lg-155 {
    margin-top: 155px !important;
  }
  .mx-px-lg-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-lg-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-lg-160 {
    padding: 160px !important;
  }
  .pl-px-lg-160 {
    padding-left: 160px !important;
  }
  .pr-px-lg-160 {
    padding-right: 160px !important;
  }
  .pb-px-lg-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-lg-160 {
    padding-top: 160px !important;
  }
  .px-px-lg-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-lg-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-lg-160 {
    margin: 160px !important;
  }
  .ml-px-lg-160 {
    margin-left: 160px !important;
  }
  .mr-px-lg-160 {
    margin-right: 160px !important;
  }
  .mb-px-lg-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-lg-160 {
    margin-top: 160px !important;
  }
  .mx-px-lg-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-lg-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-lg-165 {
    padding: 165px !important;
  }
  .pl-px-lg-165 {
    padding-left: 165px !important;
  }
  .pr-px-lg-165 {
    padding-right: 165px !important;
  }
  .pb-px-lg-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-lg-165 {
    padding-top: 165px !important;
  }
  .px-px-lg-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-lg-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-lg-165 {
    margin: 165px !important;
  }
  .ml-px-lg-165 {
    margin-left: 165px !important;
  }
  .mr-px-lg-165 {
    margin-right: 165px !important;
  }
  .mb-px-lg-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-lg-165 {
    margin-top: 165px !important;
  }
  .mx-px-lg-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-lg-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-lg-170 {
    padding: 170px !important;
  }
  .pl-px-lg-170 {
    padding-left: 170px !important;
  }
  .pr-px-lg-170 {
    padding-right: 170px !important;
  }
  .pb-px-lg-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-lg-170 {
    padding-top: 170px !important;
  }
  .px-px-lg-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-lg-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-lg-170 {
    margin: 170px !important;
  }
  .ml-px-lg-170 {
    margin-left: 170px !important;
  }
  .mr-px-lg-170 {
    margin-right: 170px !important;
  }
  .mb-px-lg-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-lg-170 {
    margin-top: 170px !important;
  }
  .mx-px-lg-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-lg-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-lg-175 {
    padding: 175px !important;
  }
  .pl-px-lg-175 {
    padding-left: 175px !important;
  }
  .pr-px-lg-175 {
    padding-right: 175px !important;
  }
  .pb-px-lg-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-lg-175 {
    padding-top: 175px !important;
  }
  .px-px-lg-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-lg-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-lg-175 {
    margin: 175px !important;
  }
  .ml-px-lg-175 {
    margin-left: 175px !important;
  }
  .mr-px-lg-175 {
    margin-right: 175px !important;
  }
  .mb-px-lg-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-lg-175 {
    margin-top: 175px !important;
  }
  .mx-px-lg-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-lg-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-lg-180 {
    padding: 180px !important;
  }
  .pl-px-lg-180 {
    padding-left: 180px !important;
  }
  .pr-px-lg-180 {
    padding-right: 180px !important;
  }
  .pb-px-lg-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-lg-180 {
    padding-top: 180px !important;
  }
  .px-px-lg-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-lg-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-lg-180 {
    margin: 180px !important;
  }
  .ml-px-lg-180 {
    margin-left: 180px !important;
  }
  .mr-px-lg-180 {
    margin-right: 180px !important;
  }
  .mb-px-lg-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-lg-180 {
    margin-top: 180px !important;
  }
  .mx-px-lg-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-lg-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-lg-185 {
    padding: 185px !important;
  }
  .pl-px-lg-185 {
    padding-left: 185px !important;
  }
  .pr-px-lg-185 {
    padding-right: 185px !important;
  }
  .pb-px-lg-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-lg-185 {
    padding-top: 185px !important;
  }
  .px-px-lg-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-lg-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-lg-185 {
    margin: 185px !important;
  }
  .ml-px-lg-185 {
    margin-left: 185px !important;
  }
  .mr-px-lg-185 {
    margin-right: 185px !important;
  }
  .mb-px-lg-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-lg-185 {
    margin-top: 185px !important;
  }
  .mx-px-lg-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-lg-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-lg-190 {
    padding: 190px !important;
  }
  .pl-px-lg-190 {
    padding-left: 190px !important;
  }
  .pr-px-lg-190 {
    padding-right: 190px !important;
  }
  .pb-px-lg-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-lg-190 {
    padding-top: 190px !important;
  }
  .px-px-lg-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-lg-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-lg-190 {
    margin: 190px !important;
  }
  .ml-px-lg-190 {
    margin-left: 190px !important;
  }
  .mr-px-lg-190 {
    margin-right: 190px !important;
  }
  .mb-px-lg-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-lg-190 {
    margin-top: 190px !important;
  }
  .mx-px-lg-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-lg-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-lg-195 {
    padding: 195px !important;
  }
  .pl-px-lg-195 {
    padding-left: 195px !important;
  }
  .pr-px-lg-195 {
    padding-right: 195px !important;
  }
  .pb-px-lg-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-lg-195 {
    padding-top: 195px !important;
  }
  .px-px-lg-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-lg-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-lg-195 {
    margin: 195px !important;
  }
  .ml-px-lg-195 {
    margin-left: 195px !important;
  }
  .mr-px-lg-195 {
    margin-right: 195px !important;
  }
  .mb-px-lg-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-lg-195 {
    margin-top: 195px !important;
  }
  .mx-px-lg-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-lg-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-lg-200 {
    padding: 200px !important;
  }
  .pl-px-lg-200 {
    padding-left: 200px !important;
  }
  .pr-px-lg-200 {
    padding-right: 200px !important;
  }
  .pb-px-lg-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-lg-200 {
    padding-top: 200px !important;
  }
  .px-px-lg-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-lg-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-lg-200 {
    margin: 200px !important;
  }
  .ml-px-lg-200 {
    margin-left: 200px !important;
  }
  .mr-px-lg-200 {
    margin-right: 200px !important;
  }
  .mb-px-lg-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-lg-200 {
    margin-top: 200px !important;
  }
  .mx-px-lg-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-lg-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .p-px-xl-5 {
    padding: 5px !important;
  }
  .pl-px-xl-5 {
    padding-left: 5px !important;
  }
  .pr-px-xl-5 {
    padding-right: 5px !important;
  }
  .pb-px-xl-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-xl-5 {
    padding-top: 5px !important;
  }
  .px-px-xl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-xl-5 {
    margin: 5px !important;
  }
  .ml-px-xl-5 {
    margin-left: 5px !important;
  }
  .mr-px-xl-5 {
    margin-right: 5px !important;
  }
  .mb-px-xl-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-xl-5 {
    margin-top: 5px !important;
  }
  .mx-px-xl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-xl-10 {
    padding: 10px !important;
  }
  .pl-px-xl-10 {
    padding-left: 10px !important;
  }
  .pr-px-xl-10 {
    padding-right: 10px !important;
  }
  .pb-px-xl-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-xl-10 {
    padding-top: 10px !important;
  }
  .px-px-xl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-xl-10 {
    margin: 10px !important;
  }
  .ml-px-xl-10 {
    margin-left: 10px !important;
  }
  .mr-px-xl-10 {
    margin-right: 10px !important;
  }
  .mb-px-xl-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-xl-10 {
    margin-top: 10px !important;
  }
  .mx-px-xl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-xl-15 {
    padding: 15px !important;
  }
  .pl-px-xl-15 {
    padding-left: 15px !important;
  }
  .pr-px-xl-15 {
    padding-right: 15px !important;
  }
  .pb-px-xl-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-xl-15 {
    padding-top: 15px !important;
  }
  .px-px-xl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-xl-15 {
    margin: 15px !important;
  }
  .ml-px-xl-15 {
    margin-left: 15px !important;
  }
  .mr-px-xl-15 {
    margin-right: 15px !important;
  }
  .mb-px-xl-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-xl-15 {
    margin-top: 15px !important;
  }
  .mx-px-xl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-xl-20 {
    padding: 20px !important;
  }
  .pl-px-xl-20 {
    padding-left: 20px !important;
  }
  .pr-px-xl-20 {
    padding-right: 20px !important;
  }
  .pb-px-xl-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-xl-20 {
    padding-top: 20px !important;
  }
  .px-px-xl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-xl-20 {
    margin: 20px !important;
  }
  .ml-px-xl-20 {
    margin-left: 20px !important;
  }
  .mr-px-xl-20 {
    margin-right: 20px !important;
  }
  .mb-px-xl-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-xl-20 {
    margin-top: 20px !important;
  }
  .mx-px-xl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-xl-25 {
    padding: 25px !important;
  }
  .pl-px-xl-25 {
    padding-left: 25px !important;
  }
  .pr-px-xl-25 {
    padding-right: 25px !important;
  }
  .pb-px-xl-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-xl-25 {
    padding-top: 25px !important;
  }
  .px-px-xl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-xl-25 {
    margin: 25px !important;
  }
  .ml-px-xl-25 {
    margin-left: 25px !important;
  }
  .mr-px-xl-25 {
    margin-right: 25px !important;
  }
  .mb-px-xl-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-xl-25 {
    margin-top: 25px !important;
  }
  .mx-px-xl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-xl-30 {
    padding: 30px !important;
  }
  .pl-px-xl-30 {
    padding-left: 30px !important;
  }
  .pr-px-xl-30 {
    padding-right: 30px !important;
  }
  .pb-px-xl-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-xl-30 {
    padding-top: 30px !important;
  }
  .px-px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-xl-30 {
    margin: 30px !important;
  }
  .ml-px-xl-30 {
    margin-left: 30px !important;
  }
  .mr-px-xl-30 {
    margin-right: 30px !important;
  }
  .mb-px-xl-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-xl-30 {
    margin-top: 30px !important;
  }
  .mx-px-xl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-xl-35 {
    padding: 35px !important;
  }
  .pl-px-xl-35 {
    padding-left: 35px !important;
  }
  .pr-px-xl-35 {
    padding-right: 35px !important;
  }
  .pb-px-xl-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-xl-35 {
    padding-top: 35px !important;
  }
  .px-px-xl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-xl-35 {
    margin: 35px !important;
  }
  .ml-px-xl-35 {
    margin-left: 35px !important;
  }
  .mr-px-xl-35 {
    margin-right: 35px !important;
  }
  .mb-px-xl-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-xl-35 {
    margin-top: 35px !important;
  }
  .mx-px-xl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-xl-40 {
    padding: 40px !important;
  }
  .pl-px-xl-40 {
    padding-left: 40px !important;
  }
  .pr-px-xl-40 {
    padding-right: 40px !important;
  }
  .pb-px-xl-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-xl-40 {
    padding-top: 40px !important;
  }
  .px-px-xl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-xl-40 {
    margin: 40px !important;
  }
  .ml-px-xl-40 {
    margin-left: 40px !important;
  }
  .mr-px-xl-40 {
    margin-right: 40px !important;
  }
  .mb-px-xl-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-xl-40 {
    margin-top: 40px !important;
  }
  .mx-px-xl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-xl-45 {
    padding: 45px !important;
  }
  .pl-px-xl-45 {
    padding-left: 45px !important;
  }
  .pr-px-xl-45 {
    padding-right: 45px !important;
  }
  .pb-px-xl-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-xl-45 {
    padding-top: 45px !important;
  }
  .px-px-xl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-xl-45 {
    margin: 45px !important;
  }
  .ml-px-xl-45 {
    margin-left: 45px !important;
  }
  .mr-px-xl-45 {
    margin-right: 45px !important;
  }
  .mb-px-xl-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-xl-45 {
    margin-top: 45px !important;
  }
  .mx-px-xl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-xl-50 {
    padding: 50px !important;
  }
  .pl-px-xl-50 {
    padding-left: 50px !important;
  }
  .pr-px-xl-50 {
    padding-right: 50px !important;
  }
  .pb-px-xl-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-xl-50 {
    padding-top: 50px !important;
  }
  .px-px-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-xl-50 {
    margin: 50px !important;
  }
  .ml-px-xl-50 {
    margin-left: 50px !important;
  }
  .mr-px-xl-50 {
    margin-right: 50px !important;
  }
  .mb-px-xl-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-xl-50 {
    margin-top: 50px !important;
  }
  .mx-px-xl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-xl-55 {
    padding: 55px !important;
  }
  .pl-px-xl-55 {
    padding-left: 55px !important;
  }
  .pr-px-xl-55 {
    padding-right: 55px !important;
  }
  .pb-px-xl-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-xl-55 {
    padding-top: 55px !important;
  }
  .px-px-xl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-xl-55 {
    margin: 55px !important;
  }
  .ml-px-xl-55 {
    margin-left: 55px !important;
  }
  .mr-px-xl-55 {
    margin-right: 55px !important;
  }
  .mb-px-xl-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-xl-55 {
    margin-top: 55px !important;
  }
  .mx-px-xl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-xl-60 {
    padding: 60px !important;
  }
  .pl-px-xl-60 {
    padding-left: 60px !important;
  }
  .pr-px-xl-60 {
    padding-right: 60px !important;
  }
  .pb-px-xl-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-xl-60 {
    padding-top: 60px !important;
  }
  .px-px-xl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-xl-60 {
    margin: 60px !important;
  }
  .ml-px-xl-60 {
    margin-left: 60px !important;
  }
  .mr-px-xl-60 {
    margin-right: 60px !important;
  }
  .mb-px-xl-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-xl-60 {
    margin-top: 60px !important;
  }
  .mx-px-xl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-xl-65 {
    padding: 65px !important;
  }
  .pl-px-xl-65 {
    padding-left: 65px !important;
  }
  .pr-px-xl-65 {
    padding-right: 65px !important;
  }
  .pb-px-xl-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-xl-65 {
    padding-top: 65px !important;
  }
  .px-px-xl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-xl-65 {
    margin: 65px !important;
  }
  .ml-px-xl-65 {
    margin-left: 65px !important;
  }
  .mr-px-xl-65 {
    margin-right: 65px !important;
  }
  .mb-px-xl-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-xl-65 {
    margin-top: 65px !important;
  }
  .mx-px-xl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-xl-70 {
    padding: 70px !important;
  }
  .pl-px-xl-70 {
    padding-left: 70px !important;
  }
  .pr-px-xl-70 {
    padding-right: 70px !important;
  }
  .pb-px-xl-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-xl-70 {
    padding-top: 70px !important;
  }
  .px-px-xl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-xl-70 {
    margin: 70px !important;
  }
  .ml-px-xl-70 {
    margin-left: 70px !important;
  }
  .mr-px-xl-70 {
    margin-right: 70px !important;
  }
  .mb-px-xl-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-xl-70 {
    margin-top: 70px !important;
  }
  .mx-px-xl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-xl-75 {
    padding: 75px !important;
  }
  .pl-px-xl-75 {
    padding-left: 75px !important;
  }
  .pr-px-xl-75 {
    padding-right: 75px !important;
  }
  .pb-px-xl-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-xl-75 {
    padding-top: 75px !important;
  }
  .px-px-xl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-xl-75 {
    margin: 75px !important;
  }
  .ml-px-xl-75 {
    margin-left: 75px !important;
  }
  .mr-px-xl-75 {
    margin-right: 75px !important;
  }
  .mb-px-xl-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-xl-75 {
    margin-top: 75px !important;
  }
  .mx-px-xl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-xl-80 {
    padding: 80px !important;
  }
  .pl-px-xl-80 {
    padding-left: 80px !important;
  }
  .pr-px-xl-80 {
    padding-right: 80px !important;
  }
  .pb-px-xl-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-xl-80 {
    padding-top: 80px !important;
  }
  .px-px-xl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-xl-80 {
    margin: 80px !important;
  }
  .ml-px-xl-80 {
    margin-left: 80px !important;
  }
  .mr-px-xl-80 {
    margin-right: 80px !important;
  }
  .mb-px-xl-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-xl-80 {
    margin-top: 80px !important;
  }
  .mx-px-xl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-xl-85 {
    padding: 85px !important;
  }
  .pl-px-xl-85 {
    padding-left: 85px !important;
  }
  .pr-px-xl-85 {
    padding-right: 85px !important;
  }
  .pb-px-xl-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-xl-85 {
    padding-top: 85px !important;
  }
  .px-px-xl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-xl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-xl-85 {
    margin: 85px !important;
  }
  .ml-px-xl-85 {
    margin-left: 85px !important;
  }
  .mr-px-xl-85 {
    margin-right: 85px !important;
  }
  .mb-px-xl-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-xl-85 {
    margin-top: 85px !important;
  }
  .mx-px-xl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-xl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-xl-90 {
    padding: 90px !important;
  }
  .pl-px-xl-90 {
    padding-left: 90px !important;
  }
  .pr-px-xl-90 {
    padding-right: 90px !important;
  }
  .pb-px-xl-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-xl-90 {
    padding-top: 90px !important;
  }
  .px-px-xl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-xl-90 {
    margin: 90px !important;
  }
  .ml-px-xl-90 {
    margin-left: 90px !important;
  }
  .mr-px-xl-90 {
    margin-right: 90px !important;
  }
  .mb-px-xl-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-xl-90 {
    margin-top: 90px !important;
  }
  .mx-px-xl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-xl-95 {
    padding: 95px !important;
  }
  .pl-px-xl-95 {
    padding-left: 95px !important;
  }
  .pr-px-xl-95 {
    padding-right: 95px !important;
  }
  .pb-px-xl-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-xl-95 {
    padding-top: 95px !important;
  }
  .px-px-xl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-xl-95 {
    margin: 95px !important;
  }
  .ml-px-xl-95 {
    margin-left: 95px !important;
  }
  .mr-px-xl-95 {
    margin-right: 95px !important;
  }
  .mb-px-xl-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-xl-95 {
    margin-top: 95px !important;
  }
  .mx-px-xl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-xl-100 {
    padding: 100px !important;
  }
  .pl-px-xl-100 {
    padding-left: 100px !important;
  }
  .pr-px-xl-100 {
    padding-right: 100px !important;
  }
  .pb-px-xl-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-xl-100 {
    padding-top: 100px !important;
  }
  .px-px-xl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-xl-100 {
    margin: 100px !important;
  }
  .ml-px-xl-100 {
    margin-left: 100px !important;
  }
  .mr-px-xl-100 {
    margin-right: 100px !important;
  }
  .mb-px-xl-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-xl-100 {
    margin-top: 100px !important;
  }
  .mx-px-xl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-xl-105 {
    padding: 105px !important;
  }
  .pl-px-xl-105 {
    padding-left: 105px !important;
  }
  .pr-px-xl-105 {
    padding-right: 105px !important;
  }
  .pb-px-xl-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-xl-105 {
    padding-top: 105px !important;
  }
  .px-px-xl-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-xl-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-xl-105 {
    margin: 105px !important;
  }
  .ml-px-xl-105 {
    margin-left: 105px !important;
  }
  .mr-px-xl-105 {
    margin-right: 105px !important;
  }
  .mb-px-xl-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-xl-105 {
    margin-top: 105px !important;
  }
  .mx-px-xl-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-xl-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-xl-110 {
    padding: 110px !important;
  }
  .pl-px-xl-110 {
    padding-left: 110px !important;
  }
  .pr-px-xl-110 {
    padding-right: 110px !important;
  }
  .pb-px-xl-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-xl-110 {
    padding-top: 110px !important;
  }
  .px-px-xl-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-xl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-xl-110 {
    margin: 110px !important;
  }
  .ml-px-xl-110 {
    margin-left: 110px !important;
  }
  .mr-px-xl-110 {
    margin-right: 110px !important;
  }
  .mb-px-xl-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-xl-110 {
    margin-top: 110px !important;
  }
  .mx-px-xl-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-xl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-xl-115 {
    padding: 115px !important;
  }
  .pl-px-xl-115 {
    padding-left: 115px !important;
  }
  .pr-px-xl-115 {
    padding-right: 115px !important;
  }
  .pb-px-xl-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-xl-115 {
    padding-top: 115px !important;
  }
  .px-px-xl-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-xl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-xl-115 {
    margin: 115px !important;
  }
  .ml-px-xl-115 {
    margin-left: 115px !important;
  }
  .mr-px-xl-115 {
    margin-right: 115px !important;
  }
  .mb-px-xl-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-xl-115 {
    margin-top: 115px !important;
  }
  .mx-px-xl-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-xl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-xl-120 {
    padding: 120px !important;
  }
  .pl-px-xl-120 {
    padding-left: 120px !important;
  }
  .pr-px-xl-120 {
    padding-right: 120px !important;
  }
  .pb-px-xl-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-xl-120 {
    padding-top: 120px !important;
  }
  .px-px-xl-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-xl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-xl-120 {
    margin: 120px !important;
  }
  .ml-px-xl-120 {
    margin-left: 120px !important;
  }
  .mr-px-xl-120 {
    margin-right: 120px !important;
  }
  .mb-px-xl-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-xl-120 {
    margin-top: 120px !important;
  }
  .mx-px-xl-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-xl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-xl-125 {
    padding: 125px !important;
  }
  .pl-px-xl-125 {
    padding-left: 125px !important;
  }
  .pr-px-xl-125 {
    padding-right: 125px !important;
  }
  .pb-px-xl-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-xl-125 {
    padding-top: 125px !important;
  }
  .px-px-xl-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-xl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-xl-125 {
    margin: 125px !important;
  }
  .ml-px-xl-125 {
    margin-left: 125px !important;
  }
  .mr-px-xl-125 {
    margin-right: 125px !important;
  }
  .mb-px-xl-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-xl-125 {
    margin-top: 125px !important;
  }
  .mx-px-xl-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-xl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-xl-130 {
    padding: 130px !important;
  }
  .pl-px-xl-130 {
    padding-left: 130px !important;
  }
  .pr-px-xl-130 {
    padding-right: 130px !important;
  }
  .pb-px-xl-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-xl-130 {
    padding-top: 130px !important;
  }
  .px-px-xl-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-xl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-xl-130 {
    margin: 130px !important;
  }
  .ml-px-xl-130 {
    margin-left: 130px !important;
  }
  .mr-px-xl-130 {
    margin-right: 130px !important;
  }
  .mb-px-xl-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-xl-130 {
    margin-top: 130px !important;
  }
  .mx-px-xl-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-xl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-xl-135 {
    padding: 135px !important;
  }
  .pl-px-xl-135 {
    padding-left: 135px !important;
  }
  .pr-px-xl-135 {
    padding-right: 135px !important;
  }
  .pb-px-xl-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-xl-135 {
    padding-top: 135px !important;
  }
  .px-px-xl-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-xl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-xl-135 {
    margin: 135px !important;
  }
  .ml-px-xl-135 {
    margin-left: 135px !important;
  }
  .mr-px-xl-135 {
    margin-right: 135px !important;
  }
  .mb-px-xl-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-xl-135 {
    margin-top: 135px !important;
  }
  .mx-px-xl-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-xl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-xl-140 {
    padding: 140px !important;
  }
  .pl-px-xl-140 {
    padding-left: 140px !important;
  }
  .pr-px-xl-140 {
    padding-right: 140px !important;
  }
  .pb-px-xl-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-xl-140 {
    padding-top: 140px !important;
  }
  .px-px-xl-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-xl-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-xl-140 {
    margin: 140px !important;
  }
  .ml-px-xl-140 {
    margin-left: 140px !important;
  }
  .mr-px-xl-140 {
    margin-right: 140px !important;
  }
  .mb-px-xl-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-xl-140 {
    margin-top: 140px !important;
  }
  .mx-px-xl-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-xl-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-xl-145 {
    padding: 145px !important;
  }
  .pl-px-xl-145 {
    padding-left: 145px !important;
  }
  .pr-px-xl-145 {
    padding-right: 145px !important;
  }
  .pb-px-xl-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-xl-145 {
    padding-top: 145px !important;
  }
  .px-px-xl-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-xl-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-xl-145 {
    margin: 145px !important;
  }
  .ml-px-xl-145 {
    margin-left: 145px !important;
  }
  .mr-px-xl-145 {
    margin-right: 145px !important;
  }
  .mb-px-xl-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-xl-145 {
    margin-top: 145px !important;
  }
  .mx-px-xl-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-xl-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-xl-150 {
    padding: 150px !important;
  }
  .pl-px-xl-150 {
    padding-left: 150px !important;
  }
  .pr-px-xl-150 {
    padding-right: 150px !important;
  }
  .pb-px-xl-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-xl-150 {
    padding-top: 150px !important;
  }
  .px-px-xl-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-xl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-xl-150 {
    margin: 150px !important;
  }
  .ml-px-xl-150 {
    margin-left: 150px !important;
  }
  .mr-px-xl-150 {
    margin-right: 150px !important;
  }
  .mb-px-xl-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-xl-150 {
    margin-top: 150px !important;
  }
  .mx-px-xl-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-xl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-xl-155 {
    padding: 155px !important;
  }
  .pl-px-xl-155 {
    padding-left: 155px !important;
  }
  .pr-px-xl-155 {
    padding-right: 155px !important;
  }
  .pb-px-xl-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-xl-155 {
    padding-top: 155px !important;
  }
  .px-px-xl-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-xl-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-xl-155 {
    margin: 155px !important;
  }
  .ml-px-xl-155 {
    margin-left: 155px !important;
  }
  .mr-px-xl-155 {
    margin-right: 155px !important;
  }
  .mb-px-xl-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-xl-155 {
    margin-top: 155px !important;
  }
  .mx-px-xl-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-xl-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-xl-160 {
    padding: 160px !important;
  }
  .pl-px-xl-160 {
    padding-left: 160px !important;
  }
  .pr-px-xl-160 {
    padding-right: 160px !important;
  }
  .pb-px-xl-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-xl-160 {
    padding-top: 160px !important;
  }
  .px-px-xl-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-xl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-xl-160 {
    margin: 160px !important;
  }
  .ml-px-xl-160 {
    margin-left: 160px !important;
  }
  .mr-px-xl-160 {
    margin-right: 160px !important;
  }
  .mb-px-xl-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-xl-160 {
    margin-top: 160px !important;
  }
  .mx-px-xl-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-xl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-xl-165 {
    padding: 165px !important;
  }
  .pl-px-xl-165 {
    padding-left: 165px !important;
  }
  .pr-px-xl-165 {
    padding-right: 165px !important;
  }
  .pb-px-xl-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-xl-165 {
    padding-top: 165px !important;
  }
  .px-px-xl-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-xl-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-xl-165 {
    margin: 165px !important;
  }
  .ml-px-xl-165 {
    margin-left: 165px !important;
  }
  .mr-px-xl-165 {
    margin-right: 165px !important;
  }
  .mb-px-xl-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-xl-165 {
    margin-top: 165px !important;
  }
  .mx-px-xl-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-xl-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-xl-170 {
    padding: 170px !important;
  }
  .pl-px-xl-170 {
    padding-left: 170px !important;
  }
  .pr-px-xl-170 {
    padding-right: 170px !important;
  }
  .pb-px-xl-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-xl-170 {
    padding-top: 170px !important;
  }
  .px-px-xl-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-xl-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-xl-170 {
    margin: 170px !important;
  }
  .ml-px-xl-170 {
    margin-left: 170px !important;
  }
  .mr-px-xl-170 {
    margin-right: 170px !important;
  }
  .mb-px-xl-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-xl-170 {
    margin-top: 170px !important;
  }
  .mx-px-xl-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-xl-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-xl-175 {
    padding: 175px !important;
  }
  .pl-px-xl-175 {
    padding-left: 175px !important;
  }
  .pr-px-xl-175 {
    padding-right: 175px !important;
  }
  .pb-px-xl-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-xl-175 {
    padding-top: 175px !important;
  }
  .px-px-xl-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-xl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-xl-175 {
    margin: 175px !important;
  }
  .ml-px-xl-175 {
    margin-left: 175px !important;
  }
  .mr-px-xl-175 {
    margin-right: 175px !important;
  }
  .mb-px-xl-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-xl-175 {
    margin-top: 175px !important;
  }
  .mx-px-xl-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-xl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-xl-180 {
    padding: 180px !important;
  }
  .pl-px-xl-180 {
    padding-left: 180px !important;
  }
  .pr-px-xl-180 {
    padding-right: 180px !important;
  }
  .pb-px-xl-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-xl-180 {
    padding-top: 180px !important;
  }
  .px-px-xl-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-xl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-xl-180 {
    margin: 180px !important;
  }
  .ml-px-xl-180 {
    margin-left: 180px !important;
  }
  .mr-px-xl-180 {
    margin-right: 180px !important;
  }
  .mb-px-xl-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-xl-180 {
    margin-top: 180px !important;
  }
  .mx-px-xl-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-xl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-xl-185 {
    padding: 185px !important;
  }
  .pl-px-xl-185 {
    padding-left: 185px !important;
  }
  .pr-px-xl-185 {
    padding-right: 185px !important;
  }
  .pb-px-xl-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-xl-185 {
    padding-top: 185px !important;
  }
  .px-px-xl-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-xl-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-xl-185 {
    margin: 185px !important;
  }
  .ml-px-xl-185 {
    margin-left: 185px !important;
  }
  .mr-px-xl-185 {
    margin-right: 185px !important;
  }
  .mb-px-xl-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-xl-185 {
    margin-top: 185px !important;
  }
  .mx-px-xl-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-xl-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-xl-190 {
    padding: 190px !important;
  }
  .pl-px-xl-190 {
    padding-left: 190px !important;
  }
  .pr-px-xl-190 {
    padding-right: 190px !important;
  }
  .pb-px-xl-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-xl-190 {
    padding-top: 190px !important;
  }
  .px-px-xl-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-xl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-xl-190 {
    margin: 190px !important;
  }
  .ml-px-xl-190 {
    margin-left: 190px !important;
  }
  .mr-px-xl-190 {
    margin-right: 190px !important;
  }
  .mb-px-xl-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-xl-190 {
    margin-top: 190px !important;
  }
  .mx-px-xl-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-xl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-xl-195 {
    padding: 195px !important;
  }
  .pl-px-xl-195 {
    padding-left: 195px !important;
  }
  .pr-px-xl-195 {
    padding-right: 195px !important;
  }
  .pb-px-xl-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-xl-195 {
    padding-top: 195px !important;
  }
  .px-px-xl-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-xl-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-xl-195 {
    margin: 195px !important;
  }
  .ml-px-xl-195 {
    margin-left: 195px !important;
  }
  .mr-px-xl-195 {
    margin-right: 195px !important;
  }
  .mb-px-xl-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-xl-195 {
    margin-top: 195px !important;
  }
  .mx-px-xl-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-xl-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-xl-200 {
    padding: 200px !important;
  }
  .pl-px-xl-200 {
    padding-left: 200px !important;
  }
  .pr-px-xl-200 {
    padding-right: 200px !important;
  }
  .pb-px-xl-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-xl-200 {
    padding-top: 200px !important;
  }
  .px-px-xl-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-xl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-xl-200 {
    margin: 200px !important;
  }
  .ml-px-xl-200 {
    margin-left: 200px !important;
  }
  .mr-px-xl-200 {
    margin-right: 200px !important;
  }
  .mb-px-xl-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-xl-200 {
    margin-top: 200px !important;
  }
  .mx-px-xl-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-xl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .p-px-xxl-5 {
    padding: 5px !important;
  }
  .pl-px-xxl-5 {
    padding-left: 5px !important;
  }
  .pr-px-xxl-5 {
    padding-right: 5px !important;
  }
  .pb-px-xxl-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-xxl-5 {
    padding-top: 5px !important;
  }
  .px-px-xxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-xxl-5 {
    margin: 5px !important;
  }
  .ml-px-xxl-5 {
    margin-left: 5px !important;
  }
  .mr-px-xxl-5 {
    margin-right: 5px !important;
  }
  .mb-px-xxl-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-xxl-5 {
    margin-top: 5px !important;
  }
  .mx-px-xxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-xxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-xxl-10 {
    padding: 10px !important;
  }
  .pl-px-xxl-10 {
    padding-left: 10px !important;
  }
  .pr-px-xxl-10 {
    padding-right: 10px !important;
  }
  .pb-px-xxl-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-xxl-10 {
    padding-top: 10px !important;
  }
  .px-px-xxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-xxl-10 {
    margin: 10px !important;
  }
  .ml-px-xxl-10 {
    margin-left: 10px !important;
  }
  .mr-px-xxl-10 {
    margin-right: 10px !important;
  }
  .mb-px-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-xxl-10 {
    margin-top: 10px !important;
  }
  .mx-px-xxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-xxl-15 {
    padding: 15px !important;
  }
  .pl-px-xxl-15 {
    padding-left: 15px !important;
  }
  .pr-px-xxl-15 {
    padding-right: 15px !important;
  }
  .pb-px-xxl-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-xxl-15 {
    padding-top: 15px !important;
  }
  .px-px-xxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-xxl-15 {
    margin: 15px !important;
  }
  .ml-px-xxl-15 {
    margin-left: 15px !important;
  }
  .mr-px-xxl-15 {
    margin-right: 15px !important;
  }
  .mb-px-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-xxl-15 {
    margin-top: 15px !important;
  }
  .mx-px-xxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-xxl-20 {
    padding: 20px !important;
  }
  .pl-px-xxl-20 {
    padding-left: 20px !important;
  }
  .pr-px-xxl-20 {
    padding-right: 20px !important;
  }
  .pb-px-xxl-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-xxl-20 {
    padding-top: 20px !important;
  }
  .px-px-xxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-xxl-20 {
    margin: 20px !important;
  }
  .ml-px-xxl-20 {
    margin-left: 20px !important;
  }
  .mr-px-xxl-20 {
    margin-right: 20px !important;
  }
  .mb-px-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-xxl-20 {
    margin-top: 20px !important;
  }
  .mx-px-xxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-xxl-25 {
    padding: 25px !important;
  }
  .pl-px-xxl-25 {
    padding-left: 25px !important;
  }
  .pr-px-xxl-25 {
    padding-right: 25px !important;
  }
  .pb-px-xxl-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-xxl-25 {
    padding-top: 25px !important;
  }
  .px-px-xxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-xxl-25 {
    margin: 25px !important;
  }
  .ml-px-xxl-25 {
    margin-left: 25px !important;
  }
  .mr-px-xxl-25 {
    margin-right: 25px !important;
  }
  .mb-px-xxl-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-xxl-25 {
    margin-top: 25px !important;
  }
  .mx-px-xxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-xxl-30 {
    padding: 30px !important;
  }
  .pl-px-xxl-30 {
    padding-left: 30px !important;
  }
  .pr-px-xxl-30 {
    padding-right: 30px !important;
  }
  .pb-px-xxl-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-xxl-30 {
    padding-top: 30px !important;
  }
  .px-px-xxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-xxl-30 {
    margin: 30px !important;
  }
  .ml-px-xxl-30 {
    margin-left: 30px !important;
  }
  .mr-px-xxl-30 {
    margin-right: 30px !important;
  }
  .mb-px-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-xxl-30 {
    margin-top: 30px !important;
  }
  .mx-px-xxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-xxl-35 {
    padding: 35px !important;
  }
  .pl-px-xxl-35 {
    padding-left: 35px !important;
  }
  .pr-px-xxl-35 {
    padding-right: 35px !important;
  }
  .pb-px-xxl-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-xxl-35 {
    padding-top: 35px !important;
  }
  .px-px-xxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-xxl-35 {
    margin: 35px !important;
  }
  .ml-px-xxl-35 {
    margin-left: 35px !important;
  }
  .mr-px-xxl-35 {
    margin-right: 35px !important;
  }
  .mb-px-xxl-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-xxl-35 {
    margin-top: 35px !important;
  }
  .mx-px-xxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-xxl-40 {
    padding: 40px !important;
  }
  .pl-px-xxl-40 {
    padding-left: 40px !important;
  }
  .pr-px-xxl-40 {
    padding-right: 40px !important;
  }
  .pb-px-xxl-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-xxl-40 {
    padding-top: 40px !important;
  }
  .px-px-xxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-xxl-40 {
    margin: 40px !important;
  }
  .ml-px-xxl-40 {
    margin-left: 40px !important;
  }
  .mr-px-xxl-40 {
    margin-right: 40px !important;
  }
  .mb-px-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-xxl-40 {
    margin-top: 40px !important;
  }
  .mx-px-xxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-xxl-45 {
    padding: 45px !important;
  }
  .pl-px-xxl-45 {
    padding-left: 45px !important;
  }
  .pr-px-xxl-45 {
    padding-right: 45px !important;
  }
  .pb-px-xxl-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-xxl-45 {
    padding-top: 45px !important;
  }
  .px-px-xxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-xxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-xxl-45 {
    margin: 45px !important;
  }
  .ml-px-xxl-45 {
    margin-left: 45px !important;
  }
  .mr-px-xxl-45 {
    margin-right: 45px !important;
  }
  .mb-px-xxl-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-xxl-45 {
    margin-top: 45px !important;
  }
  .mx-px-xxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-xxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-xxl-50 {
    padding: 50px !important;
  }
  .pl-px-xxl-50 {
    padding-left: 50px !important;
  }
  .pr-px-xxl-50 {
    padding-right: 50px !important;
  }
  .pb-px-xxl-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-xxl-50 {
    padding-top: 50px !important;
  }
  .px-px-xxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-xxl-50 {
    margin: 50px !important;
  }
  .ml-px-xxl-50 {
    margin-left: 50px !important;
  }
  .mr-px-xxl-50 {
    margin-right: 50px !important;
  }
  .mb-px-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-xxl-50 {
    margin-top: 50px !important;
  }
  .mx-px-xxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-xxl-55 {
    padding: 55px !important;
  }
  .pl-px-xxl-55 {
    padding-left: 55px !important;
  }
  .pr-px-xxl-55 {
    padding-right: 55px !important;
  }
  .pb-px-xxl-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-xxl-55 {
    padding-top: 55px !important;
  }
  .px-px-xxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-xxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-xxl-55 {
    margin: 55px !important;
  }
  .ml-px-xxl-55 {
    margin-left: 55px !important;
  }
  .mr-px-xxl-55 {
    margin-right: 55px !important;
  }
  .mb-px-xxl-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-xxl-55 {
    margin-top: 55px !important;
  }
  .mx-px-xxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-xxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-xxl-60 {
    padding: 60px !important;
  }
  .pl-px-xxl-60 {
    padding-left: 60px !important;
  }
  .pr-px-xxl-60 {
    padding-right: 60px !important;
  }
  .pb-px-xxl-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-xxl-60 {
    padding-top: 60px !important;
  }
  .px-px-xxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-xxl-60 {
    margin: 60px !important;
  }
  .ml-px-xxl-60 {
    margin-left: 60px !important;
  }
  .mr-px-xxl-60 {
    margin-right: 60px !important;
  }
  .mb-px-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-xxl-60 {
    margin-top: 60px !important;
  }
  .mx-px-xxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-xxl-65 {
    padding: 65px !important;
  }
  .pl-px-xxl-65 {
    padding-left: 65px !important;
  }
  .pr-px-xxl-65 {
    padding-right: 65px !important;
  }
  .pb-px-xxl-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-xxl-65 {
    padding-top: 65px !important;
  }
  .px-px-xxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-xxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-xxl-65 {
    margin: 65px !important;
  }
  .ml-px-xxl-65 {
    margin-left: 65px !important;
  }
  .mr-px-xxl-65 {
    margin-right: 65px !important;
  }
  .mb-px-xxl-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-xxl-65 {
    margin-top: 65px !important;
  }
  .mx-px-xxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-xxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-xxl-70 {
    padding: 70px !important;
  }
  .pl-px-xxl-70 {
    padding-left: 70px !important;
  }
  .pr-px-xxl-70 {
    padding-right: 70px !important;
  }
  .pb-px-xxl-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-xxl-70 {
    padding-top: 70px !important;
  }
  .px-px-xxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-xxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-xxl-70 {
    margin: 70px !important;
  }
  .ml-px-xxl-70 {
    margin-left: 70px !important;
  }
  .mr-px-xxl-70 {
    margin-right: 70px !important;
  }
  .mb-px-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-xxl-70 {
    margin-top: 70px !important;
  }
  .mx-px-xxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-xxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-xxl-75 {
    padding: 75px !important;
  }
  .pl-px-xxl-75 {
    padding-left: 75px !important;
  }
  .pr-px-xxl-75 {
    padding-right: 75px !important;
  }
  .pb-px-xxl-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-xxl-75 {
    padding-top: 75px !important;
  }
  .px-px-xxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-xxl-75 {
    margin: 75px !important;
  }
  .ml-px-xxl-75 {
    margin-left: 75px !important;
  }
  .mr-px-xxl-75 {
    margin-right: 75px !important;
  }
  .mb-px-xxl-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-xxl-75 {
    margin-top: 75px !important;
  }
  .mx-px-xxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-xxl-80 {
    padding: 80px !important;
  }
  .pl-px-xxl-80 {
    padding-left: 80px !important;
  }
  .pr-px-xxl-80 {
    padding-right: 80px !important;
  }
  .pb-px-xxl-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-xxl-80 {
    padding-top: 80px !important;
  }
  .px-px-xxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-xxl-80 {
    margin: 80px !important;
  }
  .ml-px-xxl-80 {
    margin-left: 80px !important;
  }
  .mr-px-xxl-80 {
    margin-right: 80px !important;
  }
  .mb-px-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-xxl-80 {
    margin-top: 80px !important;
  }
  .mx-px-xxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-xxl-85 {
    padding: 85px !important;
  }
  .pl-px-xxl-85 {
    padding-left: 85px !important;
  }
  .pr-px-xxl-85 {
    padding-right: 85px !important;
  }
  .pb-px-xxl-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-xxl-85 {
    padding-top: 85px !important;
  }
  .px-px-xxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-xxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-xxl-85 {
    margin: 85px !important;
  }
  .ml-px-xxl-85 {
    margin-left: 85px !important;
  }
  .mr-px-xxl-85 {
    margin-right: 85px !important;
  }
  .mb-px-xxl-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-xxl-85 {
    margin-top: 85px !important;
  }
  .mx-px-xxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-xxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-xxl-90 {
    padding: 90px !important;
  }
  .pl-px-xxl-90 {
    padding-left: 90px !important;
  }
  .pr-px-xxl-90 {
    padding-right: 90px !important;
  }
  .pb-px-xxl-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-xxl-90 {
    padding-top: 90px !important;
  }
  .px-px-xxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-xxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-xxl-90 {
    margin: 90px !important;
  }
  .ml-px-xxl-90 {
    margin-left: 90px !important;
  }
  .mr-px-xxl-90 {
    margin-right: 90px !important;
  }
  .mb-px-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-xxl-90 {
    margin-top: 90px !important;
  }
  .mx-px-xxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-xxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-xxl-95 {
    padding: 95px !important;
  }
  .pl-px-xxl-95 {
    padding-left: 95px !important;
  }
  .pr-px-xxl-95 {
    padding-right: 95px !important;
  }
  .pb-px-xxl-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-xxl-95 {
    padding-top: 95px !important;
  }
  .px-px-xxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-xxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-xxl-95 {
    margin: 95px !important;
  }
  .ml-px-xxl-95 {
    margin-left: 95px !important;
  }
  .mr-px-xxl-95 {
    margin-right: 95px !important;
  }
  .mb-px-xxl-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-xxl-95 {
    margin-top: 95px !important;
  }
  .mx-px-xxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-xxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-xxl-100 {
    padding: 100px !important;
  }
  .pl-px-xxl-100 {
    padding-left: 100px !important;
  }
  .pr-px-xxl-100 {
    padding-right: 100px !important;
  }
  .pb-px-xxl-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-xxl-100 {
    padding-top: 100px !important;
  }
  .px-px-xxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-xxl-100 {
    margin: 100px !important;
  }
  .ml-px-xxl-100 {
    margin-left: 100px !important;
  }
  .mr-px-xxl-100 {
    margin-right: 100px !important;
  }
  .mb-px-xxl-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-xxl-100 {
    margin-top: 100px !important;
  }
  .mx-px-xxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-xxl-105 {
    padding: 105px !important;
  }
  .pl-px-xxl-105 {
    padding-left: 105px !important;
  }
  .pr-px-xxl-105 {
    padding-right: 105px !important;
  }
  .pb-px-xxl-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-xxl-105 {
    padding-top: 105px !important;
  }
  .px-px-xxl-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-xxl-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-xxl-105 {
    margin: 105px !important;
  }
  .ml-px-xxl-105 {
    margin-left: 105px !important;
  }
  .mr-px-xxl-105 {
    margin-right: 105px !important;
  }
  .mb-px-xxl-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-xxl-105 {
    margin-top: 105px !important;
  }
  .mx-px-xxl-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-xxl-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-xxl-110 {
    padding: 110px !important;
  }
  .pl-px-xxl-110 {
    padding-left: 110px !important;
  }
  .pr-px-xxl-110 {
    padding-right: 110px !important;
  }
  .pb-px-xxl-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-xxl-110 {
    padding-top: 110px !important;
  }
  .px-px-xxl-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-xxl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-xxl-110 {
    margin: 110px !important;
  }
  .ml-px-xxl-110 {
    margin-left: 110px !important;
  }
  .mr-px-xxl-110 {
    margin-right: 110px !important;
  }
  .mb-px-xxl-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-xxl-110 {
    margin-top: 110px !important;
  }
  .mx-px-xxl-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-xxl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-xxl-115 {
    padding: 115px !important;
  }
  .pl-px-xxl-115 {
    padding-left: 115px !important;
  }
  .pr-px-xxl-115 {
    padding-right: 115px !important;
  }
  .pb-px-xxl-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-xxl-115 {
    padding-top: 115px !important;
  }
  .px-px-xxl-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-xxl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-xxl-115 {
    margin: 115px !important;
  }
  .ml-px-xxl-115 {
    margin-left: 115px !important;
  }
  .mr-px-xxl-115 {
    margin-right: 115px !important;
  }
  .mb-px-xxl-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-xxl-115 {
    margin-top: 115px !important;
  }
  .mx-px-xxl-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-xxl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-xxl-120 {
    padding: 120px !important;
  }
  .pl-px-xxl-120 {
    padding-left: 120px !important;
  }
  .pr-px-xxl-120 {
    padding-right: 120px !important;
  }
  .pb-px-xxl-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-xxl-120 {
    padding-top: 120px !important;
  }
  .px-px-xxl-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-xxl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-xxl-120 {
    margin: 120px !important;
  }
  .ml-px-xxl-120 {
    margin-left: 120px !important;
  }
  .mr-px-xxl-120 {
    margin-right: 120px !important;
  }
  .mb-px-xxl-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-xxl-120 {
    margin-top: 120px !important;
  }
  .mx-px-xxl-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-xxl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-xxl-125 {
    padding: 125px !important;
  }
  .pl-px-xxl-125 {
    padding-left: 125px !important;
  }
  .pr-px-xxl-125 {
    padding-right: 125px !important;
  }
  .pb-px-xxl-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-xxl-125 {
    padding-top: 125px !important;
  }
  .px-px-xxl-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-xxl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-xxl-125 {
    margin: 125px !important;
  }
  .ml-px-xxl-125 {
    margin-left: 125px !important;
  }
  .mr-px-xxl-125 {
    margin-right: 125px !important;
  }
  .mb-px-xxl-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-xxl-125 {
    margin-top: 125px !important;
  }
  .mx-px-xxl-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-xxl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-xxl-130 {
    padding: 130px !important;
  }
  .pl-px-xxl-130 {
    padding-left: 130px !important;
  }
  .pr-px-xxl-130 {
    padding-right: 130px !important;
  }
  .pb-px-xxl-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-xxl-130 {
    padding-top: 130px !important;
  }
  .px-px-xxl-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-xxl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-xxl-130 {
    margin: 130px !important;
  }
  .ml-px-xxl-130 {
    margin-left: 130px !important;
  }
  .mr-px-xxl-130 {
    margin-right: 130px !important;
  }
  .mb-px-xxl-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-xxl-130 {
    margin-top: 130px !important;
  }
  .mx-px-xxl-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-xxl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-xxl-135 {
    padding: 135px !important;
  }
  .pl-px-xxl-135 {
    padding-left: 135px !important;
  }
  .pr-px-xxl-135 {
    padding-right: 135px !important;
  }
  .pb-px-xxl-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-xxl-135 {
    padding-top: 135px !important;
  }
  .px-px-xxl-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-xxl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-xxl-135 {
    margin: 135px !important;
  }
  .ml-px-xxl-135 {
    margin-left: 135px !important;
  }
  .mr-px-xxl-135 {
    margin-right: 135px !important;
  }
  .mb-px-xxl-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-xxl-135 {
    margin-top: 135px !important;
  }
  .mx-px-xxl-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-xxl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-xxl-140 {
    padding: 140px !important;
  }
  .pl-px-xxl-140 {
    padding-left: 140px !important;
  }
  .pr-px-xxl-140 {
    padding-right: 140px !important;
  }
  .pb-px-xxl-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-xxl-140 {
    padding-top: 140px !important;
  }
  .px-px-xxl-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-xxl-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-xxl-140 {
    margin: 140px !important;
  }
  .ml-px-xxl-140 {
    margin-left: 140px !important;
  }
  .mr-px-xxl-140 {
    margin-right: 140px !important;
  }
  .mb-px-xxl-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-xxl-140 {
    margin-top: 140px !important;
  }
  .mx-px-xxl-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-xxl-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-xxl-145 {
    padding: 145px !important;
  }
  .pl-px-xxl-145 {
    padding-left: 145px !important;
  }
  .pr-px-xxl-145 {
    padding-right: 145px !important;
  }
  .pb-px-xxl-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-xxl-145 {
    padding-top: 145px !important;
  }
  .px-px-xxl-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-xxl-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-xxl-145 {
    margin: 145px !important;
  }
  .ml-px-xxl-145 {
    margin-left: 145px !important;
  }
  .mr-px-xxl-145 {
    margin-right: 145px !important;
  }
  .mb-px-xxl-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-xxl-145 {
    margin-top: 145px !important;
  }
  .mx-px-xxl-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-xxl-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-xxl-150 {
    padding: 150px !important;
  }
  .pl-px-xxl-150 {
    padding-left: 150px !important;
  }
  .pr-px-xxl-150 {
    padding-right: 150px !important;
  }
  .pb-px-xxl-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-xxl-150 {
    padding-top: 150px !important;
  }
  .px-px-xxl-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-xxl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-xxl-150 {
    margin: 150px !important;
  }
  .ml-px-xxl-150 {
    margin-left: 150px !important;
  }
  .mr-px-xxl-150 {
    margin-right: 150px !important;
  }
  .mb-px-xxl-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-xxl-150 {
    margin-top: 150px !important;
  }
  .mx-px-xxl-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-xxl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-xxl-155 {
    padding: 155px !important;
  }
  .pl-px-xxl-155 {
    padding-left: 155px !important;
  }
  .pr-px-xxl-155 {
    padding-right: 155px !important;
  }
  .pb-px-xxl-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-xxl-155 {
    padding-top: 155px !important;
  }
  .px-px-xxl-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-xxl-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-xxl-155 {
    margin: 155px !important;
  }
  .ml-px-xxl-155 {
    margin-left: 155px !important;
  }
  .mr-px-xxl-155 {
    margin-right: 155px !important;
  }
  .mb-px-xxl-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-xxl-155 {
    margin-top: 155px !important;
  }
  .mx-px-xxl-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-xxl-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-xxl-160 {
    padding: 160px !important;
  }
  .pl-px-xxl-160 {
    padding-left: 160px !important;
  }
  .pr-px-xxl-160 {
    padding-right: 160px !important;
  }
  .pb-px-xxl-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-xxl-160 {
    padding-top: 160px !important;
  }
  .px-px-xxl-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-xxl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-xxl-160 {
    margin: 160px !important;
  }
  .ml-px-xxl-160 {
    margin-left: 160px !important;
  }
  .mr-px-xxl-160 {
    margin-right: 160px !important;
  }
  .mb-px-xxl-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-xxl-160 {
    margin-top: 160px !important;
  }
  .mx-px-xxl-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-xxl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-xxl-165 {
    padding: 165px !important;
  }
  .pl-px-xxl-165 {
    padding-left: 165px !important;
  }
  .pr-px-xxl-165 {
    padding-right: 165px !important;
  }
  .pb-px-xxl-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-xxl-165 {
    padding-top: 165px !important;
  }
  .px-px-xxl-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-xxl-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-xxl-165 {
    margin: 165px !important;
  }
  .ml-px-xxl-165 {
    margin-left: 165px !important;
  }
  .mr-px-xxl-165 {
    margin-right: 165px !important;
  }
  .mb-px-xxl-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-xxl-165 {
    margin-top: 165px !important;
  }
  .mx-px-xxl-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-xxl-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-xxl-170 {
    padding: 170px !important;
  }
  .pl-px-xxl-170 {
    padding-left: 170px !important;
  }
  .pr-px-xxl-170 {
    padding-right: 170px !important;
  }
  .pb-px-xxl-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-xxl-170 {
    padding-top: 170px !important;
  }
  .px-px-xxl-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-xxl-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-xxl-170 {
    margin: 170px !important;
  }
  .ml-px-xxl-170 {
    margin-left: 170px !important;
  }
  .mr-px-xxl-170 {
    margin-right: 170px !important;
  }
  .mb-px-xxl-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-xxl-170 {
    margin-top: 170px !important;
  }
  .mx-px-xxl-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-xxl-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-xxl-175 {
    padding: 175px !important;
  }
  .pl-px-xxl-175 {
    padding-left: 175px !important;
  }
  .pr-px-xxl-175 {
    padding-right: 175px !important;
  }
  .pb-px-xxl-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-xxl-175 {
    padding-top: 175px !important;
  }
  .px-px-xxl-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-xxl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-xxl-175 {
    margin: 175px !important;
  }
  .ml-px-xxl-175 {
    margin-left: 175px !important;
  }
  .mr-px-xxl-175 {
    margin-right: 175px !important;
  }
  .mb-px-xxl-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-xxl-175 {
    margin-top: 175px !important;
  }
  .mx-px-xxl-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-xxl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-xxl-180 {
    padding: 180px !important;
  }
  .pl-px-xxl-180 {
    padding-left: 180px !important;
  }
  .pr-px-xxl-180 {
    padding-right: 180px !important;
  }
  .pb-px-xxl-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-xxl-180 {
    padding-top: 180px !important;
  }
  .px-px-xxl-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-xxl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-xxl-180 {
    margin: 180px !important;
  }
  .ml-px-xxl-180 {
    margin-left: 180px !important;
  }
  .mr-px-xxl-180 {
    margin-right: 180px !important;
  }
  .mb-px-xxl-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-xxl-180 {
    margin-top: 180px !important;
  }
  .mx-px-xxl-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-xxl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-xxl-185 {
    padding: 185px !important;
  }
  .pl-px-xxl-185 {
    padding-left: 185px !important;
  }
  .pr-px-xxl-185 {
    padding-right: 185px !important;
  }
  .pb-px-xxl-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-xxl-185 {
    padding-top: 185px !important;
  }
  .px-px-xxl-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-xxl-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-xxl-185 {
    margin: 185px !important;
  }
  .ml-px-xxl-185 {
    margin-left: 185px !important;
  }
  .mr-px-xxl-185 {
    margin-right: 185px !important;
  }
  .mb-px-xxl-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-xxl-185 {
    margin-top: 185px !important;
  }
  .mx-px-xxl-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-xxl-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-xxl-190 {
    padding: 190px !important;
  }
  .pl-px-xxl-190 {
    padding-left: 190px !important;
  }
  .pr-px-xxl-190 {
    padding-right: 190px !important;
  }
  .pb-px-xxl-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-xxl-190 {
    padding-top: 190px !important;
  }
  .px-px-xxl-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-xxl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-xxl-190 {
    margin: 190px !important;
  }
  .ml-px-xxl-190 {
    margin-left: 190px !important;
  }
  .mr-px-xxl-190 {
    margin-right: 190px !important;
  }
  .mb-px-xxl-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-xxl-190 {
    margin-top: 190px !important;
  }
  .mx-px-xxl-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-xxl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-xxl-195 {
    padding: 195px !important;
  }
  .pl-px-xxl-195 {
    padding-left: 195px !important;
  }
  .pr-px-xxl-195 {
    padding-right: 195px !important;
  }
  .pb-px-xxl-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-xxl-195 {
    padding-top: 195px !important;
  }
  .px-px-xxl-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-xxl-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-xxl-195 {
    margin: 195px !important;
  }
  .ml-px-xxl-195 {
    margin-left: 195px !important;
  }
  .mr-px-xxl-195 {
    margin-right: 195px !important;
  }
  .mb-px-xxl-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-xxl-195 {
    margin-top: 195px !important;
  }
  .mx-px-xxl-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-xxl-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-xxl-200 {
    padding: 200px !important;
  }
  .pl-px-xxl-200 {
    padding-left: 200px !important;
  }
  .pr-px-xxl-200 {
    padding-right: 200px !important;
  }
  .pb-px-xxl-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-xxl-200 {
    padding-top: 200px !important;
  }
  .px-px-xxl-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-xxl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-xxl-200 {
    margin: 200px !important;
  }
  .ml-px-xxl-200 {
    margin-left: 200px !important;
  }
  .mr-px-xxl-200 {
    margin-right: 200px !important;
  }
  .mb-px-xxl-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-xxl-200 {
    margin-top: 200px !important;
  }
  .mx-px-xxl-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-xxl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 1600px) {
  .p-px-xxxl-5 {
    padding: 5px !important;
  }
  .pl-px-xxxl-5 {
    padding-left: 5px !important;
  }
  .pr-px-xxxl-5 {
    padding-right: 5px !important;
  }
  .pb-px-xxxl-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-xxxl-5 {
    padding-top: 5px !important;
  }
  .px-px-xxxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-xxxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-xxxl-5 {
    margin: 5px !important;
  }
  .ml-px-xxxl-5 {
    margin-left: 5px !important;
  }
  .mr-px-xxxl-5 {
    margin-right: 5px !important;
  }
  .mb-px-xxxl-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-xxxl-5 {
    margin-top: 5px !important;
  }
  .mx-px-xxxl-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-xxxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-xxxl-10 {
    padding: 10px !important;
  }
  .pl-px-xxxl-10 {
    padding-left: 10px !important;
  }
  .pr-px-xxxl-10 {
    padding-right: 10px !important;
  }
  .pb-px-xxxl-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-xxxl-10 {
    padding-top: 10px !important;
  }
  .px-px-xxxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-xxxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-xxxl-10 {
    margin: 10px !important;
  }
  .ml-px-xxxl-10 {
    margin-left: 10px !important;
  }
  .mr-px-xxxl-10 {
    margin-right: 10px !important;
  }
  .mb-px-xxxl-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-xxxl-10 {
    margin-top: 10px !important;
  }
  .mx-px-xxxl-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-xxxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-xxxl-15 {
    padding: 15px !important;
  }
  .pl-px-xxxl-15 {
    padding-left: 15px !important;
  }
  .pr-px-xxxl-15 {
    padding-right: 15px !important;
  }
  .pb-px-xxxl-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-xxxl-15 {
    padding-top: 15px !important;
  }
  .px-px-xxxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-xxxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-xxxl-15 {
    margin: 15px !important;
  }
  .ml-px-xxxl-15 {
    margin-left: 15px !important;
  }
  .mr-px-xxxl-15 {
    margin-right: 15px !important;
  }
  .mb-px-xxxl-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-xxxl-15 {
    margin-top: 15px !important;
  }
  .mx-px-xxxl-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-xxxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-xxxl-20 {
    padding: 20px !important;
  }
  .pl-px-xxxl-20 {
    padding-left: 20px !important;
  }
  .pr-px-xxxl-20 {
    padding-right: 20px !important;
  }
  .pb-px-xxxl-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-xxxl-20 {
    padding-top: 20px !important;
  }
  .px-px-xxxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-xxxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-xxxl-20 {
    margin: 20px !important;
  }
  .ml-px-xxxl-20 {
    margin-left: 20px !important;
  }
  .mr-px-xxxl-20 {
    margin-right: 20px !important;
  }
  .mb-px-xxxl-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-xxxl-20 {
    margin-top: 20px !important;
  }
  .mx-px-xxxl-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-xxxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-xxxl-25 {
    padding: 25px !important;
  }
  .pl-px-xxxl-25 {
    padding-left: 25px !important;
  }
  .pr-px-xxxl-25 {
    padding-right: 25px !important;
  }
  .pb-px-xxxl-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-xxxl-25 {
    padding-top: 25px !important;
  }
  .px-px-xxxl-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-xxxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-xxxl-25 {
    margin: 25px !important;
  }
  .ml-px-xxxl-25 {
    margin-left: 25px !important;
  }
  .mr-px-xxxl-25 {
    margin-right: 25px !important;
  }
  .mb-px-xxxl-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-xxxl-25 {
    margin-top: 25px !important;
  }
  .mx-px-xxxl-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-xxxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-xxxl-30 {
    padding: 30px !important;
  }
  .pl-px-xxxl-30 {
    padding-left: 30px !important;
  }
  .pr-px-xxxl-30 {
    padding-right: 30px !important;
  }
  .pb-px-xxxl-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-xxxl-30 {
    padding-top: 30px !important;
  }
  .px-px-xxxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-xxxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-xxxl-30 {
    margin: 30px !important;
  }
  .ml-px-xxxl-30 {
    margin-left: 30px !important;
  }
  .mr-px-xxxl-30 {
    margin-right: 30px !important;
  }
  .mb-px-xxxl-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-xxxl-30 {
    margin-top: 30px !important;
  }
  .mx-px-xxxl-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-xxxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-xxxl-35 {
    padding: 35px !important;
  }
  .pl-px-xxxl-35 {
    padding-left: 35px !important;
  }
  .pr-px-xxxl-35 {
    padding-right: 35px !important;
  }
  .pb-px-xxxl-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-xxxl-35 {
    padding-top: 35px !important;
  }
  .px-px-xxxl-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-xxxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-xxxl-35 {
    margin: 35px !important;
  }
  .ml-px-xxxl-35 {
    margin-left: 35px !important;
  }
  .mr-px-xxxl-35 {
    margin-right: 35px !important;
  }
  .mb-px-xxxl-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-xxxl-35 {
    margin-top: 35px !important;
  }
  .mx-px-xxxl-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-xxxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-xxxl-40 {
    padding: 40px !important;
  }
  .pl-px-xxxl-40 {
    padding-left: 40px !important;
  }
  .pr-px-xxxl-40 {
    padding-right: 40px !important;
  }
  .pb-px-xxxl-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-xxxl-40 {
    padding-top: 40px !important;
  }
  .px-px-xxxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-xxxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-xxxl-40 {
    margin: 40px !important;
  }
  .ml-px-xxxl-40 {
    margin-left: 40px !important;
  }
  .mr-px-xxxl-40 {
    margin-right: 40px !important;
  }
  .mb-px-xxxl-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-xxxl-40 {
    margin-top: 40px !important;
  }
  .mx-px-xxxl-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-xxxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-xxxl-45 {
    padding: 45px !important;
  }
  .pl-px-xxxl-45 {
    padding-left: 45px !important;
  }
  .pr-px-xxxl-45 {
    padding-right: 45px !important;
  }
  .pb-px-xxxl-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-xxxl-45 {
    padding-top: 45px !important;
  }
  .px-px-xxxl-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-xxxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-xxxl-45 {
    margin: 45px !important;
  }
  .ml-px-xxxl-45 {
    margin-left: 45px !important;
  }
  .mr-px-xxxl-45 {
    margin-right: 45px !important;
  }
  .mb-px-xxxl-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-xxxl-45 {
    margin-top: 45px !important;
  }
  .mx-px-xxxl-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-xxxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-xxxl-50 {
    padding: 50px !important;
  }
  .pl-px-xxxl-50 {
    padding-left: 50px !important;
  }
  .pr-px-xxxl-50 {
    padding-right: 50px !important;
  }
  .pb-px-xxxl-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-xxxl-50 {
    padding-top: 50px !important;
  }
  .px-px-xxxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-xxxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-xxxl-50 {
    margin: 50px !important;
  }
  .ml-px-xxxl-50 {
    margin-left: 50px !important;
  }
  .mr-px-xxxl-50 {
    margin-right: 50px !important;
  }
  .mb-px-xxxl-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-xxxl-50 {
    margin-top: 50px !important;
  }
  .mx-px-xxxl-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-xxxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-xxxl-55 {
    padding: 55px !important;
  }
  .pl-px-xxxl-55 {
    padding-left: 55px !important;
  }
  .pr-px-xxxl-55 {
    padding-right: 55px !important;
  }
  .pb-px-xxxl-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-xxxl-55 {
    padding-top: 55px !important;
  }
  .px-px-xxxl-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-xxxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-xxxl-55 {
    margin: 55px !important;
  }
  .ml-px-xxxl-55 {
    margin-left: 55px !important;
  }
  .mr-px-xxxl-55 {
    margin-right: 55px !important;
  }
  .mb-px-xxxl-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-xxxl-55 {
    margin-top: 55px !important;
  }
  .mx-px-xxxl-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-xxxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-xxxl-60 {
    padding: 60px !important;
  }
  .pl-px-xxxl-60 {
    padding-left: 60px !important;
  }
  .pr-px-xxxl-60 {
    padding-right: 60px !important;
  }
  .pb-px-xxxl-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-xxxl-60 {
    padding-top: 60px !important;
  }
  .px-px-xxxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-xxxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-xxxl-60 {
    margin: 60px !important;
  }
  .ml-px-xxxl-60 {
    margin-left: 60px !important;
  }
  .mr-px-xxxl-60 {
    margin-right: 60px !important;
  }
  .mb-px-xxxl-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-xxxl-60 {
    margin-top: 60px !important;
  }
  .mx-px-xxxl-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-xxxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-xxxl-65 {
    padding: 65px !important;
  }
  .pl-px-xxxl-65 {
    padding-left: 65px !important;
  }
  .pr-px-xxxl-65 {
    padding-right: 65px !important;
  }
  .pb-px-xxxl-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-xxxl-65 {
    padding-top: 65px !important;
  }
  .px-px-xxxl-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-xxxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-xxxl-65 {
    margin: 65px !important;
  }
  .ml-px-xxxl-65 {
    margin-left: 65px !important;
  }
  .mr-px-xxxl-65 {
    margin-right: 65px !important;
  }
  .mb-px-xxxl-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-xxxl-65 {
    margin-top: 65px !important;
  }
  .mx-px-xxxl-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-xxxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-xxxl-70 {
    padding: 70px !important;
  }
  .pl-px-xxxl-70 {
    padding-left: 70px !important;
  }
  .pr-px-xxxl-70 {
    padding-right: 70px !important;
  }
  .pb-px-xxxl-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-xxxl-70 {
    padding-top: 70px !important;
  }
  .px-px-xxxl-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-xxxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-xxxl-70 {
    margin: 70px !important;
  }
  .ml-px-xxxl-70 {
    margin-left: 70px !important;
  }
  .mr-px-xxxl-70 {
    margin-right: 70px !important;
  }
  .mb-px-xxxl-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-xxxl-70 {
    margin-top: 70px !important;
  }
  .mx-px-xxxl-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-xxxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-xxxl-75 {
    padding: 75px !important;
  }
  .pl-px-xxxl-75 {
    padding-left: 75px !important;
  }
  .pr-px-xxxl-75 {
    padding-right: 75px !important;
  }
  .pb-px-xxxl-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-xxxl-75 {
    padding-top: 75px !important;
  }
  .px-px-xxxl-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-xxxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-xxxl-75 {
    margin: 75px !important;
  }
  .ml-px-xxxl-75 {
    margin-left: 75px !important;
  }
  .mr-px-xxxl-75 {
    margin-right: 75px !important;
  }
  .mb-px-xxxl-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-xxxl-75 {
    margin-top: 75px !important;
  }
  .mx-px-xxxl-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-xxxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-xxxl-80 {
    padding: 80px !important;
  }
  .pl-px-xxxl-80 {
    padding-left: 80px !important;
  }
  .pr-px-xxxl-80 {
    padding-right: 80px !important;
  }
  .pb-px-xxxl-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-xxxl-80 {
    padding-top: 80px !important;
  }
  .px-px-xxxl-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-xxxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-xxxl-80 {
    margin: 80px !important;
  }
  .ml-px-xxxl-80 {
    margin-left: 80px !important;
  }
  .mr-px-xxxl-80 {
    margin-right: 80px !important;
  }
  .mb-px-xxxl-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-xxxl-80 {
    margin-top: 80px !important;
  }
  .mx-px-xxxl-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-xxxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-xxxl-85 {
    padding: 85px !important;
  }
  .pl-px-xxxl-85 {
    padding-left: 85px !important;
  }
  .pr-px-xxxl-85 {
    padding-right: 85px !important;
  }
  .pb-px-xxxl-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-xxxl-85 {
    padding-top: 85px !important;
  }
  .px-px-xxxl-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-xxxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-xxxl-85 {
    margin: 85px !important;
  }
  .ml-px-xxxl-85 {
    margin-left: 85px !important;
  }
  .mr-px-xxxl-85 {
    margin-right: 85px !important;
  }
  .mb-px-xxxl-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-xxxl-85 {
    margin-top: 85px !important;
  }
  .mx-px-xxxl-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-xxxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-xxxl-90 {
    padding: 90px !important;
  }
  .pl-px-xxxl-90 {
    padding-left: 90px !important;
  }
  .pr-px-xxxl-90 {
    padding-right: 90px !important;
  }
  .pb-px-xxxl-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-xxxl-90 {
    padding-top: 90px !important;
  }
  .px-px-xxxl-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-xxxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-xxxl-90 {
    margin: 90px !important;
  }
  .ml-px-xxxl-90 {
    margin-left: 90px !important;
  }
  .mr-px-xxxl-90 {
    margin-right: 90px !important;
  }
  .mb-px-xxxl-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-xxxl-90 {
    margin-top: 90px !important;
  }
  .mx-px-xxxl-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-xxxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-xxxl-95 {
    padding: 95px !important;
  }
  .pl-px-xxxl-95 {
    padding-left: 95px !important;
  }
  .pr-px-xxxl-95 {
    padding-right: 95px !important;
  }
  .pb-px-xxxl-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-xxxl-95 {
    padding-top: 95px !important;
  }
  .px-px-xxxl-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-xxxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-xxxl-95 {
    margin: 95px !important;
  }
  .ml-px-xxxl-95 {
    margin-left: 95px !important;
  }
  .mr-px-xxxl-95 {
    margin-right: 95px !important;
  }
  .mb-px-xxxl-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-xxxl-95 {
    margin-top: 95px !important;
  }
  .mx-px-xxxl-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-xxxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-xxxl-100 {
    padding: 100px !important;
  }
  .pl-px-xxxl-100 {
    padding-left: 100px !important;
  }
  .pr-px-xxxl-100 {
    padding-right: 100px !important;
  }
  .pb-px-xxxl-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-xxxl-100 {
    padding-top: 100px !important;
  }
  .px-px-xxxl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-xxxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-xxxl-100 {
    margin: 100px !important;
  }
  .ml-px-xxxl-100 {
    margin-left: 100px !important;
  }
  .mr-px-xxxl-100 {
    margin-right: 100px !important;
  }
  .mb-px-xxxl-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-xxxl-100 {
    margin-top: 100px !important;
  }
  .mx-px-xxxl-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-xxxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-xxxl-105 {
    padding: 105px !important;
  }
  .pl-px-xxxl-105 {
    padding-left: 105px !important;
  }
  .pr-px-xxxl-105 {
    padding-right: 105px !important;
  }
  .pb-px-xxxl-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-xxxl-105 {
    padding-top: 105px !important;
  }
  .px-px-xxxl-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-xxxl-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-xxxl-105 {
    margin: 105px !important;
  }
  .ml-px-xxxl-105 {
    margin-left: 105px !important;
  }
  .mr-px-xxxl-105 {
    margin-right: 105px !important;
  }
  .mb-px-xxxl-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-xxxl-105 {
    margin-top: 105px !important;
  }
  .mx-px-xxxl-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-xxxl-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-xxxl-110 {
    padding: 110px !important;
  }
  .pl-px-xxxl-110 {
    padding-left: 110px !important;
  }
  .pr-px-xxxl-110 {
    padding-right: 110px !important;
  }
  .pb-px-xxxl-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-xxxl-110 {
    padding-top: 110px !important;
  }
  .px-px-xxxl-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-xxxl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-xxxl-110 {
    margin: 110px !important;
  }
  .ml-px-xxxl-110 {
    margin-left: 110px !important;
  }
  .mr-px-xxxl-110 {
    margin-right: 110px !important;
  }
  .mb-px-xxxl-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-xxxl-110 {
    margin-top: 110px !important;
  }
  .mx-px-xxxl-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-xxxl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-xxxl-115 {
    padding: 115px !important;
  }
  .pl-px-xxxl-115 {
    padding-left: 115px !important;
  }
  .pr-px-xxxl-115 {
    padding-right: 115px !important;
  }
  .pb-px-xxxl-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-xxxl-115 {
    padding-top: 115px !important;
  }
  .px-px-xxxl-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-xxxl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-xxxl-115 {
    margin: 115px !important;
  }
  .ml-px-xxxl-115 {
    margin-left: 115px !important;
  }
  .mr-px-xxxl-115 {
    margin-right: 115px !important;
  }
  .mb-px-xxxl-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-xxxl-115 {
    margin-top: 115px !important;
  }
  .mx-px-xxxl-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-xxxl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-xxxl-120 {
    padding: 120px !important;
  }
  .pl-px-xxxl-120 {
    padding-left: 120px !important;
  }
  .pr-px-xxxl-120 {
    padding-right: 120px !important;
  }
  .pb-px-xxxl-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-xxxl-120 {
    padding-top: 120px !important;
  }
  .px-px-xxxl-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-xxxl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-xxxl-120 {
    margin: 120px !important;
  }
  .ml-px-xxxl-120 {
    margin-left: 120px !important;
  }
  .mr-px-xxxl-120 {
    margin-right: 120px !important;
  }
  .mb-px-xxxl-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-xxxl-120 {
    margin-top: 120px !important;
  }
  .mx-px-xxxl-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-xxxl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-xxxl-125 {
    padding: 125px !important;
  }
  .pl-px-xxxl-125 {
    padding-left: 125px !important;
  }
  .pr-px-xxxl-125 {
    padding-right: 125px !important;
  }
  .pb-px-xxxl-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-xxxl-125 {
    padding-top: 125px !important;
  }
  .px-px-xxxl-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-xxxl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-xxxl-125 {
    margin: 125px !important;
  }
  .ml-px-xxxl-125 {
    margin-left: 125px !important;
  }
  .mr-px-xxxl-125 {
    margin-right: 125px !important;
  }
  .mb-px-xxxl-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-xxxl-125 {
    margin-top: 125px !important;
  }
  .mx-px-xxxl-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-xxxl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-xxxl-130 {
    padding: 130px !important;
  }
  .pl-px-xxxl-130 {
    padding-left: 130px !important;
  }
  .pr-px-xxxl-130 {
    padding-right: 130px !important;
  }
  .pb-px-xxxl-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-xxxl-130 {
    padding-top: 130px !important;
  }
  .px-px-xxxl-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-xxxl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-xxxl-130 {
    margin: 130px !important;
  }
  .ml-px-xxxl-130 {
    margin-left: 130px !important;
  }
  .mr-px-xxxl-130 {
    margin-right: 130px !important;
  }
  .mb-px-xxxl-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-xxxl-130 {
    margin-top: 130px !important;
  }
  .mx-px-xxxl-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-xxxl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-xxxl-135 {
    padding: 135px !important;
  }
  .pl-px-xxxl-135 {
    padding-left: 135px !important;
  }
  .pr-px-xxxl-135 {
    padding-right: 135px !important;
  }
  .pb-px-xxxl-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-xxxl-135 {
    padding-top: 135px !important;
  }
  .px-px-xxxl-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-xxxl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-xxxl-135 {
    margin: 135px !important;
  }
  .ml-px-xxxl-135 {
    margin-left: 135px !important;
  }
  .mr-px-xxxl-135 {
    margin-right: 135px !important;
  }
  .mb-px-xxxl-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-xxxl-135 {
    margin-top: 135px !important;
  }
  .mx-px-xxxl-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-xxxl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-xxxl-140 {
    padding: 140px !important;
  }
  .pl-px-xxxl-140 {
    padding-left: 140px !important;
  }
  .pr-px-xxxl-140 {
    padding-right: 140px !important;
  }
  .pb-px-xxxl-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-xxxl-140 {
    padding-top: 140px !important;
  }
  .px-px-xxxl-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-xxxl-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-xxxl-140 {
    margin: 140px !important;
  }
  .ml-px-xxxl-140 {
    margin-left: 140px !important;
  }
  .mr-px-xxxl-140 {
    margin-right: 140px !important;
  }
  .mb-px-xxxl-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-xxxl-140 {
    margin-top: 140px !important;
  }
  .mx-px-xxxl-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-xxxl-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-xxxl-145 {
    padding: 145px !important;
  }
  .pl-px-xxxl-145 {
    padding-left: 145px !important;
  }
  .pr-px-xxxl-145 {
    padding-right: 145px !important;
  }
  .pb-px-xxxl-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-xxxl-145 {
    padding-top: 145px !important;
  }
  .px-px-xxxl-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-xxxl-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-xxxl-145 {
    margin: 145px !important;
  }
  .ml-px-xxxl-145 {
    margin-left: 145px !important;
  }
  .mr-px-xxxl-145 {
    margin-right: 145px !important;
  }
  .mb-px-xxxl-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-xxxl-145 {
    margin-top: 145px !important;
  }
  .mx-px-xxxl-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-xxxl-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-xxxl-150 {
    padding: 150px !important;
  }
  .pl-px-xxxl-150 {
    padding-left: 150px !important;
  }
  .pr-px-xxxl-150 {
    padding-right: 150px !important;
  }
  .pb-px-xxxl-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-xxxl-150 {
    padding-top: 150px !important;
  }
  .px-px-xxxl-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-xxxl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-xxxl-150 {
    margin: 150px !important;
  }
  .ml-px-xxxl-150 {
    margin-left: 150px !important;
  }
  .mr-px-xxxl-150 {
    margin-right: 150px !important;
  }
  .mb-px-xxxl-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-xxxl-150 {
    margin-top: 150px !important;
  }
  .mx-px-xxxl-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-xxxl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-xxxl-155 {
    padding: 155px !important;
  }
  .pl-px-xxxl-155 {
    padding-left: 155px !important;
  }
  .pr-px-xxxl-155 {
    padding-right: 155px !important;
  }
  .pb-px-xxxl-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-xxxl-155 {
    padding-top: 155px !important;
  }
  .px-px-xxxl-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-xxxl-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-xxxl-155 {
    margin: 155px !important;
  }
  .ml-px-xxxl-155 {
    margin-left: 155px !important;
  }
  .mr-px-xxxl-155 {
    margin-right: 155px !important;
  }
  .mb-px-xxxl-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-xxxl-155 {
    margin-top: 155px !important;
  }
  .mx-px-xxxl-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-xxxl-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-xxxl-160 {
    padding: 160px !important;
  }
  .pl-px-xxxl-160 {
    padding-left: 160px !important;
  }
  .pr-px-xxxl-160 {
    padding-right: 160px !important;
  }
  .pb-px-xxxl-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-xxxl-160 {
    padding-top: 160px !important;
  }
  .px-px-xxxl-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-xxxl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-xxxl-160 {
    margin: 160px !important;
  }
  .ml-px-xxxl-160 {
    margin-left: 160px !important;
  }
  .mr-px-xxxl-160 {
    margin-right: 160px !important;
  }
  .mb-px-xxxl-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-xxxl-160 {
    margin-top: 160px !important;
  }
  .mx-px-xxxl-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-xxxl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-xxxl-165 {
    padding: 165px !important;
  }
  .pl-px-xxxl-165 {
    padding-left: 165px !important;
  }
  .pr-px-xxxl-165 {
    padding-right: 165px !important;
  }
  .pb-px-xxxl-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-xxxl-165 {
    padding-top: 165px !important;
  }
  .px-px-xxxl-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-xxxl-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-xxxl-165 {
    margin: 165px !important;
  }
  .ml-px-xxxl-165 {
    margin-left: 165px !important;
  }
  .mr-px-xxxl-165 {
    margin-right: 165px !important;
  }
  .mb-px-xxxl-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-xxxl-165 {
    margin-top: 165px !important;
  }
  .mx-px-xxxl-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-xxxl-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-xxxl-170 {
    padding: 170px !important;
  }
  .pl-px-xxxl-170 {
    padding-left: 170px !important;
  }
  .pr-px-xxxl-170 {
    padding-right: 170px !important;
  }
  .pb-px-xxxl-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-xxxl-170 {
    padding-top: 170px !important;
  }
  .px-px-xxxl-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-xxxl-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-xxxl-170 {
    margin: 170px !important;
  }
  .ml-px-xxxl-170 {
    margin-left: 170px !important;
  }
  .mr-px-xxxl-170 {
    margin-right: 170px !important;
  }
  .mb-px-xxxl-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-xxxl-170 {
    margin-top: 170px !important;
  }
  .mx-px-xxxl-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-xxxl-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-xxxl-175 {
    padding: 175px !important;
  }
  .pl-px-xxxl-175 {
    padding-left: 175px !important;
  }
  .pr-px-xxxl-175 {
    padding-right: 175px !important;
  }
  .pb-px-xxxl-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-xxxl-175 {
    padding-top: 175px !important;
  }
  .px-px-xxxl-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-xxxl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-xxxl-175 {
    margin: 175px !important;
  }
  .ml-px-xxxl-175 {
    margin-left: 175px !important;
  }
  .mr-px-xxxl-175 {
    margin-right: 175px !important;
  }
  .mb-px-xxxl-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-xxxl-175 {
    margin-top: 175px !important;
  }
  .mx-px-xxxl-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-xxxl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-xxxl-180 {
    padding: 180px !important;
  }
  .pl-px-xxxl-180 {
    padding-left: 180px !important;
  }
  .pr-px-xxxl-180 {
    padding-right: 180px !important;
  }
  .pb-px-xxxl-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-xxxl-180 {
    padding-top: 180px !important;
  }
  .px-px-xxxl-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-xxxl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-xxxl-180 {
    margin: 180px !important;
  }
  .ml-px-xxxl-180 {
    margin-left: 180px !important;
  }
  .mr-px-xxxl-180 {
    margin-right: 180px !important;
  }
  .mb-px-xxxl-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-xxxl-180 {
    margin-top: 180px !important;
  }
  .mx-px-xxxl-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-xxxl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-xxxl-185 {
    padding: 185px !important;
  }
  .pl-px-xxxl-185 {
    padding-left: 185px !important;
  }
  .pr-px-xxxl-185 {
    padding-right: 185px !important;
  }
  .pb-px-xxxl-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-xxxl-185 {
    padding-top: 185px !important;
  }
  .px-px-xxxl-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-xxxl-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-xxxl-185 {
    margin: 185px !important;
  }
  .ml-px-xxxl-185 {
    margin-left: 185px !important;
  }
  .mr-px-xxxl-185 {
    margin-right: 185px !important;
  }
  .mb-px-xxxl-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-xxxl-185 {
    margin-top: 185px !important;
  }
  .mx-px-xxxl-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-xxxl-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-xxxl-190 {
    padding: 190px !important;
  }
  .pl-px-xxxl-190 {
    padding-left: 190px !important;
  }
  .pr-px-xxxl-190 {
    padding-right: 190px !important;
  }
  .pb-px-xxxl-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-xxxl-190 {
    padding-top: 190px !important;
  }
  .px-px-xxxl-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-xxxl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-xxxl-190 {
    margin: 190px !important;
  }
  .ml-px-xxxl-190 {
    margin-left: 190px !important;
  }
  .mr-px-xxxl-190 {
    margin-right: 190px !important;
  }
  .mb-px-xxxl-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-xxxl-190 {
    margin-top: 190px !important;
  }
  .mx-px-xxxl-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-xxxl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-xxxl-195 {
    padding: 195px !important;
  }
  .pl-px-xxxl-195 {
    padding-left: 195px !important;
  }
  .pr-px-xxxl-195 {
    padding-right: 195px !important;
  }
  .pb-px-xxxl-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-xxxl-195 {
    padding-top: 195px !important;
  }
  .px-px-xxxl-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-xxxl-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-xxxl-195 {
    margin: 195px !important;
  }
  .ml-px-xxxl-195 {
    margin-left: 195px !important;
  }
  .mr-px-xxxl-195 {
    margin-right: 195px !important;
  }
  .mb-px-xxxl-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-xxxl-195 {
    margin-top: 195px !important;
  }
  .mx-px-xxxl-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-xxxl-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-xxxl-200 {
    padding: 200px !important;
  }
  .pl-px-xxxl-200 {
    padding-left: 200px !important;
  }
  .pr-px-xxxl-200 {
    padding-right: 200px !important;
  }
  .pb-px-xxxl-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-xxxl-200 {
    padding-top: 200px !important;
  }
  .px-px-xxxl-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-xxxl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-xxxl-200 {
    margin: 200px !important;
  }
  .ml-px-xxxl-200 {
    margin-left: 200px !important;
  }
  .mr-px-xxxl-200 {
    margin-right: 200px !important;
  }
  .mb-px-xxxl-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-xxxl-200 {
    margin-top: 200px !important;
  }
  .mx-px-xxxl-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-xxxl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 1920px) {
  .p-px-hd-5 {
    padding: 5px !important;
  }
  .pl-px-hd-5 {
    padding-left: 5px !important;
  }
  .pr-px-hd-5 {
    padding-right: 5px !important;
  }
  .pb-px-hd-5 {
    padding-bottom: 5px !important;
  }
  .pt-px-hd-5 {
    padding-top: 5px !important;
  }
  .px-px-hd-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-px-hd-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-px-hd-5 {
    margin: 5px !important;
  }
  .ml-px-hd-5 {
    margin-left: 5px !important;
  }
  .mr-px-hd-5 {
    margin-right: 5px !important;
  }
  .mb-px-hd-5 {
    margin-bottom: 5px !important;
  }
  .mt-px-hd-5 {
    margin-top: 5px !important;
  }
  .mx-px-hd-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-px-hd-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-px-hd-10 {
    padding: 10px !important;
  }
  .pl-px-hd-10 {
    padding-left: 10px !important;
  }
  .pr-px-hd-10 {
    padding-right: 10px !important;
  }
  .pb-px-hd-10 {
    padding-bottom: 10px !important;
  }
  .pt-px-hd-10 {
    padding-top: 10px !important;
  }
  .px-px-hd-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-px-hd-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-px-hd-10 {
    margin: 10px !important;
  }
  .ml-px-hd-10 {
    margin-left: 10px !important;
  }
  .mr-px-hd-10 {
    margin-right: 10px !important;
  }
  .mb-px-hd-10 {
    margin-bottom: 10px !important;
  }
  .mt-px-hd-10 {
    margin-top: 10px !important;
  }
  .mx-px-hd-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-px-hd-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-px-hd-15 {
    padding: 15px !important;
  }
  .pl-px-hd-15 {
    padding-left: 15px !important;
  }
  .pr-px-hd-15 {
    padding-right: 15px !important;
  }
  .pb-px-hd-15 {
    padding-bottom: 15px !important;
  }
  .pt-px-hd-15 {
    padding-top: 15px !important;
  }
  .px-px-hd-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-px-hd-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-px-hd-15 {
    margin: 15px !important;
  }
  .ml-px-hd-15 {
    margin-left: 15px !important;
  }
  .mr-px-hd-15 {
    margin-right: 15px !important;
  }
  .mb-px-hd-15 {
    margin-bottom: 15px !important;
  }
  .mt-px-hd-15 {
    margin-top: 15px !important;
  }
  .mx-px-hd-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-px-hd-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-px-hd-20 {
    padding: 20px !important;
  }
  .pl-px-hd-20 {
    padding-left: 20px !important;
  }
  .pr-px-hd-20 {
    padding-right: 20px !important;
  }
  .pb-px-hd-20 {
    padding-bottom: 20px !important;
  }
  .pt-px-hd-20 {
    padding-top: 20px !important;
  }
  .px-px-hd-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-px-hd-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-px-hd-20 {
    margin: 20px !important;
  }
  .ml-px-hd-20 {
    margin-left: 20px !important;
  }
  .mr-px-hd-20 {
    margin-right: 20px !important;
  }
  .mb-px-hd-20 {
    margin-bottom: 20px !important;
  }
  .mt-px-hd-20 {
    margin-top: 20px !important;
  }
  .mx-px-hd-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-px-hd-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-px-hd-25 {
    padding: 25px !important;
  }
  .pl-px-hd-25 {
    padding-left: 25px !important;
  }
  .pr-px-hd-25 {
    padding-right: 25px !important;
  }
  .pb-px-hd-25 {
    padding-bottom: 25px !important;
  }
  .pt-px-hd-25 {
    padding-top: 25px !important;
  }
  .px-px-hd-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-px-hd-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .m-px-hd-25 {
    margin: 25px !important;
  }
  .ml-px-hd-25 {
    margin-left: 25px !important;
  }
  .mr-px-hd-25 {
    margin-right: 25px !important;
  }
  .mb-px-hd-25 {
    margin-bottom: 25px !important;
  }
  .mt-px-hd-25 {
    margin-top: 25px !important;
  }
  .mx-px-hd-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-px-hd-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .p-px-hd-30 {
    padding: 30px !important;
  }
  .pl-px-hd-30 {
    padding-left: 30px !important;
  }
  .pr-px-hd-30 {
    padding-right: 30px !important;
  }
  .pb-px-hd-30 {
    padding-bottom: 30px !important;
  }
  .pt-px-hd-30 {
    padding-top: 30px !important;
  }
  .px-px-hd-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-px-hd-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-px-hd-30 {
    margin: 30px !important;
  }
  .ml-px-hd-30 {
    margin-left: 30px !important;
  }
  .mr-px-hd-30 {
    margin-right: 30px !important;
  }
  .mb-px-hd-30 {
    margin-bottom: 30px !important;
  }
  .mt-px-hd-30 {
    margin-top: 30px !important;
  }
  .mx-px-hd-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-px-hd-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-px-hd-35 {
    padding: 35px !important;
  }
  .pl-px-hd-35 {
    padding-left: 35px !important;
  }
  .pr-px-hd-35 {
    padding-right: 35px !important;
  }
  .pb-px-hd-35 {
    padding-bottom: 35px !important;
  }
  .pt-px-hd-35 {
    padding-top: 35px !important;
  }
  .px-px-hd-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-px-hd-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .m-px-hd-35 {
    margin: 35px !important;
  }
  .ml-px-hd-35 {
    margin-left: 35px !important;
  }
  .mr-px-hd-35 {
    margin-right: 35px !important;
  }
  .mb-px-hd-35 {
    margin-bottom: 35px !important;
  }
  .mt-px-hd-35 {
    margin-top: 35px !important;
  }
  .mx-px-hd-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-px-hd-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .p-px-hd-40 {
    padding: 40px !important;
  }
  .pl-px-hd-40 {
    padding-left: 40px !important;
  }
  .pr-px-hd-40 {
    padding-right: 40px !important;
  }
  .pb-px-hd-40 {
    padding-bottom: 40px !important;
  }
  .pt-px-hd-40 {
    padding-top: 40px !important;
  }
  .px-px-hd-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-px-hd-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-px-hd-40 {
    margin: 40px !important;
  }
  .ml-px-hd-40 {
    margin-left: 40px !important;
  }
  .mr-px-hd-40 {
    margin-right: 40px !important;
  }
  .mb-px-hd-40 {
    margin-bottom: 40px !important;
  }
  .mt-px-hd-40 {
    margin-top: 40px !important;
  }
  .mx-px-hd-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-px-hd-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-px-hd-45 {
    padding: 45px !important;
  }
  .pl-px-hd-45 {
    padding-left: 45px !important;
  }
  .pr-px-hd-45 {
    padding-right: 45px !important;
  }
  .pb-px-hd-45 {
    padding-bottom: 45px !important;
  }
  .pt-px-hd-45 {
    padding-top: 45px !important;
  }
  .px-px-hd-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-px-hd-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .m-px-hd-45 {
    margin: 45px !important;
  }
  .ml-px-hd-45 {
    margin-left: 45px !important;
  }
  .mr-px-hd-45 {
    margin-right: 45px !important;
  }
  .mb-px-hd-45 {
    margin-bottom: 45px !important;
  }
  .mt-px-hd-45 {
    margin-top: 45px !important;
  }
  .mx-px-hd-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-px-hd-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .p-px-hd-50 {
    padding: 50px !important;
  }
  .pl-px-hd-50 {
    padding-left: 50px !important;
  }
  .pr-px-hd-50 {
    padding-right: 50px !important;
  }
  .pb-px-hd-50 {
    padding-bottom: 50px !important;
  }
  .pt-px-hd-50 {
    padding-top: 50px !important;
  }
  .px-px-hd-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-px-hd-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-px-hd-50 {
    margin: 50px !important;
  }
  .ml-px-hd-50 {
    margin-left: 50px !important;
  }
  .mr-px-hd-50 {
    margin-right: 50px !important;
  }
  .mb-px-hd-50 {
    margin-bottom: 50px !important;
  }
  .mt-px-hd-50 {
    margin-top: 50px !important;
  }
  .mx-px-hd-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-px-hd-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-px-hd-55 {
    padding: 55px !important;
  }
  .pl-px-hd-55 {
    padding-left: 55px !important;
  }
  .pr-px-hd-55 {
    padding-right: 55px !important;
  }
  .pb-px-hd-55 {
    padding-bottom: 55px !important;
  }
  .pt-px-hd-55 {
    padding-top: 55px !important;
  }
  .px-px-hd-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-px-hd-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .m-px-hd-55 {
    margin: 55px !important;
  }
  .ml-px-hd-55 {
    margin-left: 55px !important;
  }
  .mr-px-hd-55 {
    margin-right: 55px !important;
  }
  .mb-px-hd-55 {
    margin-bottom: 55px !important;
  }
  .mt-px-hd-55 {
    margin-top: 55px !important;
  }
  .mx-px-hd-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-px-hd-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .p-px-hd-60 {
    padding: 60px !important;
  }
  .pl-px-hd-60 {
    padding-left: 60px !important;
  }
  .pr-px-hd-60 {
    padding-right: 60px !important;
  }
  .pb-px-hd-60 {
    padding-bottom: 60px !important;
  }
  .pt-px-hd-60 {
    padding-top: 60px !important;
  }
  .px-px-hd-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-px-hd-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-px-hd-60 {
    margin: 60px !important;
  }
  .ml-px-hd-60 {
    margin-left: 60px !important;
  }
  .mr-px-hd-60 {
    margin-right: 60px !important;
  }
  .mb-px-hd-60 {
    margin-bottom: 60px !important;
  }
  .mt-px-hd-60 {
    margin-top: 60px !important;
  }
  .mx-px-hd-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-px-hd-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-px-hd-65 {
    padding: 65px !important;
  }
  .pl-px-hd-65 {
    padding-left: 65px !important;
  }
  .pr-px-hd-65 {
    padding-right: 65px !important;
  }
  .pb-px-hd-65 {
    padding-bottom: 65px !important;
  }
  .pt-px-hd-65 {
    padding-top: 65px !important;
  }
  .px-px-hd-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .py-px-hd-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .m-px-hd-65 {
    margin: 65px !important;
  }
  .ml-px-hd-65 {
    margin-left: 65px !important;
  }
  .mr-px-hd-65 {
    margin-right: 65px !important;
  }
  .mb-px-hd-65 {
    margin-bottom: 65px !important;
  }
  .mt-px-hd-65 {
    margin-top: 65px !important;
  }
  .mx-px-hd-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .my-px-hd-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .p-px-hd-70 {
    padding: 70px !important;
  }
  .pl-px-hd-70 {
    padding-left: 70px !important;
  }
  .pr-px-hd-70 {
    padding-right: 70px !important;
  }
  .pb-px-hd-70 {
    padding-bottom: 70px !important;
  }
  .pt-px-hd-70 {
    padding-top: 70px !important;
  }
  .px-px-hd-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-px-hd-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-px-hd-70 {
    margin: 70px !important;
  }
  .ml-px-hd-70 {
    margin-left: 70px !important;
  }
  .mr-px-hd-70 {
    margin-right: 70px !important;
  }
  .mb-px-hd-70 {
    margin-bottom: 70px !important;
  }
  .mt-px-hd-70 {
    margin-top: 70px !important;
  }
  .mx-px-hd-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-px-hd-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-px-hd-75 {
    padding: 75px !important;
  }
  .pl-px-hd-75 {
    padding-left: 75px !important;
  }
  .pr-px-hd-75 {
    padding-right: 75px !important;
  }
  .pb-px-hd-75 {
    padding-bottom: 75px !important;
  }
  .pt-px-hd-75 {
    padding-top: 75px !important;
  }
  .px-px-hd-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
  .py-px-hd-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .m-px-hd-75 {
    margin: 75px !important;
  }
  .ml-px-hd-75 {
    margin-left: 75px !important;
  }
  .mr-px-hd-75 {
    margin-right: 75px !important;
  }
  .mb-px-hd-75 {
    margin-bottom: 75px !important;
  }
  .mt-px-hd-75 {
    margin-top: 75px !important;
  }
  .mx-px-hd-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
  .my-px-hd-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .p-px-hd-80 {
    padding: 80px !important;
  }
  .pl-px-hd-80 {
    padding-left: 80px !important;
  }
  .pr-px-hd-80 {
    padding-right: 80px !important;
  }
  .pb-px-hd-80 {
    padding-bottom: 80px !important;
  }
  .pt-px-hd-80 {
    padding-top: 80px !important;
  }
  .px-px-hd-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-px-hd-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-px-hd-80 {
    margin: 80px !important;
  }
  .ml-px-hd-80 {
    margin-left: 80px !important;
  }
  .mr-px-hd-80 {
    margin-right: 80px !important;
  }
  .mb-px-hd-80 {
    margin-bottom: 80px !important;
  }
  .mt-px-hd-80 {
    margin-top: 80px !important;
  }
  .mx-px-hd-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-px-hd-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-px-hd-85 {
    padding: 85px !important;
  }
  .pl-px-hd-85 {
    padding-left: 85px !important;
  }
  .pr-px-hd-85 {
    padding-right: 85px !important;
  }
  .pb-px-hd-85 {
    padding-bottom: 85px !important;
  }
  .pt-px-hd-85 {
    padding-top: 85px !important;
  }
  .px-px-hd-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
  }
  .py-px-hd-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .m-px-hd-85 {
    margin: 85px !important;
  }
  .ml-px-hd-85 {
    margin-left: 85px !important;
  }
  .mr-px-hd-85 {
    margin-right: 85px !important;
  }
  .mb-px-hd-85 {
    margin-bottom: 85px !important;
  }
  .mt-px-hd-85 {
    margin-top: 85px !important;
  }
  .mx-px-hd-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
  }
  .my-px-hd-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .p-px-hd-90 {
    padding: 90px !important;
  }
  .pl-px-hd-90 {
    padding-left: 90px !important;
  }
  .pr-px-hd-90 {
    padding-right: 90px !important;
  }
  .pb-px-hd-90 {
    padding-bottom: 90px !important;
  }
  .pt-px-hd-90 {
    padding-top: 90px !important;
  }
  .px-px-hd-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .py-px-hd-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-px-hd-90 {
    margin: 90px !important;
  }
  .ml-px-hd-90 {
    margin-left: 90px !important;
  }
  .mr-px-hd-90 {
    margin-right: 90px !important;
  }
  .mb-px-hd-90 {
    margin-bottom: 90px !important;
  }
  .mt-px-hd-90 {
    margin-top: 90px !important;
  }
  .mx-px-hd-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .my-px-hd-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-px-hd-95 {
    padding: 95px !important;
  }
  .pl-px-hd-95 {
    padding-left: 95px !important;
  }
  .pr-px-hd-95 {
    padding-right: 95px !important;
  }
  .pb-px-hd-95 {
    padding-bottom: 95px !important;
  }
  .pt-px-hd-95 {
    padding-top: 95px !important;
  }
  .px-px-hd-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
  .py-px-hd-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .m-px-hd-95 {
    margin: 95px !important;
  }
  .ml-px-hd-95 {
    margin-left: 95px !important;
  }
  .mr-px-hd-95 {
    margin-right: 95px !important;
  }
  .mb-px-hd-95 {
    margin-bottom: 95px !important;
  }
  .mt-px-hd-95 {
    margin-top: 95px !important;
  }
  .mx-px-hd-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
  }
  .my-px-hd-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .p-px-hd-100 {
    padding: 100px !important;
  }
  .pl-px-hd-100 {
    padding-left: 100px !important;
  }
  .pr-px-hd-100 {
    padding-right: 100px !important;
  }
  .pb-px-hd-100 {
    padding-bottom: 100px !important;
  }
  .pt-px-hd-100 {
    padding-top: 100px !important;
  }
  .px-px-hd-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .py-px-hd-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-px-hd-100 {
    margin: 100px !important;
  }
  .ml-px-hd-100 {
    margin-left: 100px !important;
  }
  .mr-px-hd-100 {
    margin-right: 100px !important;
  }
  .mb-px-hd-100 {
    margin-bottom: 100px !important;
  }
  .mt-px-hd-100 {
    margin-top: 100px !important;
  }
  .mx-px-hd-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .my-px-hd-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-px-hd-105 {
    padding: 105px !important;
  }
  .pl-px-hd-105 {
    padding-left: 105px !important;
  }
  .pr-px-hd-105 {
    padding-right: 105px !important;
  }
  .pb-px-hd-105 {
    padding-bottom: 105px !important;
  }
  .pt-px-hd-105 {
    padding-top: 105px !important;
  }
  .px-px-hd-105 {
    padding-left: 105px !important;
    padding-right: 105px !important;
  }
  .py-px-hd-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .m-px-hd-105 {
    margin: 105px !important;
  }
  .ml-px-hd-105 {
    margin-left: 105px !important;
  }
  .mr-px-hd-105 {
    margin-right: 105px !important;
  }
  .mb-px-hd-105 {
    margin-bottom: 105px !important;
  }
  .mt-px-hd-105 {
    margin-top: 105px !important;
  }
  .mx-px-hd-105 {
    margin-left: 105px !important;
    margin-right: 105px !important;
  }
  .my-px-hd-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .p-px-hd-110 {
    padding: 110px !important;
  }
  .pl-px-hd-110 {
    padding-left: 110px !important;
  }
  .pr-px-hd-110 {
    padding-right: 110px !important;
  }
  .pb-px-hd-110 {
    padding-bottom: 110px !important;
  }
  .pt-px-hd-110 {
    padding-top: 110px !important;
  }
  .px-px-hd-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
  }
  .py-px-hd-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .m-px-hd-110 {
    margin: 110px !important;
  }
  .ml-px-hd-110 {
    margin-left: 110px !important;
  }
  .mr-px-hd-110 {
    margin-right: 110px !important;
  }
  .mb-px-hd-110 {
    margin-bottom: 110px !important;
  }
  .mt-px-hd-110 {
    margin-top: 110px !important;
  }
  .mx-px-hd-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
  }
  .my-px-hd-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .p-px-hd-115 {
    padding: 115px !important;
  }
  .pl-px-hd-115 {
    padding-left: 115px !important;
  }
  .pr-px-hd-115 {
    padding-right: 115px !important;
  }
  .pb-px-hd-115 {
    padding-bottom: 115px !important;
  }
  .pt-px-hd-115 {
    padding-top: 115px !important;
  }
  .px-px-hd-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
  }
  .py-px-hd-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .m-px-hd-115 {
    margin: 115px !important;
  }
  .ml-px-hd-115 {
    margin-left: 115px !important;
  }
  .mr-px-hd-115 {
    margin-right: 115px !important;
  }
  .mb-px-hd-115 {
    margin-bottom: 115px !important;
  }
  .mt-px-hd-115 {
    margin-top: 115px !important;
  }
  .mx-px-hd-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
  }
  .my-px-hd-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .p-px-hd-120 {
    padding: 120px !important;
  }
  .pl-px-hd-120 {
    padding-left: 120px !important;
  }
  .pr-px-hd-120 {
    padding-right: 120px !important;
  }
  .pb-px-hd-120 {
    padding-bottom: 120px !important;
  }
  .pt-px-hd-120 {
    padding-top: 120px !important;
  }
  .px-px-hd-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
  }
  .py-px-hd-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .m-px-hd-120 {
    margin: 120px !important;
  }
  .ml-px-hd-120 {
    margin-left: 120px !important;
  }
  .mr-px-hd-120 {
    margin-right: 120px !important;
  }
  .mb-px-hd-120 {
    margin-bottom: 120px !important;
  }
  .mt-px-hd-120 {
    margin-top: 120px !important;
  }
  .mx-px-hd-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }
  .my-px-hd-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .p-px-hd-125 {
    padding: 125px !important;
  }
  .pl-px-hd-125 {
    padding-left: 125px !important;
  }
  .pr-px-hd-125 {
    padding-right: 125px !important;
  }
  .pb-px-hd-125 {
    padding-bottom: 125px !important;
  }
  .pt-px-hd-125 {
    padding-top: 125px !important;
  }
  .px-px-hd-125 {
    padding-left: 125px !important;
    padding-right: 125px !important;
  }
  .py-px-hd-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .m-px-hd-125 {
    margin: 125px !important;
  }
  .ml-px-hd-125 {
    margin-left: 125px !important;
  }
  .mr-px-hd-125 {
    margin-right: 125px !important;
  }
  .mb-px-hd-125 {
    margin-bottom: 125px !important;
  }
  .mt-px-hd-125 {
    margin-top: 125px !important;
  }
  .mx-px-hd-125 {
    margin-left: 125px !important;
    margin-right: 125px !important;
  }
  .my-px-hd-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .p-px-hd-130 {
    padding: 130px !important;
  }
  .pl-px-hd-130 {
    padding-left: 130px !important;
  }
  .pr-px-hd-130 {
    padding-right: 130px !important;
  }
  .pb-px-hd-130 {
    padding-bottom: 130px !important;
  }
  .pt-px-hd-130 {
    padding-top: 130px !important;
  }
  .px-px-hd-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
  }
  .py-px-hd-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .m-px-hd-130 {
    margin: 130px !important;
  }
  .ml-px-hd-130 {
    margin-left: 130px !important;
  }
  .mr-px-hd-130 {
    margin-right: 130px !important;
  }
  .mb-px-hd-130 {
    margin-bottom: 130px !important;
  }
  .mt-px-hd-130 {
    margin-top: 130px !important;
  }
  .mx-px-hd-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
  }
  .my-px-hd-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .p-px-hd-135 {
    padding: 135px !important;
  }
  .pl-px-hd-135 {
    padding-left: 135px !important;
  }
  .pr-px-hd-135 {
    padding-right: 135px !important;
  }
  .pb-px-hd-135 {
    padding-bottom: 135px !important;
  }
  .pt-px-hd-135 {
    padding-top: 135px !important;
  }
  .px-px-hd-135 {
    padding-left: 135px !important;
    padding-right: 135px !important;
  }
  .py-px-hd-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .m-px-hd-135 {
    margin: 135px !important;
  }
  .ml-px-hd-135 {
    margin-left: 135px !important;
  }
  .mr-px-hd-135 {
    margin-right: 135px !important;
  }
  .mb-px-hd-135 {
    margin-bottom: 135px !important;
  }
  .mt-px-hd-135 {
    margin-top: 135px !important;
  }
  .mx-px-hd-135 {
    margin-left: 135px !important;
    margin-right: 135px !important;
  }
  .my-px-hd-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .p-px-hd-140 {
    padding: 140px !important;
  }
  .pl-px-hd-140 {
    padding-left: 140px !important;
  }
  .pr-px-hd-140 {
    padding-right: 140px !important;
  }
  .pb-px-hd-140 {
    padding-bottom: 140px !important;
  }
  .pt-px-hd-140 {
    padding-top: 140px !important;
  }
  .px-px-hd-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
  }
  .py-px-hd-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .m-px-hd-140 {
    margin: 140px !important;
  }
  .ml-px-hd-140 {
    margin-left: 140px !important;
  }
  .mr-px-hd-140 {
    margin-right: 140px !important;
  }
  .mb-px-hd-140 {
    margin-bottom: 140px !important;
  }
  .mt-px-hd-140 {
    margin-top: 140px !important;
  }
  .mx-px-hd-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
  .my-px-hd-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .p-px-hd-145 {
    padding: 145px !important;
  }
  .pl-px-hd-145 {
    padding-left: 145px !important;
  }
  .pr-px-hd-145 {
    padding-right: 145px !important;
  }
  .pb-px-hd-145 {
    padding-bottom: 145px !important;
  }
  .pt-px-hd-145 {
    padding-top: 145px !important;
  }
  .px-px-hd-145 {
    padding-left: 145px !important;
    padding-right: 145px !important;
  }
  .py-px-hd-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .m-px-hd-145 {
    margin: 145px !important;
  }
  .ml-px-hd-145 {
    margin-left: 145px !important;
  }
  .mr-px-hd-145 {
    margin-right: 145px !important;
  }
  .mb-px-hd-145 {
    margin-bottom: 145px !important;
  }
  .mt-px-hd-145 {
    margin-top: 145px !important;
  }
  .mx-px-hd-145 {
    margin-left: 145px !important;
    margin-right: 145px !important;
  }
  .my-px-hd-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .p-px-hd-150 {
    padding: 150px !important;
  }
  .pl-px-hd-150 {
    padding-left: 150px !important;
  }
  .pr-px-hd-150 {
    padding-right: 150px !important;
  }
  .pb-px-hd-150 {
    padding-bottom: 150px !important;
  }
  .pt-px-hd-150 {
    padding-top: 150px !important;
  }
  .px-px-hd-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
  .py-px-hd-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .m-px-hd-150 {
    margin: 150px !important;
  }
  .ml-px-hd-150 {
    margin-left: 150px !important;
  }
  .mr-px-hd-150 {
    margin-right: 150px !important;
  }
  .mb-px-hd-150 {
    margin-bottom: 150px !important;
  }
  .mt-px-hd-150 {
    margin-top: 150px !important;
  }
  .mx-px-hd-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
  }
  .my-px-hd-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .p-px-hd-155 {
    padding: 155px !important;
  }
  .pl-px-hd-155 {
    padding-left: 155px !important;
  }
  .pr-px-hd-155 {
    padding-right: 155px !important;
  }
  .pb-px-hd-155 {
    padding-bottom: 155px !important;
  }
  .pt-px-hd-155 {
    padding-top: 155px !important;
  }
  .px-px-hd-155 {
    padding-left: 155px !important;
    padding-right: 155px !important;
  }
  .py-px-hd-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .m-px-hd-155 {
    margin: 155px !important;
  }
  .ml-px-hd-155 {
    margin-left: 155px !important;
  }
  .mr-px-hd-155 {
    margin-right: 155px !important;
  }
  .mb-px-hd-155 {
    margin-bottom: 155px !important;
  }
  .mt-px-hd-155 {
    margin-top: 155px !important;
  }
  .mx-px-hd-155 {
    margin-left: 155px !important;
    margin-right: 155px !important;
  }
  .my-px-hd-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .p-px-hd-160 {
    padding: 160px !important;
  }
  .pl-px-hd-160 {
    padding-left: 160px !important;
  }
  .pr-px-hd-160 {
    padding-right: 160px !important;
  }
  .pb-px-hd-160 {
    padding-bottom: 160px !important;
  }
  .pt-px-hd-160 {
    padding-top: 160px !important;
  }
  .px-px-hd-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
  }
  .py-px-hd-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .m-px-hd-160 {
    margin: 160px !important;
  }
  .ml-px-hd-160 {
    margin-left: 160px !important;
  }
  .mr-px-hd-160 {
    margin-right: 160px !important;
  }
  .mb-px-hd-160 {
    margin-bottom: 160px !important;
  }
  .mt-px-hd-160 {
    margin-top: 160px !important;
  }
  .mx-px-hd-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }
  .my-px-hd-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .p-px-hd-165 {
    padding: 165px !important;
  }
  .pl-px-hd-165 {
    padding-left: 165px !important;
  }
  .pr-px-hd-165 {
    padding-right: 165px !important;
  }
  .pb-px-hd-165 {
    padding-bottom: 165px !important;
  }
  .pt-px-hd-165 {
    padding-top: 165px !important;
  }
  .px-px-hd-165 {
    padding-left: 165px !important;
    padding-right: 165px !important;
  }
  .py-px-hd-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .m-px-hd-165 {
    margin: 165px !important;
  }
  .ml-px-hd-165 {
    margin-left: 165px !important;
  }
  .mr-px-hd-165 {
    margin-right: 165px !important;
  }
  .mb-px-hd-165 {
    margin-bottom: 165px !important;
  }
  .mt-px-hd-165 {
    margin-top: 165px !important;
  }
  .mx-px-hd-165 {
    margin-left: 165px !important;
    margin-right: 165px !important;
  }
  .my-px-hd-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .p-px-hd-170 {
    padding: 170px !important;
  }
  .pl-px-hd-170 {
    padding-left: 170px !important;
  }
  .pr-px-hd-170 {
    padding-right: 170px !important;
  }
  .pb-px-hd-170 {
    padding-bottom: 170px !important;
  }
  .pt-px-hd-170 {
    padding-top: 170px !important;
  }
  .px-px-hd-170 {
    padding-left: 170px !important;
    padding-right: 170px !important;
  }
  .py-px-hd-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .m-px-hd-170 {
    margin: 170px !important;
  }
  .ml-px-hd-170 {
    margin-left: 170px !important;
  }
  .mr-px-hd-170 {
    margin-right: 170px !important;
  }
  .mb-px-hd-170 {
    margin-bottom: 170px !important;
  }
  .mt-px-hd-170 {
    margin-top: 170px !important;
  }
  .mx-px-hd-170 {
    margin-left: 170px !important;
    margin-right: 170px !important;
  }
  .my-px-hd-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .p-px-hd-175 {
    padding: 175px !important;
  }
  .pl-px-hd-175 {
    padding-left: 175px !important;
  }
  .pr-px-hd-175 {
    padding-right: 175px !important;
  }
  .pb-px-hd-175 {
    padding-bottom: 175px !important;
  }
  .pt-px-hd-175 {
    padding-top: 175px !important;
  }
  .px-px-hd-175 {
    padding-left: 175px !important;
    padding-right: 175px !important;
  }
  .py-px-hd-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .m-px-hd-175 {
    margin: 175px !important;
  }
  .ml-px-hd-175 {
    margin-left: 175px !important;
  }
  .mr-px-hd-175 {
    margin-right: 175px !important;
  }
  .mb-px-hd-175 {
    margin-bottom: 175px !important;
  }
  .mt-px-hd-175 {
    margin-top: 175px !important;
  }
  .mx-px-hd-175 {
    margin-left: 175px !important;
    margin-right: 175px !important;
  }
  .my-px-hd-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .p-px-hd-180 {
    padding: 180px !important;
  }
  .pl-px-hd-180 {
    padding-left: 180px !important;
  }
  .pr-px-hd-180 {
    padding-right: 180px !important;
  }
  .pb-px-hd-180 {
    padding-bottom: 180px !important;
  }
  .pt-px-hd-180 {
    padding-top: 180px !important;
  }
  .px-px-hd-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
  .py-px-hd-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .m-px-hd-180 {
    margin: 180px !important;
  }
  .ml-px-hd-180 {
    margin-left: 180px !important;
  }
  .mr-px-hd-180 {
    margin-right: 180px !important;
  }
  .mb-px-hd-180 {
    margin-bottom: 180px !important;
  }
  .mt-px-hd-180 {
    margin-top: 180px !important;
  }
  .mx-px-hd-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }
  .my-px-hd-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .p-px-hd-185 {
    padding: 185px !important;
  }
  .pl-px-hd-185 {
    padding-left: 185px !important;
  }
  .pr-px-hd-185 {
    padding-right: 185px !important;
  }
  .pb-px-hd-185 {
    padding-bottom: 185px !important;
  }
  .pt-px-hd-185 {
    padding-top: 185px !important;
  }
  .px-px-hd-185 {
    padding-left: 185px !important;
    padding-right: 185px !important;
  }
  .py-px-hd-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .m-px-hd-185 {
    margin: 185px !important;
  }
  .ml-px-hd-185 {
    margin-left: 185px !important;
  }
  .mr-px-hd-185 {
    margin-right: 185px !important;
  }
  .mb-px-hd-185 {
    margin-bottom: 185px !important;
  }
  .mt-px-hd-185 {
    margin-top: 185px !important;
  }
  .mx-px-hd-185 {
    margin-left: 185px !important;
    margin-right: 185px !important;
  }
  .my-px-hd-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .p-px-hd-190 {
    padding: 190px !important;
  }
  .pl-px-hd-190 {
    padding-left: 190px !important;
  }
  .pr-px-hd-190 {
    padding-right: 190px !important;
  }
  .pb-px-hd-190 {
    padding-bottom: 190px !important;
  }
  .pt-px-hd-190 {
    padding-top: 190px !important;
  }
  .px-px-hd-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
  }
  .py-px-hd-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .m-px-hd-190 {
    margin: 190px !important;
  }
  .ml-px-hd-190 {
    margin-left: 190px !important;
  }
  .mr-px-hd-190 {
    margin-right: 190px !important;
  }
  .mb-px-hd-190 {
    margin-bottom: 190px !important;
  }
  .mt-px-hd-190 {
    margin-top: 190px !important;
  }
  .mx-px-hd-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
  }
  .my-px-hd-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .p-px-hd-195 {
    padding: 195px !important;
  }
  .pl-px-hd-195 {
    padding-left: 195px !important;
  }
  .pr-px-hd-195 {
    padding-right: 195px !important;
  }
  .pb-px-hd-195 {
    padding-bottom: 195px !important;
  }
  .pt-px-hd-195 {
    padding-top: 195px !important;
  }
  .px-px-hd-195 {
    padding-left: 195px !important;
    padding-right: 195px !important;
  }
  .py-px-hd-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .m-px-hd-195 {
    margin: 195px !important;
  }
  .ml-px-hd-195 {
    margin-left: 195px !important;
  }
  .mr-px-hd-195 {
    margin-right: 195px !important;
  }
  .mb-px-hd-195 {
    margin-bottom: 195px !important;
  }
  .mt-px-hd-195 {
    margin-top: 195px !important;
  }
  .mx-px-hd-195 {
    margin-left: 195px !important;
    margin-right: 195px !important;
  }
  .my-px-hd-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .p-px-hd-200 {
    padding: 200px !important;
  }
  .pl-px-hd-200 {
    padding-left: 200px !important;
  }
  .pr-px-hd-200 {
    padding-right: 200px !important;
  }
  .pb-px-hd-200 {
    padding-bottom: 200px !important;
  }
  .pt-px-hd-200 {
    padding-top: 200px !important;
  }
  .px-px-hd-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }
  .py-px-hd-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .m-px-hd-200 {
    margin: 200px !important;
  }
  .ml-px-hd-200 {
    margin-left: 200px !important;
  }
  .mr-px-hd-200 {
    margin-right: 200px !important;
  }
  .mb-px-hd-200 {
    margin-bottom: 200px !important;
  }
  .mt-px-hd-200 {
    margin-top: 200px !important;
  }
  .mx-px-hd-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }
  .my-px-hd-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
}
.border-yellow {
  color: #FF9F1A !important;
}

.border-default {
  color: #292413 !important;
}

.border-transparent {
  color: transparent !important;
}

.text-yellow {
  color: #FF9F1A !important;
}

.text-default {
  color: #292413 !important;
}

.line-height-100 {
  line-height: 100% !important;
}

.line-height-110 {
  line-height: 110% !important;
}

.line-height-120 {
  line-height: 120% !important;
}

.line-height-130 {
  line-height: 130% !important;
}

.line-height-140 {
  line-height: 140% !important;
}

.line-height-150 {
  line-height: 150% !important;
}

.text-size-5 {
  font-size: 5px !important;
}

.text-size-6 {
  font-size: 6px !important;
}

.text-size-7 {
  font-size: 7px !important;
}

.text-size-8 {
  font-size: 8px !important;
}

.text-size-9 {
  font-size: 9px !important;
}

.text-size-10 {
  font-size: 10px !important;
}

.text-size-11 {
  font-size: 11px !important;
}

.text-size-12 {
  font-size: 12px !important;
}

.text-size-13 {
  font-size: 13px !important;
}

.text-size-14 {
  font-size: 14px !important;
}

.text-size-15 {
  font-size: 15px !important;
}

.text-size-16 {
  font-size: 16px !important;
}

.text-size-17 {
  font-size: 17px !important;
}

.text-size-18 {
  font-size: 18px !important;
}

.text-size-19 {
  font-size: 19px !important;
}

.text-size-20 {
  font-size: 20px !important;
}

.text-size-21 {
  font-size: 21px !important;
}

.text-size-22 {
  font-size: 22px !important;
}

.text-size-23 {
  font-size: 23px !important;
}

.text-size-24 {
  font-size: 24px !important;
}

.text-size-25 {
  font-size: 25px !important;
}

.text-size-26 {
  font-size: 26px !important;
}

.text-size-27 {
  font-size: 27px !important;
}

.text-size-28 {
  font-size: 28px !important;
}

.text-size-29 {
  font-size: 29px !important;
}

.text-size-30 {
  font-size: 30px !important;
}

.text-size-31 {
  font-size: 31px !important;
}

.text-size-32 {
  font-size: 32px !important;
}

.text-size-33 {
  font-size: 33px !important;
}

.text-size-34 {
  font-size: 34px !important;
}

.text-size-35 {
  font-size: 35px !important;
}

.text-size-36 {
  font-size: 36px !important;
}

.text-size-37 {
  font-size: 37px !important;
}

.text-size-38 {
  font-size: 38px !important;
}

.text-size-39 {
  font-size: 39px !important;
}

.text-size-40 {
  font-size: 40px !important;
}

.text-size-41 {
  font-size: 41px !important;
}

.text-size-42 {
  font-size: 42px !important;
}

.text-size-43 {
  font-size: 43px !important;
}

.text-size-44 {
  font-size: 44px !important;
}

.text-size-45 {
  font-size: 45px !important;
}

.text-size-46 {
  font-size: 46px !important;
}

.text-size-47 {
  font-size: 47px !important;
}

.text-size-48 {
  font-size: 48px !important;
}

.text-size-49 {
  font-size: 49px !important;
}

.text-size-50 {
  font-size: 50px !important;
}

.text-size-51 {
  font-size: 51px !important;
}

.text-size-52 {
  font-size: 52px !important;
}

.text-size-53 {
  font-size: 53px !important;
}

.text-size-54 {
  font-size: 54px !important;
}

.text-size-55 {
  font-size: 55px !important;
}

.text-size-56 {
  font-size: 56px !important;
}

.text-size-57 {
  font-size: 57px !important;
}

.text-size-58 {
  font-size: 58px !important;
}

.text-size-59 {
  font-size: 59px !important;
}

.text-size-60 {
  font-size: 60px !important;
}

.text-size-61 {
  font-size: 61px !important;
}

.text-size-62 {
  font-size: 62px !important;
}

.text-size-63 {
  font-size: 63px !important;
}

.text-size-64 {
  font-size: 64px !important;
}

.text-size-65 {
  font-size: 65px !important;
}

.text-size-66 {
  font-size: 66px !important;
}

.text-size-67 {
  font-size: 67px !important;
}

.text-size-68 {
  font-size: 68px !important;
}

.text-size-69 {
  font-size: 69px !important;
}

.text-size-70 {
  font-size: 70px !important;
}

.text-size-71 {
  font-size: 71px !important;
}

.text-size-72 {
  font-size: 72px !important;
}

@media only screen and (min-width: 320px) {
  .text-size-xxs-5 {
    font-size: 5px !important;
  }
  .text-size-xxs-6 {
    font-size: 6px !important;
  }
  .text-size-xxs-7 {
    font-size: 7px !important;
  }
  .text-size-xxs-8 {
    font-size: 8px !important;
  }
  .text-size-xxs-9 {
    font-size: 9px !important;
  }
  .text-size-xxs-10 {
    font-size: 10px !important;
  }
  .text-size-xxs-11 {
    font-size: 11px !important;
  }
  .text-size-xxs-12 {
    font-size: 12px !important;
  }
  .text-size-xxs-13 {
    font-size: 13px !important;
  }
  .text-size-xxs-14 {
    font-size: 14px !important;
  }
  .text-size-xxs-15 {
    font-size: 15px !important;
  }
  .text-size-xxs-16 {
    font-size: 16px !important;
  }
  .text-size-xxs-17 {
    font-size: 17px !important;
  }
  .text-size-xxs-18 {
    font-size: 18px !important;
  }
  .text-size-xxs-19 {
    font-size: 19px !important;
  }
  .text-size-xxs-20 {
    font-size: 20px !important;
  }
  .text-size-xxs-21 {
    font-size: 21px !important;
  }
  .text-size-xxs-22 {
    font-size: 22px !important;
  }
  .text-size-xxs-23 {
    font-size: 23px !important;
  }
  .text-size-xxs-24 {
    font-size: 24px !important;
  }
  .text-size-xxs-25 {
    font-size: 25px !important;
  }
  .text-size-xxs-26 {
    font-size: 26px !important;
  }
  .text-size-xxs-27 {
    font-size: 27px !important;
  }
  .text-size-xxs-28 {
    font-size: 28px !important;
  }
  .text-size-xxs-29 {
    font-size: 29px !important;
  }
  .text-size-xxs-30 {
    font-size: 30px !important;
  }
  .text-size-xxs-31 {
    font-size: 31px !important;
  }
  .text-size-xxs-32 {
    font-size: 32px !important;
  }
  .text-size-xxs-33 {
    font-size: 33px !important;
  }
  .text-size-xxs-34 {
    font-size: 34px !important;
  }
  .text-size-xxs-35 {
    font-size: 35px !important;
  }
  .text-size-xxs-36 {
    font-size: 36px !important;
  }
  .text-size-xxs-37 {
    font-size: 37px !important;
  }
  .text-size-xxs-38 {
    font-size: 38px !important;
  }
  .text-size-xxs-39 {
    font-size: 39px !important;
  }
  .text-size-xxs-40 {
    font-size: 40px !important;
  }
  .text-size-xxs-41 {
    font-size: 41px !important;
  }
  .text-size-xxs-42 {
    font-size: 42px !important;
  }
  .text-size-xxs-43 {
    font-size: 43px !important;
  }
  .text-size-xxs-44 {
    font-size: 44px !important;
  }
  .text-size-xxs-45 {
    font-size: 45px !important;
  }
  .text-size-xxs-46 {
    font-size: 46px !important;
  }
  .text-size-xxs-47 {
    font-size: 47px !important;
  }
  .text-size-xxs-48 {
    font-size: 48px !important;
  }
  .text-size-xxs-49 {
    font-size: 49px !important;
  }
  .text-size-xxs-50 {
    font-size: 50px !important;
  }
  .text-size-xxs-51 {
    font-size: 51px !important;
  }
  .text-size-xxs-52 {
    font-size: 52px !important;
  }
  .text-size-xxs-53 {
    font-size: 53px !important;
  }
  .text-size-xxs-54 {
    font-size: 54px !important;
  }
  .text-size-xxs-55 {
    font-size: 55px !important;
  }
  .text-size-xxs-56 {
    font-size: 56px !important;
  }
  .text-size-xxs-57 {
    font-size: 57px !important;
  }
  .text-size-xxs-58 {
    font-size: 58px !important;
  }
  .text-size-xxs-59 {
    font-size: 59px !important;
  }
  .text-size-xxs-60 {
    font-size: 60px !important;
  }
  .text-size-xxs-61 {
    font-size: 61px !important;
  }
  .text-size-xxs-62 {
    font-size: 62px !important;
  }
  .text-size-xxs-63 {
    font-size: 63px !important;
  }
  .text-size-xxs-64 {
    font-size: 64px !important;
  }
  .text-size-xxs-65 {
    font-size: 65px !important;
  }
  .text-size-xxs-66 {
    font-size: 66px !important;
  }
  .text-size-xxs-67 {
    font-size: 67px !important;
  }
  .text-size-xxs-68 {
    font-size: 68px !important;
  }
  .text-size-xxs-69 {
    font-size: 69px !important;
  }
  .text-size-xxs-70 {
    font-size: 70px !important;
  }
  .text-size-xxs-71 {
    font-size: 71px !important;
  }
  .text-size-xxs-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 414px) {
  .text-size-xs-5 {
    font-size: 5px !important;
  }
  .text-size-xs-6 {
    font-size: 6px !important;
  }
  .text-size-xs-7 {
    font-size: 7px !important;
  }
  .text-size-xs-8 {
    font-size: 8px !important;
  }
  .text-size-xs-9 {
    font-size: 9px !important;
  }
  .text-size-xs-10 {
    font-size: 10px !important;
  }
  .text-size-xs-11 {
    font-size: 11px !important;
  }
  .text-size-xs-12 {
    font-size: 12px !important;
  }
  .text-size-xs-13 {
    font-size: 13px !important;
  }
  .text-size-xs-14 {
    font-size: 14px !important;
  }
  .text-size-xs-15 {
    font-size: 15px !important;
  }
  .text-size-xs-16 {
    font-size: 16px !important;
  }
  .text-size-xs-17 {
    font-size: 17px !important;
  }
  .text-size-xs-18 {
    font-size: 18px !important;
  }
  .text-size-xs-19 {
    font-size: 19px !important;
  }
  .text-size-xs-20 {
    font-size: 20px !important;
  }
  .text-size-xs-21 {
    font-size: 21px !important;
  }
  .text-size-xs-22 {
    font-size: 22px !important;
  }
  .text-size-xs-23 {
    font-size: 23px !important;
  }
  .text-size-xs-24 {
    font-size: 24px !important;
  }
  .text-size-xs-25 {
    font-size: 25px !important;
  }
  .text-size-xs-26 {
    font-size: 26px !important;
  }
  .text-size-xs-27 {
    font-size: 27px !important;
  }
  .text-size-xs-28 {
    font-size: 28px !important;
  }
  .text-size-xs-29 {
    font-size: 29px !important;
  }
  .text-size-xs-30 {
    font-size: 30px !important;
  }
  .text-size-xs-31 {
    font-size: 31px !important;
  }
  .text-size-xs-32 {
    font-size: 32px !important;
  }
  .text-size-xs-33 {
    font-size: 33px !important;
  }
  .text-size-xs-34 {
    font-size: 34px !important;
  }
  .text-size-xs-35 {
    font-size: 35px !important;
  }
  .text-size-xs-36 {
    font-size: 36px !important;
  }
  .text-size-xs-37 {
    font-size: 37px !important;
  }
  .text-size-xs-38 {
    font-size: 38px !important;
  }
  .text-size-xs-39 {
    font-size: 39px !important;
  }
  .text-size-xs-40 {
    font-size: 40px !important;
  }
  .text-size-xs-41 {
    font-size: 41px !important;
  }
  .text-size-xs-42 {
    font-size: 42px !important;
  }
  .text-size-xs-43 {
    font-size: 43px !important;
  }
  .text-size-xs-44 {
    font-size: 44px !important;
  }
  .text-size-xs-45 {
    font-size: 45px !important;
  }
  .text-size-xs-46 {
    font-size: 46px !important;
  }
  .text-size-xs-47 {
    font-size: 47px !important;
  }
  .text-size-xs-48 {
    font-size: 48px !important;
  }
  .text-size-xs-49 {
    font-size: 49px !important;
  }
  .text-size-xs-50 {
    font-size: 50px !important;
  }
  .text-size-xs-51 {
    font-size: 51px !important;
  }
  .text-size-xs-52 {
    font-size: 52px !important;
  }
  .text-size-xs-53 {
    font-size: 53px !important;
  }
  .text-size-xs-54 {
    font-size: 54px !important;
  }
  .text-size-xs-55 {
    font-size: 55px !important;
  }
  .text-size-xs-56 {
    font-size: 56px !important;
  }
  .text-size-xs-57 {
    font-size: 57px !important;
  }
  .text-size-xs-58 {
    font-size: 58px !important;
  }
  .text-size-xs-59 {
    font-size: 59px !important;
  }
  .text-size-xs-60 {
    font-size: 60px !important;
  }
  .text-size-xs-61 {
    font-size: 61px !important;
  }
  .text-size-xs-62 {
    font-size: 62px !important;
  }
  .text-size-xs-63 {
    font-size: 63px !important;
  }
  .text-size-xs-64 {
    font-size: 64px !important;
  }
  .text-size-xs-65 {
    font-size: 65px !important;
  }
  .text-size-xs-66 {
    font-size: 66px !important;
  }
  .text-size-xs-67 {
    font-size: 67px !important;
  }
  .text-size-xs-68 {
    font-size: 68px !important;
  }
  .text-size-xs-69 {
    font-size: 69px !important;
  }
  .text-size-xs-70 {
    font-size: 70px !important;
  }
  .text-size-xs-71 {
    font-size: 71px !important;
  }
  .text-size-xs-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 576px) {
  .text-size-sm-5 {
    font-size: 5px !important;
  }
  .text-size-sm-6 {
    font-size: 6px !important;
  }
  .text-size-sm-7 {
    font-size: 7px !important;
  }
  .text-size-sm-8 {
    font-size: 8px !important;
  }
  .text-size-sm-9 {
    font-size: 9px !important;
  }
  .text-size-sm-10 {
    font-size: 10px !important;
  }
  .text-size-sm-11 {
    font-size: 11px !important;
  }
  .text-size-sm-12 {
    font-size: 12px !important;
  }
  .text-size-sm-13 {
    font-size: 13px !important;
  }
  .text-size-sm-14 {
    font-size: 14px !important;
  }
  .text-size-sm-15 {
    font-size: 15px !important;
  }
  .text-size-sm-16 {
    font-size: 16px !important;
  }
  .text-size-sm-17 {
    font-size: 17px !important;
  }
  .text-size-sm-18 {
    font-size: 18px !important;
  }
  .text-size-sm-19 {
    font-size: 19px !important;
  }
  .text-size-sm-20 {
    font-size: 20px !important;
  }
  .text-size-sm-21 {
    font-size: 21px !important;
  }
  .text-size-sm-22 {
    font-size: 22px !important;
  }
  .text-size-sm-23 {
    font-size: 23px !important;
  }
  .text-size-sm-24 {
    font-size: 24px !important;
  }
  .text-size-sm-25 {
    font-size: 25px !important;
  }
  .text-size-sm-26 {
    font-size: 26px !important;
  }
  .text-size-sm-27 {
    font-size: 27px !important;
  }
  .text-size-sm-28 {
    font-size: 28px !important;
  }
  .text-size-sm-29 {
    font-size: 29px !important;
  }
  .text-size-sm-30 {
    font-size: 30px !important;
  }
  .text-size-sm-31 {
    font-size: 31px !important;
  }
  .text-size-sm-32 {
    font-size: 32px !important;
  }
  .text-size-sm-33 {
    font-size: 33px !important;
  }
  .text-size-sm-34 {
    font-size: 34px !important;
  }
  .text-size-sm-35 {
    font-size: 35px !important;
  }
  .text-size-sm-36 {
    font-size: 36px !important;
  }
  .text-size-sm-37 {
    font-size: 37px !important;
  }
  .text-size-sm-38 {
    font-size: 38px !important;
  }
  .text-size-sm-39 {
    font-size: 39px !important;
  }
  .text-size-sm-40 {
    font-size: 40px !important;
  }
  .text-size-sm-41 {
    font-size: 41px !important;
  }
  .text-size-sm-42 {
    font-size: 42px !important;
  }
  .text-size-sm-43 {
    font-size: 43px !important;
  }
  .text-size-sm-44 {
    font-size: 44px !important;
  }
  .text-size-sm-45 {
    font-size: 45px !important;
  }
  .text-size-sm-46 {
    font-size: 46px !important;
  }
  .text-size-sm-47 {
    font-size: 47px !important;
  }
  .text-size-sm-48 {
    font-size: 48px !important;
  }
  .text-size-sm-49 {
    font-size: 49px !important;
  }
  .text-size-sm-50 {
    font-size: 50px !important;
  }
  .text-size-sm-51 {
    font-size: 51px !important;
  }
  .text-size-sm-52 {
    font-size: 52px !important;
  }
  .text-size-sm-53 {
    font-size: 53px !important;
  }
  .text-size-sm-54 {
    font-size: 54px !important;
  }
  .text-size-sm-55 {
    font-size: 55px !important;
  }
  .text-size-sm-56 {
    font-size: 56px !important;
  }
  .text-size-sm-57 {
    font-size: 57px !important;
  }
  .text-size-sm-58 {
    font-size: 58px !important;
  }
  .text-size-sm-59 {
    font-size: 59px !important;
  }
  .text-size-sm-60 {
    font-size: 60px !important;
  }
  .text-size-sm-61 {
    font-size: 61px !important;
  }
  .text-size-sm-62 {
    font-size: 62px !important;
  }
  .text-size-sm-63 {
    font-size: 63px !important;
  }
  .text-size-sm-64 {
    font-size: 64px !important;
  }
  .text-size-sm-65 {
    font-size: 65px !important;
  }
  .text-size-sm-66 {
    font-size: 66px !important;
  }
  .text-size-sm-67 {
    font-size: 67px !important;
  }
  .text-size-sm-68 {
    font-size: 68px !important;
  }
  .text-size-sm-69 {
    font-size: 69px !important;
  }
  .text-size-sm-70 {
    font-size: 70px !important;
  }
  .text-size-sm-71 {
    font-size: 71px !important;
  }
  .text-size-sm-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 768px) {
  .text-size-md-5 {
    font-size: 5px !important;
  }
  .text-size-md-6 {
    font-size: 6px !important;
  }
  .text-size-md-7 {
    font-size: 7px !important;
  }
  .text-size-md-8 {
    font-size: 8px !important;
  }
  .text-size-md-9 {
    font-size: 9px !important;
  }
  .text-size-md-10 {
    font-size: 10px !important;
  }
  .text-size-md-11 {
    font-size: 11px !important;
  }
  .text-size-md-12 {
    font-size: 12px !important;
  }
  .text-size-md-13 {
    font-size: 13px !important;
  }
  .text-size-md-14 {
    font-size: 14px !important;
  }
  .text-size-md-15 {
    font-size: 15px !important;
  }
  .text-size-md-16 {
    font-size: 16px !important;
  }
  .text-size-md-17 {
    font-size: 17px !important;
  }
  .text-size-md-18 {
    font-size: 18px !important;
  }
  .text-size-md-19 {
    font-size: 19px !important;
  }
  .text-size-md-20 {
    font-size: 20px !important;
  }
  .text-size-md-21 {
    font-size: 21px !important;
  }
  .text-size-md-22 {
    font-size: 22px !important;
  }
  .text-size-md-23 {
    font-size: 23px !important;
  }
  .text-size-md-24 {
    font-size: 24px !important;
  }
  .text-size-md-25 {
    font-size: 25px !important;
  }
  .text-size-md-26 {
    font-size: 26px !important;
  }
  .text-size-md-27 {
    font-size: 27px !important;
  }
  .text-size-md-28 {
    font-size: 28px !important;
  }
  .text-size-md-29 {
    font-size: 29px !important;
  }
  .text-size-md-30 {
    font-size: 30px !important;
  }
  .text-size-md-31 {
    font-size: 31px !important;
  }
  .text-size-md-32 {
    font-size: 32px !important;
  }
  .text-size-md-33 {
    font-size: 33px !important;
  }
  .text-size-md-34 {
    font-size: 34px !important;
  }
  .text-size-md-35 {
    font-size: 35px !important;
  }
  .text-size-md-36 {
    font-size: 36px !important;
  }
  .text-size-md-37 {
    font-size: 37px !important;
  }
  .text-size-md-38 {
    font-size: 38px !important;
  }
  .text-size-md-39 {
    font-size: 39px !important;
  }
  .text-size-md-40 {
    font-size: 40px !important;
  }
  .text-size-md-41 {
    font-size: 41px !important;
  }
  .text-size-md-42 {
    font-size: 42px !important;
  }
  .text-size-md-43 {
    font-size: 43px !important;
  }
  .text-size-md-44 {
    font-size: 44px !important;
  }
  .text-size-md-45 {
    font-size: 45px !important;
  }
  .text-size-md-46 {
    font-size: 46px !important;
  }
  .text-size-md-47 {
    font-size: 47px !important;
  }
  .text-size-md-48 {
    font-size: 48px !important;
  }
  .text-size-md-49 {
    font-size: 49px !important;
  }
  .text-size-md-50 {
    font-size: 50px !important;
  }
  .text-size-md-51 {
    font-size: 51px !important;
  }
  .text-size-md-52 {
    font-size: 52px !important;
  }
  .text-size-md-53 {
    font-size: 53px !important;
  }
  .text-size-md-54 {
    font-size: 54px !important;
  }
  .text-size-md-55 {
    font-size: 55px !important;
  }
  .text-size-md-56 {
    font-size: 56px !important;
  }
  .text-size-md-57 {
    font-size: 57px !important;
  }
  .text-size-md-58 {
    font-size: 58px !important;
  }
  .text-size-md-59 {
    font-size: 59px !important;
  }
  .text-size-md-60 {
    font-size: 60px !important;
  }
  .text-size-md-61 {
    font-size: 61px !important;
  }
  .text-size-md-62 {
    font-size: 62px !important;
  }
  .text-size-md-63 {
    font-size: 63px !important;
  }
  .text-size-md-64 {
    font-size: 64px !important;
  }
  .text-size-md-65 {
    font-size: 65px !important;
  }
  .text-size-md-66 {
    font-size: 66px !important;
  }
  .text-size-md-67 {
    font-size: 67px !important;
  }
  .text-size-md-68 {
    font-size: 68px !important;
  }
  .text-size-md-69 {
    font-size: 69px !important;
  }
  .text-size-md-70 {
    font-size: 70px !important;
  }
  .text-size-md-71 {
    font-size: 71px !important;
  }
  .text-size-md-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 992px) {
  .text-size-lg-5 {
    font-size: 5px !important;
  }
  .text-size-lg-6 {
    font-size: 6px !important;
  }
  .text-size-lg-7 {
    font-size: 7px !important;
  }
  .text-size-lg-8 {
    font-size: 8px !important;
  }
  .text-size-lg-9 {
    font-size: 9px !important;
  }
  .text-size-lg-10 {
    font-size: 10px !important;
  }
  .text-size-lg-11 {
    font-size: 11px !important;
  }
  .text-size-lg-12 {
    font-size: 12px !important;
  }
  .text-size-lg-13 {
    font-size: 13px !important;
  }
  .text-size-lg-14 {
    font-size: 14px !important;
  }
  .text-size-lg-15 {
    font-size: 15px !important;
  }
  .text-size-lg-16 {
    font-size: 16px !important;
  }
  .text-size-lg-17 {
    font-size: 17px !important;
  }
  .text-size-lg-18 {
    font-size: 18px !important;
  }
  .text-size-lg-19 {
    font-size: 19px !important;
  }
  .text-size-lg-20 {
    font-size: 20px !important;
  }
  .text-size-lg-21 {
    font-size: 21px !important;
  }
  .text-size-lg-22 {
    font-size: 22px !important;
  }
  .text-size-lg-23 {
    font-size: 23px !important;
  }
  .text-size-lg-24 {
    font-size: 24px !important;
  }
  .text-size-lg-25 {
    font-size: 25px !important;
  }
  .text-size-lg-26 {
    font-size: 26px !important;
  }
  .text-size-lg-27 {
    font-size: 27px !important;
  }
  .text-size-lg-28 {
    font-size: 28px !important;
  }
  .text-size-lg-29 {
    font-size: 29px !important;
  }
  .text-size-lg-30 {
    font-size: 30px !important;
  }
  .text-size-lg-31 {
    font-size: 31px !important;
  }
  .text-size-lg-32 {
    font-size: 32px !important;
  }
  .text-size-lg-33 {
    font-size: 33px !important;
  }
  .text-size-lg-34 {
    font-size: 34px !important;
  }
  .text-size-lg-35 {
    font-size: 35px !important;
  }
  .text-size-lg-36 {
    font-size: 36px !important;
  }
  .text-size-lg-37 {
    font-size: 37px !important;
  }
  .text-size-lg-38 {
    font-size: 38px !important;
  }
  .text-size-lg-39 {
    font-size: 39px !important;
  }
  .text-size-lg-40 {
    font-size: 40px !important;
  }
  .text-size-lg-41 {
    font-size: 41px !important;
  }
  .text-size-lg-42 {
    font-size: 42px !important;
  }
  .text-size-lg-43 {
    font-size: 43px !important;
  }
  .text-size-lg-44 {
    font-size: 44px !important;
  }
  .text-size-lg-45 {
    font-size: 45px !important;
  }
  .text-size-lg-46 {
    font-size: 46px !important;
  }
  .text-size-lg-47 {
    font-size: 47px !important;
  }
  .text-size-lg-48 {
    font-size: 48px !important;
  }
  .text-size-lg-49 {
    font-size: 49px !important;
  }
  .text-size-lg-50 {
    font-size: 50px !important;
  }
  .text-size-lg-51 {
    font-size: 51px !important;
  }
  .text-size-lg-52 {
    font-size: 52px !important;
  }
  .text-size-lg-53 {
    font-size: 53px !important;
  }
  .text-size-lg-54 {
    font-size: 54px !important;
  }
  .text-size-lg-55 {
    font-size: 55px !important;
  }
  .text-size-lg-56 {
    font-size: 56px !important;
  }
  .text-size-lg-57 {
    font-size: 57px !important;
  }
  .text-size-lg-58 {
    font-size: 58px !important;
  }
  .text-size-lg-59 {
    font-size: 59px !important;
  }
  .text-size-lg-60 {
    font-size: 60px !important;
  }
  .text-size-lg-61 {
    font-size: 61px !important;
  }
  .text-size-lg-62 {
    font-size: 62px !important;
  }
  .text-size-lg-63 {
    font-size: 63px !important;
  }
  .text-size-lg-64 {
    font-size: 64px !important;
  }
  .text-size-lg-65 {
    font-size: 65px !important;
  }
  .text-size-lg-66 {
    font-size: 66px !important;
  }
  .text-size-lg-67 {
    font-size: 67px !important;
  }
  .text-size-lg-68 {
    font-size: 68px !important;
  }
  .text-size-lg-69 {
    font-size: 69px !important;
  }
  .text-size-lg-70 {
    font-size: 70px !important;
  }
  .text-size-lg-71 {
    font-size: 71px !important;
  }
  .text-size-lg-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .text-size-xl-5 {
    font-size: 5px !important;
  }
  .text-size-xl-6 {
    font-size: 6px !important;
  }
  .text-size-xl-7 {
    font-size: 7px !important;
  }
  .text-size-xl-8 {
    font-size: 8px !important;
  }
  .text-size-xl-9 {
    font-size: 9px !important;
  }
  .text-size-xl-10 {
    font-size: 10px !important;
  }
  .text-size-xl-11 {
    font-size: 11px !important;
  }
  .text-size-xl-12 {
    font-size: 12px !important;
  }
  .text-size-xl-13 {
    font-size: 13px !important;
  }
  .text-size-xl-14 {
    font-size: 14px !important;
  }
  .text-size-xl-15 {
    font-size: 15px !important;
  }
  .text-size-xl-16 {
    font-size: 16px !important;
  }
  .text-size-xl-17 {
    font-size: 17px !important;
  }
  .text-size-xl-18 {
    font-size: 18px !important;
  }
  .text-size-xl-19 {
    font-size: 19px !important;
  }
  .text-size-xl-20 {
    font-size: 20px !important;
  }
  .text-size-xl-21 {
    font-size: 21px !important;
  }
  .text-size-xl-22 {
    font-size: 22px !important;
  }
  .text-size-xl-23 {
    font-size: 23px !important;
  }
  .text-size-xl-24 {
    font-size: 24px !important;
  }
  .text-size-xl-25 {
    font-size: 25px !important;
  }
  .text-size-xl-26 {
    font-size: 26px !important;
  }
  .text-size-xl-27 {
    font-size: 27px !important;
  }
  .text-size-xl-28 {
    font-size: 28px !important;
  }
  .text-size-xl-29 {
    font-size: 29px !important;
  }
  .text-size-xl-30 {
    font-size: 30px !important;
  }
  .text-size-xl-31 {
    font-size: 31px !important;
  }
  .text-size-xl-32 {
    font-size: 32px !important;
  }
  .text-size-xl-33 {
    font-size: 33px !important;
  }
  .text-size-xl-34 {
    font-size: 34px !important;
  }
  .text-size-xl-35 {
    font-size: 35px !important;
  }
  .text-size-xl-36 {
    font-size: 36px !important;
  }
  .text-size-xl-37 {
    font-size: 37px !important;
  }
  .text-size-xl-38 {
    font-size: 38px !important;
  }
  .text-size-xl-39 {
    font-size: 39px !important;
  }
  .text-size-xl-40 {
    font-size: 40px !important;
  }
  .text-size-xl-41 {
    font-size: 41px !important;
  }
  .text-size-xl-42 {
    font-size: 42px !important;
  }
  .text-size-xl-43 {
    font-size: 43px !important;
  }
  .text-size-xl-44 {
    font-size: 44px !important;
  }
  .text-size-xl-45 {
    font-size: 45px !important;
  }
  .text-size-xl-46 {
    font-size: 46px !important;
  }
  .text-size-xl-47 {
    font-size: 47px !important;
  }
  .text-size-xl-48 {
    font-size: 48px !important;
  }
  .text-size-xl-49 {
    font-size: 49px !important;
  }
  .text-size-xl-50 {
    font-size: 50px !important;
  }
  .text-size-xl-51 {
    font-size: 51px !important;
  }
  .text-size-xl-52 {
    font-size: 52px !important;
  }
  .text-size-xl-53 {
    font-size: 53px !important;
  }
  .text-size-xl-54 {
    font-size: 54px !important;
  }
  .text-size-xl-55 {
    font-size: 55px !important;
  }
  .text-size-xl-56 {
    font-size: 56px !important;
  }
  .text-size-xl-57 {
    font-size: 57px !important;
  }
  .text-size-xl-58 {
    font-size: 58px !important;
  }
  .text-size-xl-59 {
    font-size: 59px !important;
  }
  .text-size-xl-60 {
    font-size: 60px !important;
  }
  .text-size-xl-61 {
    font-size: 61px !important;
  }
  .text-size-xl-62 {
    font-size: 62px !important;
  }
  .text-size-xl-63 {
    font-size: 63px !important;
  }
  .text-size-xl-64 {
    font-size: 64px !important;
  }
  .text-size-xl-65 {
    font-size: 65px !important;
  }
  .text-size-xl-66 {
    font-size: 66px !important;
  }
  .text-size-xl-67 {
    font-size: 67px !important;
  }
  .text-size-xl-68 {
    font-size: 68px !important;
  }
  .text-size-xl-69 {
    font-size: 69px !important;
  }
  .text-size-xl-70 {
    font-size: 70px !important;
  }
  .text-size-xl-71 {
    font-size: 71px !important;
  }
  .text-size-xl-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .text-size-xxl-5 {
    font-size: 5px !important;
  }
  .text-size-xxl-6 {
    font-size: 6px !important;
  }
  .text-size-xxl-7 {
    font-size: 7px !important;
  }
  .text-size-xxl-8 {
    font-size: 8px !important;
  }
  .text-size-xxl-9 {
    font-size: 9px !important;
  }
  .text-size-xxl-10 {
    font-size: 10px !important;
  }
  .text-size-xxl-11 {
    font-size: 11px !important;
  }
  .text-size-xxl-12 {
    font-size: 12px !important;
  }
  .text-size-xxl-13 {
    font-size: 13px !important;
  }
  .text-size-xxl-14 {
    font-size: 14px !important;
  }
  .text-size-xxl-15 {
    font-size: 15px !important;
  }
  .text-size-xxl-16 {
    font-size: 16px !important;
  }
  .text-size-xxl-17 {
    font-size: 17px !important;
  }
  .text-size-xxl-18 {
    font-size: 18px !important;
  }
  .text-size-xxl-19 {
    font-size: 19px !important;
  }
  .text-size-xxl-20 {
    font-size: 20px !important;
  }
  .text-size-xxl-21 {
    font-size: 21px !important;
  }
  .text-size-xxl-22 {
    font-size: 22px !important;
  }
  .text-size-xxl-23 {
    font-size: 23px !important;
  }
  .text-size-xxl-24 {
    font-size: 24px !important;
  }
  .text-size-xxl-25 {
    font-size: 25px !important;
  }
  .text-size-xxl-26 {
    font-size: 26px !important;
  }
  .text-size-xxl-27 {
    font-size: 27px !important;
  }
  .text-size-xxl-28 {
    font-size: 28px !important;
  }
  .text-size-xxl-29 {
    font-size: 29px !important;
  }
  .text-size-xxl-30 {
    font-size: 30px !important;
  }
  .text-size-xxl-31 {
    font-size: 31px !important;
  }
  .text-size-xxl-32 {
    font-size: 32px !important;
  }
  .text-size-xxl-33 {
    font-size: 33px !important;
  }
  .text-size-xxl-34 {
    font-size: 34px !important;
  }
  .text-size-xxl-35 {
    font-size: 35px !important;
  }
  .text-size-xxl-36 {
    font-size: 36px !important;
  }
  .text-size-xxl-37 {
    font-size: 37px !important;
  }
  .text-size-xxl-38 {
    font-size: 38px !important;
  }
  .text-size-xxl-39 {
    font-size: 39px !important;
  }
  .text-size-xxl-40 {
    font-size: 40px !important;
  }
  .text-size-xxl-41 {
    font-size: 41px !important;
  }
  .text-size-xxl-42 {
    font-size: 42px !important;
  }
  .text-size-xxl-43 {
    font-size: 43px !important;
  }
  .text-size-xxl-44 {
    font-size: 44px !important;
  }
  .text-size-xxl-45 {
    font-size: 45px !important;
  }
  .text-size-xxl-46 {
    font-size: 46px !important;
  }
  .text-size-xxl-47 {
    font-size: 47px !important;
  }
  .text-size-xxl-48 {
    font-size: 48px !important;
  }
  .text-size-xxl-49 {
    font-size: 49px !important;
  }
  .text-size-xxl-50 {
    font-size: 50px !important;
  }
  .text-size-xxl-51 {
    font-size: 51px !important;
  }
  .text-size-xxl-52 {
    font-size: 52px !important;
  }
  .text-size-xxl-53 {
    font-size: 53px !important;
  }
  .text-size-xxl-54 {
    font-size: 54px !important;
  }
  .text-size-xxl-55 {
    font-size: 55px !important;
  }
  .text-size-xxl-56 {
    font-size: 56px !important;
  }
  .text-size-xxl-57 {
    font-size: 57px !important;
  }
  .text-size-xxl-58 {
    font-size: 58px !important;
  }
  .text-size-xxl-59 {
    font-size: 59px !important;
  }
  .text-size-xxl-60 {
    font-size: 60px !important;
  }
  .text-size-xxl-61 {
    font-size: 61px !important;
  }
  .text-size-xxl-62 {
    font-size: 62px !important;
  }
  .text-size-xxl-63 {
    font-size: 63px !important;
  }
  .text-size-xxl-64 {
    font-size: 64px !important;
  }
  .text-size-xxl-65 {
    font-size: 65px !important;
  }
  .text-size-xxl-66 {
    font-size: 66px !important;
  }
  .text-size-xxl-67 {
    font-size: 67px !important;
  }
  .text-size-xxl-68 {
    font-size: 68px !important;
  }
  .text-size-xxl-69 {
    font-size: 69px !important;
  }
  .text-size-xxl-70 {
    font-size: 70px !important;
  }
  .text-size-xxl-71 {
    font-size: 71px !important;
  }
  .text-size-xxl-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 1600px) {
  .text-size-xxxl-5 {
    font-size: 5px !important;
  }
  .text-size-xxxl-6 {
    font-size: 6px !important;
  }
  .text-size-xxxl-7 {
    font-size: 7px !important;
  }
  .text-size-xxxl-8 {
    font-size: 8px !important;
  }
  .text-size-xxxl-9 {
    font-size: 9px !important;
  }
  .text-size-xxxl-10 {
    font-size: 10px !important;
  }
  .text-size-xxxl-11 {
    font-size: 11px !important;
  }
  .text-size-xxxl-12 {
    font-size: 12px !important;
  }
  .text-size-xxxl-13 {
    font-size: 13px !important;
  }
  .text-size-xxxl-14 {
    font-size: 14px !important;
  }
  .text-size-xxxl-15 {
    font-size: 15px !important;
  }
  .text-size-xxxl-16 {
    font-size: 16px !important;
  }
  .text-size-xxxl-17 {
    font-size: 17px !important;
  }
  .text-size-xxxl-18 {
    font-size: 18px !important;
  }
  .text-size-xxxl-19 {
    font-size: 19px !important;
  }
  .text-size-xxxl-20 {
    font-size: 20px !important;
  }
  .text-size-xxxl-21 {
    font-size: 21px !important;
  }
  .text-size-xxxl-22 {
    font-size: 22px !important;
  }
  .text-size-xxxl-23 {
    font-size: 23px !important;
  }
  .text-size-xxxl-24 {
    font-size: 24px !important;
  }
  .text-size-xxxl-25 {
    font-size: 25px !important;
  }
  .text-size-xxxl-26 {
    font-size: 26px !important;
  }
  .text-size-xxxl-27 {
    font-size: 27px !important;
  }
  .text-size-xxxl-28 {
    font-size: 28px !important;
  }
  .text-size-xxxl-29 {
    font-size: 29px !important;
  }
  .text-size-xxxl-30 {
    font-size: 30px !important;
  }
  .text-size-xxxl-31 {
    font-size: 31px !important;
  }
  .text-size-xxxl-32 {
    font-size: 32px !important;
  }
  .text-size-xxxl-33 {
    font-size: 33px !important;
  }
  .text-size-xxxl-34 {
    font-size: 34px !important;
  }
  .text-size-xxxl-35 {
    font-size: 35px !important;
  }
  .text-size-xxxl-36 {
    font-size: 36px !important;
  }
  .text-size-xxxl-37 {
    font-size: 37px !important;
  }
  .text-size-xxxl-38 {
    font-size: 38px !important;
  }
  .text-size-xxxl-39 {
    font-size: 39px !important;
  }
  .text-size-xxxl-40 {
    font-size: 40px !important;
  }
  .text-size-xxxl-41 {
    font-size: 41px !important;
  }
  .text-size-xxxl-42 {
    font-size: 42px !important;
  }
  .text-size-xxxl-43 {
    font-size: 43px !important;
  }
  .text-size-xxxl-44 {
    font-size: 44px !important;
  }
  .text-size-xxxl-45 {
    font-size: 45px !important;
  }
  .text-size-xxxl-46 {
    font-size: 46px !important;
  }
  .text-size-xxxl-47 {
    font-size: 47px !important;
  }
  .text-size-xxxl-48 {
    font-size: 48px !important;
  }
  .text-size-xxxl-49 {
    font-size: 49px !important;
  }
  .text-size-xxxl-50 {
    font-size: 50px !important;
  }
  .text-size-xxxl-51 {
    font-size: 51px !important;
  }
  .text-size-xxxl-52 {
    font-size: 52px !important;
  }
  .text-size-xxxl-53 {
    font-size: 53px !important;
  }
  .text-size-xxxl-54 {
    font-size: 54px !important;
  }
  .text-size-xxxl-55 {
    font-size: 55px !important;
  }
  .text-size-xxxl-56 {
    font-size: 56px !important;
  }
  .text-size-xxxl-57 {
    font-size: 57px !important;
  }
  .text-size-xxxl-58 {
    font-size: 58px !important;
  }
  .text-size-xxxl-59 {
    font-size: 59px !important;
  }
  .text-size-xxxl-60 {
    font-size: 60px !important;
  }
  .text-size-xxxl-61 {
    font-size: 61px !important;
  }
  .text-size-xxxl-62 {
    font-size: 62px !important;
  }
  .text-size-xxxl-63 {
    font-size: 63px !important;
  }
  .text-size-xxxl-64 {
    font-size: 64px !important;
  }
  .text-size-xxxl-65 {
    font-size: 65px !important;
  }
  .text-size-xxxl-66 {
    font-size: 66px !important;
  }
  .text-size-xxxl-67 {
    font-size: 67px !important;
  }
  .text-size-xxxl-68 {
    font-size: 68px !important;
  }
  .text-size-xxxl-69 {
    font-size: 69px !important;
  }
  .text-size-xxxl-70 {
    font-size: 70px !important;
  }
  .text-size-xxxl-71 {
    font-size: 71px !important;
  }
  .text-size-xxxl-72 {
    font-size: 72px !important;
  }
}
@media only screen and (min-width: 1920px) {
  .text-size-hd-5 {
    font-size: 5px !important;
  }
  .text-size-hd-6 {
    font-size: 6px !important;
  }
  .text-size-hd-7 {
    font-size: 7px !important;
  }
  .text-size-hd-8 {
    font-size: 8px !important;
  }
  .text-size-hd-9 {
    font-size: 9px !important;
  }
  .text-size-hd-10 {
    font-size: 10px !important;
  }
  .text-size-hd-11 {
    font-size: 11px !important;
  }
  .text-size-hd-12 {
    font-size: 12px !important;
  }
  .text-size-hd-13 {
    font-size: 13px !important;
  }
  .text-size-hd-14 {
    font-size: 14px !important;
  }
  .text-size-hd-15 {
    font-size: 15px !important;
  }
  .text-size-hd-16 {
    font-size: 16px !important;
  }
  .text-size-hd-17 {
    font-size: 17px !important;
  }
  .text-size-hd-18 {
    font-size: 18px !important;
  }
  .text-size-hd-19 {
    font-size: 19px !important;
  }
  .text-size-hd-20 {
    font-size: 20px !important;
  }
  .text-size-hd-21 {
    font-size: 21px !important;
  }
  .text-size-hd-22 {
    font-size: 22px !important;
  }
  .text-size-hd-23 {
    font-size: 23px !important;
  }
  .text-size-hd-24 {
    font-size: 24px !important;
  }
  .text-size-hd-25 {
    font-size: 25px !important;
  }
  .text-size-hd-26 {
    font-size: 26px !important;
  }
  .text-size-hd-27 {
    font-size: 27px !important;
  }
  .text-size-hd-28 {
    font-size: 28px !important;
  }
  .text-size-hd-29 {
    font-size: 29px !important;
  }
  .text-size-hd-30 {
    font-size: 30px !important;
  }
  .text-size-hd-31 {
    font-size: 31px !important;
  }
  .text-size-hd-32 {
    font-size: 32px !important;
  }
  .text-size-hd-33 {
    font-size: 33px !important;
  }
  .text-size-hd-34 {
    font-size: 34px !important;
  }
  .text-size-hd-35 {
    font-size: 35px !important;
  }
  .text-size-hd-36 {
    font-size: 36px !important;
  }
  .text-size-hd-37 {
    font-size: 37px !important;
  }
  .text-size-hd-38 {
    font-size: 38px !important;
  }
  .text-size-hd-39 {
    font-size: 39px !important;
  }
  .text-size-hd-40 {
    font-size: 40px !important;
  }
  .text-size-hd-41 {
    font-size: 41px !important;
  }
  .text-size-hd-42 {
    font-size: 42px !important;
  }
  .text-size-hd-43 {
    font-size: 43px !important;
  }
  .text-size-hd-44 {
    font-size: 44px !important;
  }
  .text-size-hd-45 {
    font-size: 45px !important;
  }
  .text-size-hd-46 {
    font-size: 46px !important;
  }
  .text-size-hd-47 {
    font-size: 47px !important;
  }
  .text-size-hd-48 {
    font-size: 48px !important;
  }
  .text-size-hd-49 {
    font-size: 49px !important;
  }
  .text-size-hd-50 {
    font-size: 50px !important;
  }
  .text-size-hd-51 {
    font-size: 51px !important;
  }
  .text-size-hd-52 {
    font-size: 52px !important;
  }
  .text-size-hd-53 {
    font-size: 53px !important;
  }
  .text-size-hd-54 {
    font-size: 54px !important;
  }
  .text-size-hd-55 {
    font-size: 55px !important;
  }
  .text-size-hd-56 {
    font-size: 56px !important;
  }
  .text-size-hd-57 {
    font-size: 57px !important;
  }
  .text-size-hd-58 {
    font-size: 58px !important;
  }
  .text-size-hd-59 {
    font-size: 59px !important;
  }
  .text-size-hd-60 {
    font-size: 60px !important;
  }
  .text-size-hd-61 {
    font-size: 61px !important;
  }
  .text-size-hd-62 {
    font-size: 62px !important;
  }
  .text-size-hd-63 {
    font-size: 63px !important;
  }
  .text-size-hd-64 {
    font-size: 64px !important;
  }
  .text-size-hd-65 {
    font-size: 65px !important;
  }
  .text-size-hd-66 {
    font-size: 66px !important;
  }
  .text-size-hd-67 {
    font-size: 67px !important;
  }
  .text-size-hd-68 {
    font-size: 68px !important;
  }
  .text-size-hd-69 {
    font-size: 69px !important;
  }
  .text-size-hd-70 {
    font-size: 70px !important;
  }
  .text-size-hd-71 {
    font-size: 71px !important;
  }
  .text-size-hd-72 {
    font-size: 72px !important;
  }
}
.font-bold {
  font-weight: 700 !important;
}

.font-normal {
  font-weight: normal !important;
}

.font-medium {
  font-weight: 500 !important;
}

.text-red {
  color: #E74310 !important;
}

.text-orange {
  color: #F4971A !important;
}

.text-underline-dotted {
  text-decoration: underline dotted;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cite {
  border-left: 2px #E84615 solid;
  line-height: 120%;
  font-size: 14px;
  color: #6c757d;
  padding: 5px 0 5px 20px;
}

.index-floating-text {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 9px 18px;
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
}
.index-floating-text.text1 {
  bottom: 10%;
  left: 10%;
}
.index-floating-text.text2 {
  bottom: 25%;
  left: 24%;
}

.index-main-image {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .index-main-image {
    background-position-x: 65%;
  }
}
.index-main-image.overlay:before {
  z-index: 10;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 31%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .index-main-image.overlay:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 31%, rgba(0, 0, 0, 0.1) 100%);
  }
}

.page-form {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .page-form {
    padding: 20px 10px;
  }
}
.page-form input {
  border-radius: 8px 16px;
  border: 2px solid #c7c7c7;
  background: #FFF;
  padding: 18px 20px;
  width: 100%;
  outline: none;
}
.page-form input:focus {
  border: 2px solid #E84615;
}
@media only screen and (max-width: 767px) {
  .page-form input {
    padding: 12px 14px;
  }
}

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