/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@angular-builders/custom-webpack/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/@angular-builders/custom-webpack/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/@angular/cdk/overlay-prebuilt.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@angular-builders/custom-webpack/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/@angular-builders/custom-webpack/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/@angular-builders/custom-webpack/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.game-preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #141414;
  font-size: 14px;
  font-family: sans-serif;
  color: #c4ad8e;
  text-align: center;
  z-index: 9999999;
}
.game-preloader__line {
  position: absolute;
  bottom: 0;
  height: 5px;
  background: #dc3e3e;
  width: 100%;
  transform: scaleX(0);
  transition: all 0.16s ease;
  filter: saturate(0);
}
.game-preloader__text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #dc3e3e;
  filter: saturate(0);
}
.game-preloader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  filter: saturate(0);
  transform: translate(-50%, -50%);
}
.game-preloader__images-container {
  display: none;
}

@font-face {
  font-family: "Cambria";
  font-weight: 500;
  font-style: normal;
  src: url('cambria.ttf') format("truetype");
}
@font-face {
  font-family: "Cambria";
  font-weight: 700;
  font-style: normal;
  src: url('Сambria_bold.ttf') format("truetype");
}
@font-face {
  font-family: "Cambria";
  font-weight: 700;
  font-style: italic;
  src: url('Cambria_italic.ttf') format("truetype");
}
@font-face {
  font-family: "Cambria";
  font-weight: 700;
  font-style: italic;
  src: url('Cambria_bold_italic.ttf') format("truetype");
}
@font-face {
  font-family: "SellYouSoul";
  font-weight: 500;
  font-style: normal;
  src: url('SellYourSoulExtended2.ttf') format("truetype");
}
@font-face {
  font-family: "Sacra";
  font-weight: 500;
  font-style: normal;
  src: url('Sacra-Regular.ttf') format("truetype");
}
.pointer {
  -webkit-user-select: none;
          user-select: none;
  cursor: url("/assets/images/cursor/cursor-50-active.avif") 10 0, pointer;
}

.no-action {
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.animation-hidden {
  visibility: hidden;
}

.animation-hidden-transition {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.animation-show-transition {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.width-100-percent {
  width: 100%;
}

.width-50-percent {
  width: 50%;
}

.height-100-percent {
  height: 100%;
}

@keyframes button-process-animation {
  from {
    text-shadow: none;
  }
  to {
    text-shadow: 0 0 16px #dfa94e;
  }
}
@keyframes opacity-process-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.opacity-process-animation {
  animation-duration: 1s;
  animation-name: opacity-process-animation;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.blink-process-animation {
  animation-duration: 0.7s;
  animation-name: opacity-process-animation;
  animation-iteration-count: 7;
  animation-direction: alternate;
}

.button-process-animation {
  animation-duration: 1s;
  animation-name: button-process-animation;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.page-loader {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.info-icon {
  width: 61px;
  height: 61px;
}

.line-height-100 {
  line-height: 100%;
}

.line-height-101 {
  line-height: 101%;
}

.line-height-102 {
  line-height: 102%;
}

.line-height-103 {
  line-height: 103%;
}

.line-height-104 {
  line-height: 104%;
}

.line-height-105 {
  line-height: 105%;
}

.line-height-106 {
  line-height: 106%;
}

.line-height-107 {
  line-height: 107%;
}

.line-height-108 {
  line-height: 108%;
}

.line-height-109 {
  line-height: 109%;
}

.line-height-110 {
  line-height: 110%;
}

.line-height-111 {
  line-height: 111%;
}

.line-height-112 {
  line-height: 112%;
}

.line-height-113 {
  line-height: 113%;
}

.line-height-114 {
  line-height: 114%;
}

.line-height-115 {
  line-height: 115%;
}

.line-height-116 {
  line-height: 116%;
}

.line-height-117 {
  line-height: 117%;
}

.line-height-118 {
  line-height: 118%;
}

.line-height-119 {
  line-height: 119%;
}

.line-height-120 {
  line-height: 120%;
}

.line-height-121 {
  line-height: 121%;
}

.line-height-122 {
  line-height: 122%;
}

.line-height-123 {
  line-height: 123%;
}

.line-height-124 {
  line-height: 124%;
}

.line-height-125 {
  line-height: 125%;
}

.line-height-126 {
  line-height: 126%;
}

.line-height-127 {
  line-height: 127%;
}

.line-height-128 {
  line-height: 128%;
}

.line-height-129 {
  line-height: 129%;
}

.line-height-130 {
  line-height: 130%;
}

.line-height-131 {
  line-height: 131%;
}

.line-height-132 {
  line-height: 132%;
}

.line-height-133 {
  line-height: 133%;
}

.line-height-134 {
  line-height: 134%;
}

.line-height-135 {
  line-height: 135%;
}

.line-height-136 {
  line-height: 136%;
}

.line-height-137 {
  line-height: 137%;
}

.line-height-138 {
  line-height: 138%;
}

.line-height-139 {
  line-height: 139%;
}

.line-height-140 {
  line-height: 140%;
}

.line-height-141 {
  line-height: 141%;
}

.line-height-142 {
  line-height: 142%;
}

.line-height-143 {
  line-height: 143%;
}

.line-height-144 {
  line-height: 144%;
}

.line-height-145 {
  line-height: 145%;
}

.line-height-146 {
  line-height: 146%;
}

.line-height-147 {
  line-height: 147%;
}

.line-height-148 {
  line-height: 148%;
}

.line-height-149 {
  line-height: 149%;
}

.line-height-150 {
  line-height: 150%;
}

.line-height-151 {
  line-height: 151%;
}

.line-height-152 {
  line-height: 152%;
}

.line-height-153 {
  line-height: 153%;
}

.line-height-154 {
  line-height: 154%;
}

.line-height-155 {
  line-height: 155%;
}

.line-height-156 {
  line-height: 156%;
}

.line-height-157 {
  line-height: 157%;
}

.line-height-158 {
  line-height: 158%;
}

.line-height-159 {
  line-height: 159%;
}

.line-height-160 {
  line-height: 160%;
}

.line-height-161 {
  line-height: 161%;
}

.line-height-162 {
  line-height: 162%;
}

.line-height-163 {
  line-height: 163%;
}

.line-height-164 {
  line-height: 164%;
}

.line-height-165 {
  line-height: 165%;
}

.line-height-166 {
  line-height: 166%;
}

.line-height-167 {
  line-height: 167%;
}

.line-height-168 {
  line-height: 168%;
}

.line-height-169 {
  line-height: 169%;
}

.line-height-170 {
  line-height: 170%;
}

.line-height-171 {
  line-height: 171%;
}

.line-height-172 {
  line-height: 172%;
}

.line-height-173 {
  line-height: 173%;
}

.line-height-174 {
  line-height: 174%;
}

.line-height-175 {
  line-height: 175%;
}

.line-height-176 {
  line-height: 176%;
}

.line-height-177 {
  line-height: 177%;
}

.line-height-178 {
  line-height: 178%;
}

.line-height-179 {
  line-height: 179%;
}

.line-height-180 {
  line-height: 180%;
}

.line-height-181 {
  line-height: 181%;
}

.line-height-182 {
  line-height: 182%;
}

.line-height-183 {
  line-height: 183%;
}

.line-height-184 {
  line-height: 184%;
}

.line-height-185 {
  line-height: 185%;
}

.line-height-186 {
  line-height: 186%;
}

.line-height-187 {
  line-height: 187%;
}

.line-height-188 {
  line-height: 188%;
}

.line-height-189 {
  line-height: 189%;
}

.line-height-190 {
  line-height: 190%;
}

.line-height-191 {
  line-height: 191%;
}

.line-height-192 {
  line-height: 192%;
}

.line-height-193 {
  line-height: 193%;
}

.line-height-194 {
  line-height: 194%;
}

.line-height-195 {
  line-height: 195%;
}

.line-height-196 {
  line-height: 196%;
}

.line-height-197 {
  line-height: 197%;
}

.line-height-198 {
  line-height: 198%;
}

.line-height-199 {
  line-height: 199%;
}

.line-height-200 {
  line-height: 200%;
}

.gap-2 {
  gap: 2px;
}

.column-gap-2 {
  column-gap: 2px;
}

.row-gap-2 {
  row-gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.column-gap-4 {
  column-gap: 4px;
}

.row-gap-4 {
  row-gap: 4px;
}

.gap-6 {
  gap: 6px;
}

.column-gap-6 {
  column-gap: 6px;
}

.row-gap-6 {
  row-gap: 6px;
}

.gap-8 {
  gap: 8px;
}

.column-gap-8 {
  column-gap: 8px;
}

.row-gap-8 {
  row-gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.column-gap-10 {
  column-gap: 10px;
}

.row-gap-10 {
  row-gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.column-gap-12 {
  column-gap: 12px;
}

.row-gap-12 {
  row-gap: 12px;
}

.gap-14 {
  gap: 14px;
}

.column-gap-14 {
  column-gap: 14px;
}

.row-gap-14 {
  row-gap: 14px;
}

.gap-16 {
  gap: 16px;
}

.column-gap-16 {
  column-gap: 16px;
}

.row-gap-16 {
  row-gap: 16px;
}

.gap-18 {
  gap: 18px;
}

.column-gap-18 {
  column-gap: 18px;
}

.row-gap-18 {
  row-gap: 18px;
}

.gap-20 {
  gap: 20px;
}

.column-gap-20 {
  column-gap: 20px;
}

.row-gap-20 {
  row-gap: 20px;
}

.gap-22 {
  gap: 22px;
}

.column-gap-22 {
  column-gap: 22px;
}

.row-gap-22 {
  row-gap: 22px;
}

.gap-24 {
  gap: 24px;
}

.column-gap-24 {
  column-gap: 24px;
}

.row-gap-24 {
  row-gap: 24px;
}

.gap-26 {
  gap: 26px;
}

.column-gap-26 {
  column-gap: 26px;
}

.row-gap-26 {
  row-gap: 26px;
}

.gap-28 {
  gap: 28px;
}

.column-gap-28 {
  column-gap: 28px;
}

.row-gap-28 {
  row-gap: 28px;
}

.gap-30 {
  gap: 30px;
}

.column-gap-30 {
  column-gap: 30px;
}

.row-gap-30 {
  row-gap: 30px;
}

.gap-32 {
  gap: 32px;
}

.column-gap-32 {
  column-gap: 32px;
}

.row-gap-32 {
  row-gap: 32px;
}

.gap-34 {
  gap: 34px;
}

.column-gap-34 {
  column-gap: 34px;
}

.row-gap-34 {
  row-gap: 34px;
}

.gap-36 {
  gap: 36px;
}

.column-gap-36 {
  column-gap: 36px;
}

.row-gap-36 {
  row-gap: 36px;
}

.gap-38 {
  gap: 38px;
}

.column-gap-38 {
  column-gap: 38px;
}

.row-gap-38 {
  row-gap: 38px;
}

.gap-40 {
  gap: 40px;
}

.column-gap-40 {
  column-gap: 40px;
}

.row-gap-40 {
  row-gap: 40px;
}

.gap-42 {
  gap: 42px;
}

.column-gap-42 {
  column-gap: 42px;
}

.row-gap-42 {
  row-gap: 42px;
}

.gap-44 {
  gap: 44px;
}

.column-gap-44 {
  column-gap: 44px;
}

.row-gap-44 {
  row-gap: 44px;
}

.gap-46 {
  gap: 46px;
}

.column-gap-46 {
  column-gap: 46px;
}

.row-gap-46 {
  row-gap: 46px;
}

.gap-48 {
  gap: 48px;
}

.column-gap-48 {
  column-gap: 48px;
}

.row-gap-48 {
  row-gap: 48px;
}

.gap-50 {
  gap: 50px;
}

.column-gap-50 {
  column-gap: 50px;
}

.row-gap-50 {
  row-gap: 50px;
}

.gap-52 {
  gap: 52px;
}

.column-gap-52 {
  column-gap: 52px;
}

.row-gap-52 {
  row-gap: 52px;
}

.gap-54 {
  gap: 54px;
}

.column-gap-54 {
  column-gap: 54px;
}

.row-gap-54 {
  row-gap: 54px;
}

.gap-56 {
  gap: 56px;
}

.column-gap-56 {
  column-gap: 56px;
}

.row-gap-56 {
  row-gap: 56px;
}

.gap-58 {
  gap: 58px;
}

.column-gap-58 {
  column-gap: 58px;
}

.row-gap-58 {
  row-gap: 58px;
}

.gap-60 {
  gap: 60px;
}

.column-gap-60 {
  column-gap: 60px;
}

.row-gap-60 {
  row-gap: 60px;
}

.gap-62 {
  gap: 62px;
}

.column-gap-62 {
  column-gap: 62px;
}

.row-gap-62 {
  row-gap: 62px;
}

.gap-64 {
  gap: 64px;
}

.column-gap-64 {
  column-gap: 64px;
}

.row-gap-64 {
  row-gap: 64px;
}

.gap-66 {
  gap: 66px;
}

.column-gap-66 {
  column-gap: 66px;
}

.row-gap-66 {
  row-gap: 66px;
}

.gap-68 {
  gap: 68px;
}

.column-gap-68 {
  column-gap: 68px;
}

.row-gap-68 {
  row-gap: 68px;
}

.gap-70 {
  gap: 70px;
}

.column-gap-70 {
  column-gap: 70px;
}

.row-gap-70 {
  row-gap: 70px;
}

.gap-72 {
  gap: 72px;
}

.column-gap-72 {
  column-gap: 72px;
}

.row-gap-72 {
  row-gap: 72px;
}

.gap-74 {
  gap: 74px;
}

.column-gap-74 {
  column-gap: 74px;
}

.row-gap-74 {
  row-gap: 74px;
}

.gap-76 {
  gap: 76px;
}

.column-gap-76 {
  column-gap: 76px;
}

.row-gap-76 {
  row-gap: 76px;
}

.gap-78 {
  gap: 78px;
}

.column-gap-78 {
  column-gap: 78px;
}

.row-gap-78 {
  row-gap: 78px;
}

.gap-80 {
  gap: 80px;
}

.column-gap-80 {
  column-gap: 80px;
}

.row-gap-80 {
  row-gap: 80px;
}

.gap-82 {
  gap: 82px;
}

.column-gap-82 {
  column-gap: 82px;
}

.row-gap-82 {
  row-gap: 82px;
}

.gap-84 {
  gap: 84px;
}

.column-gap-84 {
  column-gap: 84px;
}

.row-gap-84 {
  row-gap: 84px;
}

.gap-86 {
  gap: 86px;
}

.column-gap-86 {
  column-gap: 86px;
}

.row-gap-86 {
  row-gap: 86px;
}

.gap-88 {
  gap: 88px;
}

.column-gap-88 {
  column-gap: 88px;
}

.row-gap-88 {
  row-gap: 88px;
}

.gap-90 {
  gap: 90px;
}

.column-gap-90 {
  column-gap: 90px;
}

.row-gap-90 {
  row-gap: 90px;
}

.gap-92 {
  gap: 92px;
}

.column-gap-92 {
  column-gap: 92px;
}

.row-gap-92 {
  row-gap: 92px;
}

.gap-94 {
  gap: 94px;
}

.column-gap-94 {
  column-gap: 94px;
}

.row-gap-94 {
  row-gap: 94px;
}

.gap-96 {
  gap: 96px;
}

.column-gap-96 {
  column-gap: 96px;
}

.row-gap-96 {
  row-gap: 96px;
}

.gap-98 {
  gap: 98px;
}

.column-gap-98 {
  column-gap: 98px;
}

.row-gap-98 {
  row-gap: 98px;
}

.gap-100 {
  gap: 100px;
}

.column-gap-100 {
  column-gap: 100px;
}

.row-gap-100 {
  row-gap: 100px;
}

.gap-102 {
  gap: 102px;
}

.column-gap-102 {
  column-gap: 102px;
}

.row-gap-102 {
  row-gap: 102px;
}

.gap-104 {
  gap: 104px;
}

.column-gap-104 {
  column-gap: 104px;
}

.row-gap-104 {
  row-gap: 104px;
}

.gap-106 {
  gap: 106px;
}

.column-gap-106 {
  column-gap: 106px;
}

.row-gap-106 {
  row-gap: 106px;
}

.gap-108 {
  gap: 108px;
}

.column-gap-108 {
  column-gap: 108px;
}

.row-gap-108 {
  row-gap: 108px;
}

.gap-110 {
  gap: 110px;
}

.column-gap-110 {
  column-gap: 110px;
}

.row-gap-110 {
  row-gap: 110px;
}

.gap-112 {
  gap: 112px;
}

.column-gap-112 {
  column-gap: 112px;
}

.row-gap-112 {
  row-gap: 112px;
}

.gap-114 {
  gap: 114px;
}

.column-gap-114 {
  column-gap: 114px;
}

.row-gap-114 {
  row-gap: 114px;
}

.gap-116 {
  gap: 116px;
}

.column-gap-116 {
  column-gap: 116px;
}

.row-gap-116 {
  row-gap: 116px;
}

.gap-118 {
  gap: 118px;
}

.column-gap-118 {
  column-gap: 118px;
}

.row-gap-118 {
  row-gap: 118px;
}

.gap-120 {
  gap: 120px;
}

.column-gap-120 {
  column-gap: 120px;
}

.row-gap-120 {
  row-gap: 120px;
}

.gap-122 {
  gap: 122px;
}

.column-gap-122 {
  column-gap: 122px;
}

.row-gap-122 {
  row-gap: 122px;
}

.gap-124 {
  gap: 124px;
}

.column-gap-124 {
  column-gap: 124px;
}

.row-gap-124 {
  row-gap: 124px;
}

.gap-126 {
  gap: 126px;
}

.column-gap-126 {
  column-gap: 126px;
}

.row-gap-126 {
  row-gap: 126px;
}

.gap-128 {
  gap: 128px;
}

.column-gap-128 {
  column-gap: 128px;
}

.row-gap-128 {
  row-gap: 128px;
}

.gap-130 {
  gap: 130px;
}

.column-gap-130 {
  column-gap: 130px;
}

.row-gap-130 {
  row-gap: 130px;
}

.gap-132 {
  gap: 132px;
}

.column-gap-132 {
  column-gap: 132px;
}

.row-gap-132 {
  row-gap: 132px;
}

.gap-134 {
  gap: 134px;
}

.column-gap-134 {
  column-gap: 134px;
}

.row-gap-134 {
  row-gap: 134px;
}

.gap-136 {
  gap: 136px;
}

.column-gap-136 {
  column-gap: 136px;
}

.row-gap-136 {
  row-gap: 136px;
}

.gap-138 {
  gap: 138px;
}

.column-gap-138 {
  column-gap: 138px;
}

.row-gap-138 {
  row-gap: 138px;
}

.gap-140 {
  gap: 140px;
}

.column-gap-140 {
  column-gap: 140px;
}

.row-gap-140 {
  row-gap: 140px;
}

.gap-142 {
  gap: 142px;
}

.column-gap-142 {
  column-gap: 142px;
}

.row-gap-142 {
  row-gap: 142px;
}

.gap-144 {
  gap: 144px;
}

.column-gap-144 {
  column-gap: 144px;
}

.row-gap-144 {
  row-gap: 144px;
}

.gap-146 {
  gap: 146px;
}

.column-gap-146 {
  column-gap: 146px;
}

.row-gap-146 {
  row-gap: 146px;
}

.gap-148 {
  gap: 148px;
}

.column-gap-148 {
  column-gap: 148px;
}

.row-gap-148 {
  row-gap: 148px;
}

.gap-150 {
  gap: 150px;
}

.column-gap-150 {
  column-gap: 150px;
}

.row-gap-150 {
  row-gap: 150px;
}

.gap-152 {
  gap: 152px;
}

.column-gap-152 {
  column-gap: 152px;
}

.row-gap-152 {
  row-gap: 152px;
}

.gap-154 {
  gap: 154px;
}

.column-gap-154 {
  column-gap: 154px;
}

.row-gap-154 {
  row-gap: 154px;
}

.gap-156 {
  gap: 156px;
}

.column-gap-156 {
  column-gap: 156px;
}

.row-gap-156 {
  row-gap: 156px;
}

.gap-158 {
  gap: 158px;
}

.column-gap-158 {
  column-gap: 158px;
}

.row-gap-158 {
  row-gap: 158px;
}

.gap-160 {
  gap: 160px;
}

.column-gap-160 {
  column-gap: 160px;
}

.row-gap-160 {
  row-gap: 160px;
}

.gap-162 {
  gap: 162px;
}

.column-gap-162 {
  column-gap: 162px;
}

.row-gap-162 {
  row-gap: 162px;
}

.gap-164 {
  gap: 164px;
}

.column-gap-164 {
  column-gap: 164px;
}

.row-gap-164 {
  row-gap: 164px;
}

.gap-166 {
  gap: 166px;
}

.column-gap-166 {
  column-gap: 166px;
}

.row-gap-166 {
  row-gap: 166px;
}

.gap-168 {
  gap: 168px;
}

.column-gap-168 {
  column-gap: 168px;
}

.row-gap-168 {
  row-gap: 168px;
}

.gap-170 {
  gap: 170px;
}

.column-gap-170 {
  column-gap: 170px;
}

.row-gap-170 {
  row-gap: 170px;
}

.gap-172 {
  gap: 172px;
}

.column-gap-172 {
  column-gap: 172px;
}

.row-gap-172 {
  row-gap: 172px;
}

.gap-174 {
  gap: 174px;
}

.column-gap-174 {
  column-gap: 174px;
}

.row-gap-174 {
  row-gap: 174px;
}

.gap-176 {
  gap: 176px;
}

.column-gap-176 {
  column-gap: 176px;
}

.row-gap-176 {
  row-gap: 176px;
}

.gap-178 {
  gap: 178px;
}

.column-gap-178 {
  column-gap: 178px;
}

.row-gap-178 {
  row-gap: 178px;
}

.gap-180 {
  gap: 180px;
}

.column-gap-180 {
  column-gap: 180px;
}

.row-gap-180 {
  row-gap: 180px;
}

.gap-182 {
  gap: 182px;
}

.column-gap-182 {
  column-gap: 182px;
}

.row-gap-182 {
  row-gap: 182px;
}

.gap-184 {
  gap: 184px;
}

.column-gap-184 {
  column-gap: 184px;
}

.row-gap-184 {
  row-gap: 184px;
}

.gap-186 {
  gap: 186px;
}

.column-gap-186 {
  column-gap: 186px;
}

.row-gap-186 {
  row-gap: 186px;
}

.gap-188 {
  gap: 188px;
}

.column-gap-188 {
  column-gap: 188px;
}

.row-gap-188 {
  row-gap: 188px;
}

.gap-190 {
  gap: 190px;
}

.column-gap-190 {
  column-gap: 190px;
}

.row-gap-190 {
  row-gap: 190px;
}

.gap-192 {
  gap: 192px;
}

.column-gap-192 {
  column-gap: 192px;
}

.row-gap-192 {
  row-gap: 192px;
}

.gap-194 {
  gap: 194px;
}

.column-gap-194 {
  column-gap: 194px;
}

.row-gap-194 {
  row-gap: 194px;
}

.gap-196 {
  gap: 196px;
}

.column-gap-196 {
  column-gap: 196px;
}

.row-gap-196 {
  row-gap: 196px;
}

.gap-198 {
  gap: 198px;
}

.column-gap-198 {
  column-gap: 198px;
}

.row-gap-198 {
  row-gap: 198px;
}

.gap-200 {
  gap: 200px;
}

.column-gap-200 {
  column-gap: 200px;
}

.row-gap-200 {
  row-gap: 200px;
}

.width-0 {
  width: 0px;
}

.height-0 {
  height: 0px;
}

.max-width-0 {
  max-width: 0px;
}

.max-height-0 {
  max-height: 0px;
}

.width-1 {
  width: 1px;
}

.height-1 {
  height: 1px;
}

.max-width-1 {
  max-width: 1px;
}

.max-height-1 {
  max-height: 1px;
}

.width-2 {
  width: 2px;
}

.height-2 {
  height: 2px;
}

.max-width-2 {
  max-width: 2px;
}

.max-height-2 {
  max-height: 2px;
}

.width-3 {
  width: 3px;
}

.height-3 {
  height: 3px;
}

.max-width-3 {
  max-width: 3px;
}

.max-height-3 {
  max-height: 3px;
}

.width-4 {
  width: 4px;
}

.height-4 {
  height: 4px;
}

.max-width-4 {
  max-width: 4px;
}

.max-height-4 {
  max-height: 4px;
}

.width-5 {
  width: 5px;
}

.height-5 {
  height: 5px;
}

.max-width-5 {
  max-width: 5px;
}

.max-height-5 {
  max-height: 5px;
}

.width-6 {
  width: 6px;
}

.height-6 {
  height: 6px;
}

.max-width-6 {
  max-width: 6px;
}

.max-height-6 {
  max-height: 6px;
}

.width-7 {
  width: 7px;
}

.height-7 {
  height: 7px;
}

.max-width-7 {
  max-width: 7px;
}

.max-height-7 {
  max-height: 7px;
}

.width-8 {
  width: 8px;
}

.height-8 {
  height: 8px;
}

.max-width-8 {
  max-width: 8px;
}

.max-height-8 {
  max-height: 8px;
}

.width-9 {
  width: 9px;
}

.height-9 {
  height: 9px;
}

.max-width-9 {
  max-width: 9px;
}

.max-height-9 {
  max-height: 9px;
}

.width-10 {
  width: 10px;
}

.height-10 {
  height: 10px;
}

.max-width-10 {
  max-width: 10px;
}

.max-height-10 {
  max-height: 10px;
}

.width-11 {
  width: 11px;
}

.height-11 {
  height: 11px;
}

.max-width-11 {
  max-width: 11px;
}

.max-height-11 {
  max-height: 11px;
}

.width-12 {
  width: 12px;
}

.height-12 {
  height: 12px;
}

.max-width-12 {
  max-width: 12px;
}

.max-height-12 {
  max-height: 12px;
}

.width-13 {
  width: 13px;
}

.height-13 {
  height: 13px;
}

.max-width-13 {
  max-width: 13px;
}

.max-height-13 {
  max-height: 13px;
}

.width-14 {
  width: 14px;
}

.height-14 {
  height: 14px;
}

.max-width-14 {
  max-width: 14px;
}

.max-height-14 {
  max-height: 14px;
}

.width-15 {
  width: 15px;
}

.height-15 {
  height: 15px;
}

.max-width-15 {
  max-width: 15px;
}

.max-height-15 {
  max-height: 15px;
}

.width-16 {
  width: 16px;
}

.height-16 {
  height: 16px;
}

.max-width-16 {
  max-width: 16px;
}

.max-height-16 {
  max-height: 16px;
}

.width-17 {
  width: 17px;
}

.height-17 {
  height: 17px;
}

.max-width-17 {
  max-width: 17px;
}

.max-height-17 {
  max-height: 17px;
}

.width-18 {
  width: 18px;
}

.height-18 {
  height: 18px;
}

.max-width-18 {
  max-width: 18px;
}

.max-height-18 {
  max-height: 18px;
}

.width-19 {
  width: 19px;
}

.height-19 {
  height: 19px;
}

.max-width-19 {
  max-width: 19px;
}

.max-height-19 {
  max-height: 19px;
}

.width-20 {
  width: 20px;
}

.height-20 {
  height: 20px;
}

.max-width-20 {
  max-width: 20px;
}

.max-height-20 {
  max-height: 20px;
}

.width-21 {
  width: 21px;
}

.height-21 {
  height: 21px;
}

.max-width-21 {
  max-width: 21px;
}

.max-height-21 {
  max-height: 21px;
}

.width-22 {
  width: 22px;
}

.height-22 {
  height: 22px;
}

.max-width-22 {
  max-width: 22px;
}

.max-height-22 {
  max-height: 22px;
}

.width-23 {
  width: 23px;
}

.height-23 {
  height: 23px;
}

.max-width-23 {
  max-width: 23px;
}

.max-height-23 {
  max-height: 23px;
}

.width-24 {
  width: 24px;
}

.height-24 {
  height: 24px;
}

.max-width-24 {
  max-width: 24px;
}

.max-height-24 {
  max-height: 24px;
}

.width-25 {
  width: 25px;
}

.height-25 {
  height: 25px;
}

.max-width-25 {
  max-width: 25px;
}

.max-height-25 {
  max-height: 25px;
}

.width-26 {
  width: 26px;
}

.height-26 {
  height: 26px;
}

.max-width-26 {
  max-width: 26px;
}

.max-height-26 {
  max-height: 26px;
}

.width-27 {
  width: 27px;
}

.height-27 {
  height: 27px;
}

.max-width-27 {
  max-width: 27px;
}

.max-height-27 {
  max-height: 27px;
}

.width-28 {
  width: 28px;
}

.height-28 {
  height: 28px;
}

.max-width-28 {
  max-width: 28px;
}

.max-height-28 {
  max-height: 28px;
}

.width-29 {
  width: 29px;
}

.height-29 {
  height: 29px;
}

.max-width-29 {
  max-width: 29px;
}

.max-height-29 {
  max-height: 29px;
}

.width-30 {
  width: 30px;
}

.height-30 {
  height: 30px;
}

.max-width-30 {
  max-width: 30px;
}

.max-height-30 {
  max-height: 30px;
}

.width-31 {
  width: 31px;
}

.height-31 {
  height: 31px;
}

.max-width-31 {
  max-width: 31px;
}

.max-height-31 {
  max-height: 31px;
}

.width-32 {
  width: 32px;
}

.height-32 {
  height: 32px;
}

.max-width-32 {
  max-width: 32px;
}

.max-height-32 {
  max-height: 32px;
}

.width-33 {
  width: 33px;
}

.height-33 {
  height: 33px;
}

.max-width-33 {
  max-width: 33px;
}

.max-height-33 {
  max-height: 33px;
}

.width-34 {
  width: 34px;
}

.height-34 {
  height: 34px;
}

.max-width-34 {
  max-width: 34px;
}

.max-height-34 {
  max-height: 34px;
}

.width-35 {
  width: 35px;
}

.height-35 {
  height: 35px;
}

.max-width-35 {
  max-width: 35px;
}

.max-height-35 {
  max-height: 35px;
}

.width-36 {
  width: 36px;
}

.height-36 {
  height: 36px;
}

.max-width-36 {
  max-width: 36px;
}

.max-height-36 {
  max-height: 36px;
}

.width-37 {
  width: 37px;
}

.height-37 {
  height: 37px;
}

.max-width-37 {
  max-width: 37px;
}

.max-height-37 {
  max-height: 37px;
}

.width-38 {
  width: 38px;
}

.height-38 {
  height: 38px;
}

.max-width-38 {
  max-width: 38px;
}

.max-height-38 {
  max-height: 38px;
}

.width-39 {
  width: 39px;
}

.height-39 {
  height: 39px;
}

.max-width-39 {
  max-width: 39px;
}

.max-height-39 {
  max-height: 39px;
}

.width-40 {
  width: 40px;
}

.height-40 {
  height: 40px;
}

.max-width-40 {
  max-width: 40px;
}

.max-height-40 {
  max-height: 40px;
}

.width-41 {
  width: 41px;
}

.height-41 {
  height: 41px;
}

.max-width-41 {
  max-width: 41px;
}

.max-height-41 {
  max-height: 41px;
}

.width-42 {
  width: 42px;
}

.height-42 {
  height: 42px;
}

.max-width-42 {
  max-width: 42px;
}

.max-height-42 {
  max-height: 42px;
}

.width-43 {
  width: 43px;
}

.height-43 {
  height: 43px;
}

.max-width-43 {
  max-width: 43px;
}

.max-height-43 {
  max-height: 43px;
}

.width-44 {
  width: 44px;
}

.height-44 {
  height: 44px;
}

.max-width-44 {
  max-width: 44px;
}

.max-height-44 {
  max-height: 44px;
}

.width-45 {
  width: 45px;
}

.height-45 {
  height: 45px;
}

.max-width-45 {
  max-width: 45px;
}

.max-height-45 {
  max-height: 45px;
}

.width-46 {
  width: 46px;
}

.height-46 {
  height: 46px;
}

.max-width-46 {
  max-width: 46px;
}

.max-height-46 {
  max-height: 46px;
}

.width-47 {
  width: 47px;
}

.height-47 {
  height: 47px;
}

.max-width-47 {
  max-width: 47px;
}

.max-height-47 {
  max-height: 47px;
}

.width-48 {
  width: 48px;
}

.height-48 {
  height: 48px;
}

.max-width-48 {
  max-width: 48px;
}

.max-height-48 {
  max-height: 48px;
}

.width-49 {
  width: 49px;
}

.height-49 {
  height: 49px;
}

.max-width-49 {
  max-width: 49px;
}

.max-height-49 {
  max-height: 49px;
}

.width-50 {
  width: 50px;
}

.height-50 {
  height: 50px;
}

.max-width-50 {
  max-width: 50px;
}

.max-height-50 {
  max-height: 50px;
}

.width-51 {
  width: 51px;
}

.height-51 {
  height: 51px;
}

.max-width-51 {
  max-width: 51px;
}

.max-height-51 {
  max-height: 51px;
}

.width-52 {
  width: 52px;
}

.height-52 {
  height: 52px;
}

.max-width-52 {
  max-width: 52px;
}

.max-height-52 {
  max-height: 52px;
}

.width-53 {
  width: 53px;
}

.height-53 {
  height: 53px;
}

.max-width-53 {
  max-width: 53px;
}

.max-height-53 {
  max-height: 53px;
}

.width-54 {
  width: 54px;
}

.height-54 {
  height: 54px;
}

.max-width-54 {
  max-width: 54px;
}

.max-height-54 {
  max-height: 54px;
}

.width-55 {
  width: 55px;
}

.height-55 {
  height: 55px;
}

.max-width-55 {
  max-width: 55px;
}

.max-height-55 {
  max-height: 55px;
}

.width-56 {
  width: 56px;
}

.height-56 {
  height: 56px;
}

.max-width-56 {
  max-width: 56px;
}

.max-height-56 {
  max-height: 56px;
}

.width-57 {
  width: 57px;
}

.height-57 {
  height: 57px;
}

.max-width-57 {
  max-width: 57px;
}

.max-height-57 {
  max-height: 57px;
}

.width-58 {
  width: 58px;
}

.height-58 {
  height: 58px;
}

.max-width-58 {
  max-width: 58px;
}

.max-height-58 {
  max-height: 58px;
}

.width-59 {
  width: 59px;
}

.height-59 {
  height: 59px;
}

.max-width-59 {
  max-width: 59px;
}

.max-height-59 {
  max-height: 59px;
}

.width-60 {
  width: 60px;
}

.height-60 {
  height: 60px;
}

.max-width-60 {
  max-width: 60px;
}

.max-height-60 {
  max-height: 60px;
}

.width-61 {
  width: 61px;
}

.height-61 {
  height: 61px;
}

.max-width-61 {
  max-width: 61px;
}

.max-height-61 {
  max-height: 61px;
}

.width-62 {
  width: 62px;
}

.height-62 {
  height: 62px;
}

.max-width-62 {
  max-width: 62px;
}

.max-height-62 {
  max-height: 62px;
}

.width-63 {
  width: 63px;
}

.height-63 {
  height: 63px;
}

.max-width-63 {
  max-width: 63px;
}

.max-height-63 {
  max-height: 63px;
}

.width-64 {
  width: 64px;
}

.height-64 {
  height: 64px;
}

.max-width-64 {
  max-width: 64px;
}

.max-height-64 {
  max-height: 64px;
}

.width-65 {
  width: 65px;
}

.height-65 {
  height: 65px;
}

.max-width-65 {
  max-width: 65px;
}

.max-height-65 {
  max-height: 65px;
}

.width-66 {
  width: 66px;
}

.height-66 {
  height: 66px;
}

.max-width-66 {
  max-width: 66px;
}

.max-height-66 {
  max-height: 66px;
}

.width-67 {
  width: 67px;
}

.height-67 {
  height: 67px;
}

.max-width-67 {
  max-width: 67px;
}

.max-height-67 {
  max-height: 67px;
}

.width-68 {
  width: 68px;
}

.height-68 {
  height: 68px;
}

.max-width-68 {
  max-width: 68px;
}

.max-height-68 {
  max-height: 68px;
}

.width-69 {
  width: 69px;
}

.height-69 {
  height: 69px;
}

.max-width-69 {
  max-width: 69px;
}

.max-height-69 {
  max-height: 69px;
}

.width-70 {
  width: 70px;
}

.height-70 {
  height: 70px;
}

.max-width-70 {
  max-width: 70px;
}

.max-height-70 {
  max-height: 70px;
}

.width-71 {
  width: 71px;
}

.height-71 {
  height: 71px;
}

.max-width-71 {
  max-width: 71px;
}

.max-height-71 {
  max-height: 71px;
}

.width-72 {
  width: 72px;
}

.height-72 {
  height: 72px;
}

.max-width-72 {
  max-width: 72px;
}

.max-height-72 {
  max-height: 72px;
}

.width-73 {
  width: 73px;
}

.height-73 {
  height: 73px;
}

.max-width-73 {
  max-width: 73px;
}

.max-height-73 {
  max-height: 73px;
}

.width-74 {
  width: 74px;
}

.height-74 {
  height: 74px;
}

.max-width-74 {
  max-width: 74px;
}

.max-height-74 {
  max-height: 74px;
}

.width-75 {
  width: 75px;
}

.height-75 {
  height: 75px;
}

.max-width-75 {
  max-width: 75px;
}

.max-height-75 {
  max-height: 75px;
}

.width-76 {
  width: 76px;
}

.height-76 {
  height: 76px;
}

.max-width-76 {
  max-width: 76px;
}

.max-height-76 {
  max-height: 76px;
}

.width-77 {
  width: 77px;
}

.height-77 {
  height: 77px;
}

.max-width-77 {
  max-width: 77px;
}

.max-height-77 {
  max-height: 77px;
}

.width-78 {
  width: 78px;
}

.height-78 {
  height: 78px;
}

.max-width-78 {
  max-width: 78px;
}

.max-height-78 {
  max-height: 78px;
}

.width-79 {
  width: 79px;
}

.height-79 {
  height: 79px;
}

.max-width-79 {
  max-width: 79px;
}

.max-height-79 {
  max-height: 79px;
}

.width-80 {
  width: 80px;
}

.height-80 {
  height: 80px;
}

.max-width-80 {
  max-width: 80px;
}

.max-height-80 {
  max-height: 80px;
}

.width-81 {
  width: 81px;
}

.height-81 {
  height: 81px;
}

.max-width-81 {
  max-width: 81px;
}

.max-height-81 {
  max-height: 81px;
}

.width-82 {
  width: 82px;
}

.height-82 {
  height: 82px;
}

.max-width-82 {
  max-width: 82px;
}

.max-height-82 {
  max-height: 82px;
}

.width-83 {
  width: 83px;
}

.height-83 {
  height: 83px;
}

.max-width-83 {
  max-width: 83px;
}

.max-height-83 {
  max-height: 83px;
}

.width-84 {
  width: 84px;
}

.height-84 {
  height: 84px;
}

.max-width-84 {
  max-width: 84px;
}

.max-height-84 {
  max-height: 84px;
}

.width-85 {
  width: 85px;
}

.height-85 {
  height: 85px;
}

.max-width-85 {
  max-width: 85px;
}

.max-height-85 {
  max-height: 85px;
}

.width-86 {
  width: 86px;
}

.height-86 {
  height: 86px;
}

.max-width-86 {
  max-width: 86px;
}

.max-height-86 {
  max-height: 86px;
}

.width-87 {
  width: 87px;
}

.height-87 {
  height: 87px;
}

.max-width-87 {
  max-width: 87px;
}

.max-height-87 {
  max-height: 87px;
}

.width-88 {
  width: 88px;
}

.height-88 {
  height: 88px;
}

.max-width-88 {
  max-width: 88px;
}

.max-height-88 {
  max-height: 88px;
}

.width-89 {
  width: 89px;
}

.height-89 {
  height: 89px;
}

.max-width-89 {
  max-width: 89px;
}

.max-height-89 {
  max-height: 89px;
}

.width-90 {
  width: 90px;
}

.height-90 {
  height: 90px;
}

.max-width-90 {
  max-width: 90px;
}

.max-height-90 {
  max-height: 90px;
}

.width-91 {
  width: 91px;
}

.height-91 {
  height: 91px;
}

.max-width-91 {
  max-width: 91px;
}

.max-height-91 {
  max-height: 91px;
}

.width-92 {
  width: 92px;
}

.height-92 {
  height: 92px;
}

.max-width-92 {
  max-width: 92px;
}

.max-height-92 {
  max-height: 92px;
}

.width-93 {
  width: 93px;
}

.height-93 {
  height: 93px;
}

.max-width-93 {
  max-width: 93px;
}

.max-height-93 {
  max-height: 93px;
}

.width-94 {
  width: 94px;
}

.height-94 {
  height: 94px;
}

.max-width-94 {
  max-width: 94px;
}

.max-height-94 {
  max-height: 94px;
}

.width-95 {
  width: 95px;
}

.height-95 {
  height: 95px;
}

.max-width-95 {
  max-width: 95px;
}

.max-height-95 {
  max-height: 95px;
}

.width-96 {
  width: 96px;
}

.height-96 {
  height: 96px;
}

.max-width-96 {
  max-width: 96px;
}

.max-height-96 {
  max-height: 96px;
}

.width-97 {
  width: 97px;
}

.height-97 {
  height: 97px;
}

.max-width-97 {
  max-width: 97px;
}

.max-height-97 {
  max-height: 97px;
}

.width-98 {
  width: 98px;
}

.height-98 {
  height: 98px;
}

.max-width-98 {
  max-width: 98px;
}

.max-height-98 {
  max-height: 98px;
}

.width-99 {
  width: 99px;
}

.height-99 {
  height: 99px;
}

.max-width-99 {
  max-width: 99px;
}

.max-height-99 {
  max-height: 99px;
}

.width-100 {
  width: 100px;
}

.height-100 {
  height: 100px;
}

.max-width-100 {
  max-width: 100px;
}

.max-height-100 {
  max-height: 100px;
}

.width-101 {
  width: 101px;
}

.height-101 {
  height: 101px;
}

.max-width-101 {
  max-width: 101px;
}

.max-height-101 {
  max-height: 101px;
}

.width-102 {
  width: 102px;
}

.height-102 {
  height: 102px;
}

.max-width-102 {
  max-width: 102px;
}

.max-height-102 {
  max-height: 102px;
}

.width-103 {
  width: 103px;
}

.height-103 {
  height: 103px;
}

.max-width-103 {
  max-width: 103px;
}

.max-height-103 {
  max-height: 103px;
}

.width-104 {
  width: 104px;
}

.height-104 {
  height: 104px;
}

.max-width-104 {
  max-width: 104px;
}

.max-height-104 {
  max-height: 104px;
}

.width-105 {
  width: 105px;
}

.height-105 {
  height: 105px;
}

.max-width-105 {
  max-width: 105px;
}

.max-height-105 {
  max-height: 105px;
}

.width-106 {
  width: 106px;
}

.height-106 {
  height: 106px;
}

.max-width-106 {
  max-width: 106px;
}

.max-height-106 {
  max-height: 106px;
}

.width-107 {
  width: 107px;
}

.height-107 {
  height: 107px;
}

.max-width-107 {
  max-width: 107px;
}

.max-height-107 {
  max-height: 107px;
}

.width-108 {
  width: 108px;
}

.height-108 {
  height: 108px;
}

.max-width-108 {
  max-width: 108px;
}

.max-height-108 {
  max-height: 108px;
}

.width-109 {
  width: 109px;
}

.height-109 {
  height: 109px;
}

.max-width-109 {
  max-width: 109px;
}

.max-height-109 {
  max-height: 109px;
}

.width-110 {
  width: 110px;
}

.height-110 {
  height: 110px;
}

.max-width-110 {
  max-width: 110px;
}

.max-height-110 {
  max-height: 110px;
}

.width-111 {
  width: 111px;
}

.height-111 {
  height: 111px;
}

.max-width-111 {
  max-width: 111px;
}

.max-height-111 {
  max-height: 111px;
}

.width-112 {
  width: 112px;
}

.height-112 {
  height: 112px;
}

.max-width-112 {
  max-width: 112px;
}

.max-height-112 {
  max-height: 112px;
}

.width-113 {
  width: 113px;
}

.height-113 {
  height: 113px;
}

.max-width-113 {
  max-width: 113px;
}

.max-height-113 {
  max-height: 113px;
}

.width-114 {
  width: 114px;
}

.height-114 {
  height: 114px;
}

.max-width-114 {
  max-width: 114px;
}

.max-height-114 {
  max-height: 114px;
}

.width-115 {
  width: 115px;
}

.height-115 {
  height: 115px;
}

.max-width-115 {
  max-width: 115px;
}

.max-height-115 {
  max-height: 115px;
}

.width-116 {
  width: 116px;
}

.height-116 {
  height: 116px;
}

.max-width-116 {
  max-width: 116px;
}

.max-height-116 {
  max-height: 116px;
}

.width-117 {
  width: 117px;
}

.height-117 {
  height: 117px;
}

.max-width-117 {
  max-width: 117px;
}

.max-height-117 {
  max-height: 117px;
}

.width-118 {
  width: 118px;
}

.height-118 {
  height: 118px;
}

.max-width-118 {
  max-width: 118px;
}

.max-height-118 {
  max-height: 118px;
}

.width-119 {
  width: 119px;
}

.height-119 {
  height: 119px;
}

.max-width-119 {
  max-width: 119px;
}

.max-height-119 {
  max-height: 119px;
}

.width-120 {
  width: 120px;
}

.height-120 {
  height: 120px;
}

.max-width-120 {
  max-width: 120px;
}

.max-height-120 {
  max-height: 120px;
}

.width-121 {
  width: 121px;
}

.height-121 {
  height: 121px;
}

.max-width-121 {
  max-width: 121px;
}

.max-height-121 {
  max-height: 121px;
}

.width-122 {
  width: 122px;
}

.height-122 {
  height: 122px;
}

.max-width-122 {
  max-width: 122px;
}

.max-height-122 {
  max-height: 122px;
}

.width-123 {
  width: 123px;
}

.height-123 {
  height: 123px;
}

.max-width-123 {
  max-width: 123px;
}

.max-height-123 {
  max-height: 123px;
}

.width-124 {
  width: 124px;
}

.height-124 {
  height: 124px;
}

.max-width-124 {
  max-width: 124px;
}

.max-height-124 {
  max-height: 124px;
}

.width-125 {
  width: 125px;
}

.height-125 {
  height: 125px;
}

.max-width-125 {
  max-width: 125px;
}

.max-height-125 {
  max-height: 125px;
}

.width-126 {
  width: 126px;
}

.height-126 {
  height: 126px;
}

.max-width-126 {
  max-width: 126px;
}

.max-height-126 {
  max-height: 126px;
}

.width-127 {
  width: 127px;
}

.height-127 {
  height: 127px;
}

.max-width-127 {
  max-width: 127px;
}

.max-height-127 {
  max-height: 127px;
}

.width-128 {
  width: 128px;
}

.height-128 {
  height: 128px;
}

.max-width-128 {
  max-width: 128px;
}

.max-height-128 {
  max-height: 128px;
}

.width-129 {
  width: 129px;
}

.height-129 {
  height: 129px;
}

.max-width-129 {
  max-width: 129px;
}

.max-height-129 {
  max-height: 129px;
}

.width-130 {
  width: 130px;
}

.height-130 {
  height: 130px;
}

.max-width-130 {
  max-width: 130px;
}

.max-height-130 {
  max-height: 130px;
}

.width-131 {
  width: 131px;
}

.height-131 {
  height: 131px;
}

.max-width-131 {
  max-width: 131px;
}

.max-height-131 {
  max-height: 131px;
}

.width-132 {
  width: 132px;
}

.height-132 {
  height: 132px;
}

.max-width-132 {
  max-width: 132px;
}

.max-height-132 {
  max-height: 132px;
}

.width-133 {
  width: 133px;
}

.height-133 {
  height: 133px;
}

.max-width-133 {
  max-width: 133px;
}

.max-height-133 {
  max-height: 133px;
}

.width-134 {
  width: 134px;
}

.height-134 {
  height: 134px;
}

.max-width-134 {
  max-width: 134px;
}

.max-height-134 {
  max-height: 134px;
}

.width-135 {
  width: 135px;
}

.height-135 {
  height: 135px;
}

.max-width-135 {
  max-width: 135px;
}

.max-height-135 {
  max-height: 135px;
}

.width-136 {
  width: 136px;
}

.height-136 {
  height: 136px;
}

.max-width-136 {
  max-width: 136px;
}

.max-height-136 {
  max-height: 136px;
}

.width-137 {
  width: 137px;
}

.height-137 {
  height: 137px;
}

.max-width-137 {
  max-width: 137px;
}

.max-height-137 {
  max-height: 137px;
}

.width-138 {
  width: 138px;
}

.height-138 {
  height: 138px;
}

.max-width-138 {
  max-width: 138px;
}

.max-height-138 {
  max-height: 138px;
}

.width-139 {
  width: 139px;
}

.height-139 {
  height: 139px;
}

.max-width-139 {
  max-width: 139px;
}

.max-height-139 {
  max-height: 139px;
}

.width-140 {
  width: 140px;
}

.height-140 {
  height: 140px;
}

.max-width-140 {
  max-width: 140px;
}

.max-height-140 {
  max-height: 140px;
}

.width-141 {
  width: 141px;
}

.height-141 {
  height: 141px;
}

.max-width-141 {
  max-width: 141px;
}

.max-height-141 {
  max-height: 141px;
}

.width-142 {
  width: 142px;
}

.height-142 {
  height: 142px;
}

.max-width-142 {
  max-width: 142px;
}

.max-height-142 {
  max-height: 142px;
}

.width-143 {
  width: 143px;
}

.height-143 {
  height: 143px;
}

.max-width-143 {
  max-width: 143px;
}

.max-height-143 {
  max-height: 143px;
}

.width-144 {
  width: 144px;
}

.height-144 {
  height: 144px;
}

.max-width-144 {
  max-width: 144px;
}

.max-height-144 {
  max-height: 144px;
}

.width-145 {
  width: 145px;
}

.height-145 {
  height: 145px;
}

.max-width-145 {
  max-width: 145px;
}

.max-height-145 {
  max-height: 145px;
}

.width-146 {
  width: 146px;
}

.height-146 {
  height: 146px;
}

.max-width-146 {
  max-width: 146px;
}

.max-height-146 {
  max-height: 146px;
}

.width-147 {
  width: 147px;
}

.height-147 {
  height: 147px;
}

.max-width-147 {
  max-width: 147px;
}

.max-height-147 {
  max-height: 147px;
}

.width-148 {
  width: 148px;
}

.height-148 {
  height: 148px;
}

.max-width-148 {
  max-width: 148px;
}

.max-height-148 {
  max-height: 148px;
}

.width-149 {
  width: 149px;
}

.height-149 {
  height: 149px;
}

.max-width-149 {
  max-width: 149px;
}

.max-height-149 {
  max-height: 149px;
}

.width-150 {
  width: 150px;
}

.height-150 {
  height: 150px;
}

.max-width-150 {
  max-width: 150px;
}

.max-height-150 {
  max-height: 150px;
}

.width-151 {
  width: 151px;
}

.height-151 {
  height: 151px;
}

.max-width-151 {
  max-width: 151px;
}

.max-height-151 {
  max-height: 151px;
}

.width-152 {
  width: 152px;
}

.height-152 {
  height: 152px;
}

.max-width-152 {
  max-width: 152px;
}

.max-height-152 {
  max-height: 152px;
}

.width-153 {
  width: 153px;
}

.height-153 {
  height: 153px;
}

.max-width-153 {
  max-width: 153px;
}

.max-height-153 {
  max-height: 153px;
}

.width-154 {
  width: 154px;
}

.height-154 {
  height: 154px;
}

.max-width-154 {
  max-width: 154px;
}

.max-height-154 {
  max-height: 154px;
}

.width-155 {
  width: 155px;
}

.height-155 {
  height: 155px;
}

.max-width-155 {
  max-width: 155px;
}

.max-height-155 {
  max-height: 155px;
}

.width-156 {
  width: 156px;
}

.height-156 {
  height: 156px;
}

.max-width-156 {
  max-width: 156px;
}

.max-height-156 {
  max-height: 156px;
}

.width-157 {
  width: 157px;
}

.height-157 {
  height: 157px;
}

.max-width-157 {
  max-width: 157px;
}

.max-height-157 {
  max-height: 157px;
}

.width-158 {
  width: 158px;
}

.height-158 {
  height: 158px;
}

.max-width-158 {
  max-width: 158px;
}

.max-height-158 {
  max-height: 158px;
}

.width-159 {
  width: 159px;
}

.height-159 {
  height: 159px;
}

.max-width-159 {
  max-width: 159px;
}

.max-height-159 {
  max-height: 159px;
}

.width-160 {
  width: 160px;
}

.height-160 {
  height: 160px;
}

.max-width-160 {
  max-width: 160px;
}

.max-height-160 {
  max-height: 160px;
}

.width-161 {
  width: 161px;
}

.height-161 {
  height: 161px;
}

.max-width-161 {
  max-width: 161px;
}

.max-height-161 {
  max-height: 161px;
}

.width-162 {
  width: 162px;
}

.height-162 {
  height: 162px;
}

.max-width-162 {
  max-width: 162px;
}

.max-height-162 {
  max-height: 162px;
}

.width-163 {
  width: 163px;
}

.height-163 {
  height: 163px;
}

.max-width-163 {
  max-width: 163px;
}

.max-height-163 {
  max-height: 163px;
}

.width-164 {
  width: 164px;
}

.height-164 {
  height: 164px;
}

.max-width-164 {
  max-width: 164px;
}

.max-height-164 {
  max-height: 164px;
}

.width-165 {
  width: 165px;
}

.height-165 {
  height: 165px;
}

.max-width-165 {
  max-width: 165px;
}

.max-height-165 {
  max-height: 165px;
}

.width-166 {
  width: 166px;
}

.height-166 {
  height: 166px;
}

.max-width-166 {
  max-width: 166px;
}

.max-height-166 {
  max-height: 166px;
}

.width-167 {
  width: 167px;
}

.height-167 {
  height: 167px;
}

.max-width-167 {
  max-width: 167px;
}

.max-height-167 {
  max-height: 167px;
}

.width-168 {
  width: 168px;
}

.height-168 {
  height: 168px;
}

.max-width-168 {
  max-width: 168px;
}

.max-height-168 {
  max-height: 168px;
}

.width-169 {
  width: 169px;
}

.height-169 {
  height: 169px;
}

.max-width-169 {
  max-width: 169px;
}

.max-height-169 {
  max-height: 169px;
}

.width-170 {
  width: 170px;
}

.height-170 {
  height: 170px;
}

.max-width-170 {
  max-width: 170px;
}

.max-height-170 {
  max-height: 170px;
}

.width-171 {
  width: 171px;
}

.height-171 {
  height: 171px;
}

.max-width-171 {
  max-width: 171px;
}

.max-height-171 {
  max-height: 171px;
}

.width-172 {
  width: 172px;
}

.height-172 {
  height: 172px;
}

.max-width-172 {
  max-width: 172px;
}

.max-height-172 {
  max-height: 172px;
}

.width-173 {
  width: 173px;
}

.height-173 {
  height: 173px;
}

.max-width-173 {
  max-width: 173px;
}

.max-height-173 {
  max-height: 173px;
}

.width-174 {
  width: 174px;
}

.height-174 {
  height: 174px;
}

.max-width-174 {
  max-width: 174px;
}

.max-height-174 {
  max-height: 174px;
}

.width-175 {
  width: 175px;
}

.height-175 {
  height: 175px;
}

.max-width-175 {
  max-width: 175px;
}

.max-height-175 {
  max-height: 175px;
}

.width-176 {
  width: 176px;
}

.height-176 {
  height: 176px;
}

.max-width-176 {
  max-width: 176px;
}

.max-height-176 {
  max-height: 176px;
}

.width-177 {
  width: 177px;
}

.height-177 {
  height: 177px;
}

.max-width-177 {
  max-width: 177px;
}

.max-height-177 {
  max-height: 177px;
}

.width-178 {
  width: 178px;
}

.height-178 {
  height: 178px;
}

.max-width-178 {
  max-width: 178px;
}

.max-height-178 {
  max-height: 178px;
}

.width-179 {
  width: 179px;
}

.height-179 {
  height: 179px;
}

.max-width-179 {
  max-width: 179px;
}

.max-height-179 {
  max-height: 179px;
}

.width-180 {
  width: 180px;
}

.height-180 {
  height: 180px;
}

.max-width-180 {
  max-width: 180px;
}

.max-height-180 {
  max-height: 180px;
}

.width-181 {
  width: 181px;
}

.height-181 {
  height: 181px;
}

.max-width-181 {
  max-width: 181px;
}

.max-height-181 {
  max-height: 181px;
}

.width-182 {
  width: 182px;
}

.height-182 {
  height: 182px;
}

.max-width-182 {
  max-width: 182px;
}

.max-height-182 {
  max-height: 182px;
}

.width-183 {
  width: 183px;
}

.height-183 {
  height: 183px;
}

.max-width-183 {
  max-width: 183px;
}

.max-height-183 {
  max-height: 183px;
}

.width-184 {
  width: 184px;
}

.height-184 {
  height: 184px;
}

.max-width-184 {
  max-width: 184px;
}

.max-height-184 {
  max-height: 184px;
}

.width-185 {
  width: 185px;
}

.height-185 {
  height: 185px;
}

.max-width-185 {
  max-width: 185px;
}

.max-height-185 {
  max-height: 185px;
}

.width-186 {
  width: 186px;
}

.height-186 {
  height: 186px;
}

.max-width-186 {
  max-width: 186px;
}

.max-height-186 {
  max-height: 186px;
}

.width-187 {
  width: 187px;
}

.height-187 {
  height: 187px;
}

.max-width-187 {
  max-width: 187px;
}

.max-height-187 {
  max-height: 187px;
}

.width-188 {
  width: 188px;
}

.height-188 {
  height: 188px;
}

.max-width-188 {
  max-width: 188px;
}

.max-height-188 {
  max-height: 188px;
}

.width-189 {
  width: 189px;
}

.height-189 {
  height: 189px;
}

.max-width-189 {
  max-width: 189px;
}

.max-height-189 {
  max-height: 189px;
}

.width-190 {
  width: 190px;
}

.height-190 {
  height: 190px;
}

.max-width-190 {
  max-width: 190px;
}

.max-height-190 {
  max-height: 190px;
}

.width-191 {
  width: 191px;
}

.height-191 {
  height: 191px;
}

.max-width-191 {
  max-width: 191px;
}

.max-height-191 {
  max-height: 191px;
}

.width-192 {
  width: 192px;
}

.height-192 {
  height: 192px;
}

.max-width-192 {
  max-width: 192px;
}

.max-height-192 {
  max-height: 192px;
}

.width-193 {
  width: 193px;
}

.height-193 {
  height: 193px;
}

.max-width-193 {
  max-width: 193px;
}

.max-height-193 {
  max-height: 193px;
}

.width-194 {
  width: 194px;
}

.height-194 {
  height: 194px;
}

.max-width-194 {
  max-width: 194px;
}

.max-height-194 {
  max-height: 194px;
}

.width-195 {
  width: 195px;
}

.height-195 {
  height: 195px;
}

.max-width-195 {
  max-width: 195px;
}

.max-height-195 {
  max-height: 195px;
}

.width-196 {
  width: 196px;
}

.height-196 {
  height: 196px;
}

.max-width-196 {
  max-width: 196px;
}

.max-height-196 {
  max-height: 196px;
}

.width-197 {
  width: 197px;
}

.height-197 {
  height: 197px;
}

.max-width-197 {
  max-width: 197px;
}

.max-height-197 {
  max-height: 197px;
}

.width-198 {
  width: 198px;
}

.height-198 {
  height: 198px;
}

.max-width-198 {
  max-width: 198px;
}

.max-height-198 {
  max-height: 198px;
}

.width-199 {
  width: 199px;
}

.height-199 {
  height: 199px;
}

.max-width-199 {
  max-width: 199px;
}

.max-height-199 {
  max-height: 199px;
}

.width-200 {
  width: 200px;
}

.height-200 {
  height: 200px;
}

.max-width-200 {
  max-width: 200px;
}

.max-height-200 {
  max-height: 200px;
}

.width-201 {
  width: 201px;
}

.height-201 {
  height: 201px;
}

.max-width-201 {
  max-width: 201px;
}

.max-height-201 {
  max-height: 201px;
}

.width-202 {
  width: 202px;
}

.height-202 {
  height: 202px;
}

.max-width-202 {
  max-width: 202px;
}

.max-height-202 {
  max-height: 202px;
}

.width-203 {
  width: 203px;
}

.height-203 {
  height: 203px;
}

.max-width-203 {
  max-width: 203px;
}

.max-height-203 {
  max-height: 203px;
}

.width-204 {
  width: 204px;
}

.height-204 {
  height: 204px;
}

.max-width-204 {
  max-width: 204px;
}

.max-height-204 {
  max-height: 204px;
}

.width-205 {
  width: 205px;
}

.height-205 {
  height: 205px;
}

.max-width-205 {
  max-width: 205px;
}

.max-height-205 {
  max-height: 205px;
}

.width-206 {
  width: 206px;
}

.height-206 {
  height: 206px;
}

.max-width-206 {
  max-width: 206px;
}

.max-height-206 {
  max-height: 206px;
}

.width-207 {
  width: 207px;
}

.height-207 {
  height: 207px;
}

.max-width-207 {
  max-width: 207px;
}

.max-height-207 {
  max-height: 207px;
}

.width-208 {
  width: 208px;
}

.height-208 {
  height: 208px;
}

.max-width-208 {
  max-width: 208px;
}

.max-height-208 {
  max-height: 208px;
}

.width-209 {
  width: 209px;
}

.height-209 {
  height: 209px;
}

.max-width-209 {
  max-width: 209px;
}

.max-height-209 {
  max-height: 209px;
}

.width-210 {
  width: 210px;
}

.height-210 {
  height: 210px;
}

.max-width-210 {
  max-width: 210px;
}

.max-height-210 {
  max-height: 210px;
}

.width-211 {
  width: 211px;
}

.height-211 {
  height: 211px;
}

.max-width-211 {
  max-width: 211px;
}

.max-height-211 {
  max-height: 211px;
}

.width-212 {
  width: 212px;
}

.height-212 {
  height: 212px;
}

.max-width-212 {
  max-width: 212px;
}

.max-height-212 {
  max-height: 212px;
}

.width-213 {
  width: 213px;
}

.height-213 {
  height: 213px;
}

.max-width-213 {
  max-width: 213px;
}

.max-height-213 {
  max-height: 213px;
}

.width-214 {
  width: 214px;
}

.height-214 {
  height: 214px;
}

.max-width-214 {
  max-width: 214px;
}

.max-height-214 {
  max-height: 214px;
}

.width-215 {
  width: 215px;
}

.height-215 {
  height: 215px;
}

.max-width-215 {
  max-width: 215px;
}

.max-height-215 {
  max-height: 215px;
}

.width-216 {
  width: 216px;
}

.height-216 {
  height: 216px;
}

.max-width-216 {
  max-width: 216px;
}

.max-height-216 {
  max-height: 216px;
}

.width-217 {
  width: 217px;
}

.height-217 {
  height: 217px;
}

.max-width-217 {
  max-width: 217px;
}

.max-height-217 {
  max-height: 217px;
}

.width-218 {
  width: 218px;
}

.height-218 {
  height: 218px;
}

.max-width-218 {
  max-width: 218px;
}

.max-height-218 {
  max-height: 218px;
}

.width-219 {
  width: 219px;
}

.height-219 {
  height: 219px;
}

.max-width-219 {
  max-width: 219px;
}

.max-height-219 {
  max-height: 219px;
}

.width-220 {
  width: 220px;
}

.height-220 {
  height: 220px;
}

.max-width-220 {
  max-width: 220px;
}

.max-height-220 {
  max-height: 220px;
}

.width-221 {
  width: 221px;
}

.height-221 {
  height: 221px;
}

.max-width-221 {
  max-width: 221px;
}

.max-height-221 {
  max-height: 221px;
}

.width-222 {
  width: 222px;
}

.height-222 {
  height: 222px;
}

.max-width-222 {
  max-width: 222px;
}

.max-height-222 {
  max-height: 222px;
}

.width-223 {
  width: 223px;
}

.height-223 {
  height: 223px;
}

.max-width-223 {
  max-width: 223px;
}

.max-height-223 {
  max-height: 223px;
}

.width-224 {
  width: 224px;
}

.height-224 {
  height: 224px;
}

.max-width-224 {
  max-width: 224px;
}

.max-height-224 {
  max-height: 224px;
}

.width-225 {
  width: 225px;
}

.height-225 {
  height: 225px;
}

.max-width-225 {
  max-width: 225px;
}

.max-height-225 {
  max-height: 225px;
}

.width-226 {
  width: 226px;
}

.height-226 {
  height: 226px;
}

.max-width-226 {
  max-width: 226px;
}

.max-height-226 {
  max-height: 226px;
}

.width-227 {
  width: 227px;
}

.height-227 {
  height: 227px;
}

.max-width-227 {
  max-width: 227px;
}

.max-height-227 {
  max-height: 227px;
}

.width-228 {
  width: 228px;
}

.height-228 {
  height: 228px;
}

.max-width-228 {
  max-width: 228px;
}

.max-height-228 {
  max-height: 228px;
}

.width-229 {
  width: 229px;
}

.height-229 {
  height: 229px;
}

.max-width-229 {
  max-width: 229px;
}

.max-height-229 {
  max-height: 229px;
}

.width-230 {
  width: 230px;
}

.height-230 {
  height: 230px;
}

.max-width-230 {
  max-width: 230px;
}

.max-height-230 {
  max-height: 230px;
}

.width-231 {
  width: 231px;
}

.height-231 {
  height: 231px;
}

.max-width-231 {
  max-width: 231px;
}

.max-height-231 {
  max-height: 231px;
}

.width-232 {
  width: 232px;
}

.height-232 {
  height: 232px;
}

.max-width-232 {
  max-width: 232px;
}

.max-height-232 {
  max-height: 232px;
}

.width-233 {
  width: 233px;
}

.height-233 {
  height: 233px;
}

.max-width-233 {
  max-width: 233px;
}

.max-height-233 {
  max-height: 233px;
}

.width-234 {
  width: 234px;
}

.height-234 {
  height: 234px;
}

.max-width-234 {
  max-width: 234px;
}

.max-height-234 {
  max-height: 234px;
}

.width-235 {
  width: 235px;
}

.height-235 {
  height: 235px;
}

.max-width-235 {
  max-width: 235px;
}

.max-height-235 {
  max-height: 235px;
}

.width-236 {
  width: 236px;
}

.height-236 {
  height: 236px;
}

.max-width-236 {
  max-width: 236px;
}

.max-height-236 {
  max-height: 236px;
}

.width-237 {
  width: 237px;
}

.height-237 {
  height: 237px;
}

.max-width-237 {
  max-width: 237px;
}

.max-height-237 {
  max-height: 237px;
}

.width-238 {
  width: 238px;
}

.height-238 {
  height: 238px;
}

.max-width-238 {
  max-width: 238px;
}

.max-height-238 {
  max-height: 238px;
}

.width-239 {
  width: 239px;
}

.height-239 {
  height: 239px;
}

.max-width-239 {
  max-width: 239px;
}

.max-height-239 {
  max-height: 239px;
}

.width-240 {
  width: 240px;
}

.height-240 {
  height: 240px;
}

.max-width-240 {
  max-width: 240px;
}

.max-height-240 {
  max-height: 240px;
}

.width-241 {
  width: 241px;
}

.height-241 {
  height: 241px;
}

.max-width-241 {
  max-width: 241px;
}

.max-height-241 {
  max-height: 241px;
}

.width-242 {
  width: 242px;
}

.height-242 {
  height: 242px;
}

.max-width-242 {
  max-width: 242px;
}

.max-height-242 {
  max-height: 242px;
}

.width-243 {
  width: 243px;
}

.height-243 {
  height: 243px;
}

.max-width-243 {
  max-width: 243px;
}

.max-height-243 {
  max-height: 243px;
}

.width-244 {
  width: 244px;
}

.height-244 {
  height: 244px;
}

.max-width-244 {
  max-width: 244px;
}

.max-height-244 {
  max-height: 244px;
}

.width-245 {
  width: 245px;
}

.height-245 {
  height: 245px;
}

.max-width-245 {
  max-width: 245px;
}

.max-height-245 {
  max-height: 245px;
}

.width-246 {
  width: 246px;
}

.height-246 {
  height: 246px;
}

.max-width-246 {
  max-width: 246px;
}

.max-height-246 {
  max-height: 246px;
}

.width-247 {
  width: 247px;
}

.height-247 {
  height: 247px;
}

.max-width-247 {
  max-width: 247px;
}

.max-height-247 {
  max-height: 247px;
}

.width-248 {
  width: 248px;
}

.height-248 {
  height: 248px;
}

.max-width-248 {
  max-width: 248px;
}

.max-height-248 {
  max-height: 248px;
}

.width-249 {
  width: 249px;
}

.height-249 {
  height: 249px;
}

.max-width-249 {
  max-width: 249px;
}

.max-height-249 {
  max-height: 249px;
}

.width-250 {
  width: 250px;
}

.height-250 {
  height: 250px;
}

.max-width-250 {
  max-width: 250px;
}

.max-height-250 {
  max-height: 250px;
}

.width-251 {
  width: 251px;
}

.height-251 {
  height: 251px;
}

.max-width-251 {
  max-width: 251px;
}

.max-height-251 {
  max-height: 251px;
}

.width-252 {
  width: 252px;
}

.height-252 {
  height: 252px;
}

.max-width-252 {
  max-width: 252px;
}

.max-height-252 {
  max-height: 252px;
}

.width-253 {
  width: 253px;
}

.height-253 {
  height: 253px;
}

.max-width-253 {
  max-width: 253px;
}

.max-height-253 {
  max-height: 253px;
}

.width-254 {
  width: 254px;
}

.height-254 {
  height: 254px;
}

.max-width-254 {
  max-width: 254px;
}

.max-height-254 {
  max-height: 254px;
}

.width-255 {
  width: 255px;
}

.height-255 {
  height: 255px;
}

.max-width-255 {
  max-width: 255px;
}

.max-height-255 {
  max-height: 255px;
}

.width-256 {
  width: 256px;
}

.height-256 {
  height: 256px;
}

.max-width-256 {
  max-width: 256px;
}

.max-height-256 {
  max-height: 256px;
}

.width-257 {
  width: 257px;
}

.height-257 {
  height: 257px;
}

.max-width-257 {
  max-width: 257px;
}

.max-height-257 {
  max-height: 257px;
}

.width-258 {
  width: 258px;
}

.height-258 {
  height: 258px;
}

.max-width-258 {
  max-width: 258px;
}

.max-height-258 {
  max-height: 258px;
}

.width-259 {
  width: 259px;
}

.height-259 {
  height: 259px;
}

.max-width-259 {
  max-width: 259px;
}

.max-height-259 {
  max-height: 259px;
}

.width-260 {
  width: 260px;
}

.height-260 {
  height: 260px;
}

.max-width-260 {
  max-width: 260px;
}

.max-height-260 {
  max-height: 260px;
}

.width-261 {
  width: 261px;
}

.height-261 {
  height: 261px;
}

.max-width-261 {
  max-width: 261px;
}

.max-height-261 {
  max-height: 261px;
}

.width-262 {
  width: 262px;
}

.height-262 {
  height: 262px;
}

.max-width-262 {
  max-width: 262px;
}

.max-height-262 {
  max-height: 262px;
}

.width-263 {
  width: 263px;
}

.height-263 {
  height: 263px;
}

.max-width-263 {
  max-width: 263px;
}

.max-height-263 {
  max-height: 263px;
}

.width-264 {
  width: 264px;
}

.height-264 {
  height: 264px;
}

.max-width-264 {
  max-width: 264px;
}

.max-height-264 {
  max-height: 264px;
}

.width-265 {
  width: 265px;
}

.height-265 {
  height: 265px;
}

.max-width-265 {
  max-width: 265px;
}

.max-height-265 {
  max-height: 265px;
}

.width-266 {
  width: 266px;
}

.height-266 {
  height: 266px;
}

.max-width-266 {
  max-width: 266px;
}

.max-height-266 {
  max-height: 266px;
}

.width-267 {
  width: 267px;
}

.height-267 {
  height: 267px;
}

.max-width-267 {
  max-width: 267px;
}

.max-height-267 {
  max-height: 267px;
}

.width-268 {
  width: 268px;
}

.height-268 {
  height: 268px;
}

.max-width-268 {
  max-width: 268px;
}

.max-height-268 {
  max-height: 268px;
}

.width-269 {
  width: 269px;
}

.height-269 {
  height: 269px;
}

.max-width-269 {
  max-width: 269px;
}

.max-height-269 {
  max-height: 269px;
}

.width-270 {
  width: 270px;
}

.height-270 {
  height: 270px;
}

.max-width-270 {
  max-width: 270px;
}

.max-height-270 {
  max-height: 270px;
}

.width-271 {
  width: 271px;
}

.height-271 {
  height: 271px;
}

.max-width-271 {
  max-width: 271px;
}

.max-height-271 {
  max-height: 271px;
}

.width-272 {
  width: 272px;
}

.height-272 {
  height: 272px;
}

.max-width-272 {
  max-width: 272px;
}

.max-height-272 {
  max-height: 272px;
}

.width-273 {
  width: 273px;
}

.height-273 {
  height: 273px;
}

.max-width-273 {
  max-width: 273px;
}

.max-height-273 {
  max-height: 273px;
}

.width-274 {
  width: 274px;
}

.height-274 {
  height: 274px;
}

.max-width-274 {
  max-width: 274px;
}

.max-height-274 {
  max-height: 274px;
}

.width-275 {
  width: 275px;
}

.height-275 {
  height: 275px;
}

.max-width-275 {
  max-width: 275px;
}

.max-height-275 {
  max-height: 275px;
}

.width-276 {
  width: 276px;
}

.height-276 {
  height: 276px;
}

.max-width-276 {
  max-width: 276px;
}

.max-height-276 {
  max-height: 276px;
}

.width-277 {
  width: 277px;
}

.height-277 {
  height: 277px;
}

.max-width-277 {
  max-width: 277px;
}

.max-height-277 {
  max-height: 277px;
}

.width-278 {
  width: 278px;
}

.height-278 {
  height: 278px;
}

.max-width-278 {
  max-width: 278px;
}

.max-height-278 {
  max-height: 278px;
}

.width-279 {
  width: 279px;
}

.height-279 {
  height: 279px;
}

.max-width-279 {
  max-width: 279px;
}

.max-height-279 {
  max-height: 279px;
}

.width-280 {
  width: 280px;
}

.height-280 {
  height: 280px;
}

.max-width-280 {
  max-width: 280px;
}

.max-height-280 {
  max-height: 280px;
}

.width-281 {
  width: 281px;
}

.height-281 {
  height: 281px;
}

.max-width-281 {
  max-width: 281px;
}

.max-height-281 {
  max-height: 281px;
}

.width-282 {
  width: 282px;
}

.height-282 {
  height: 282px;
}

.max-width-282 {
  max-width: 282px;
}

.max-height-282 {
  max-height: 282px;
}

.width-283 {
  width: 283px;
}

.height-283 {
  height: 283px;
}

.max-width-283 {
  max-width: 283px;
}

.max-height-283 {
  max-height: 283px;
}

.width-284 {
  width: 284px;
}

.height-284 {
  height: 284px;
}

.max-width-284 {
  max-width: 284px;
}

.max-height-284 {
  max-height: 284px;
}

.width-285 {
  width: 285px;
}

.height-285 {
  height: 285px;
}

.max-width-285 {
  max-width: 285px;
}

.max-height-285 {
  max-height: 285px;
}

.width-286 {
  width: 286px;
}

.height-286 {
  height: 286px;
}

.max-width-286 {
  max-width: 286px;
}

.max-height-286 {
  max-height: 286px;
}

.width-287 {
  width: 287px;
}

.height-287 {
  height: 287px;
}

.max-width-287 {
  max-width: 287px;
}

.max-height-287 {
  max-height: 287px;
}

.width-288 {
  width: 288px;
}

.height-288 {
  height: 288px;
}

.max-width-288 {
  max-width: 288px;
}

.max-height-288 {
  max-height: 288px;
}

.width-289 {
  width: 289px;
}

.height-289 {
  height: 289px;
}

.max-width-289 {
  max-width: 289px;
}

.max-height-289 {
  max-height: 289px;
}

.width-290 {
  width: 290px;
}

.height-290 {
  height: 290px;
}

.max-width-290 {
  max-width: 290px;
}

.max-height-290 {
  max-height: 290px;
}

.width-291 {
  width: 291px;
}

.height-291 {
  height: 291px;
}

.max-width-291 {
  max-width: 291px;
}

.max-height-291 {
  max-height: 291px;
}

.width-292 {
  width: 292px;
}

.height-292 {
  height: 292px;
}

.max-width-292 {
  max-width: 292px;
}

.max-height-292 {
  max-height: 292px;
}

.width-293 {
  width: 293px;
}

.height-293 {
  height: 293px;
}

.max-width-293 {
  max-width: 293px;
}

.max-height-293 {
  max-height: 293px;
}

.width-294 {
  width: 294px;
}

.height-294 {
  height: 294px;
}

.max-width-294 {
  max-width: 294px;
}

.max-height-294 {
  max-height: 294px;
}

.width-295 {
  width: 295px;
}

.height-295 {
  height: 295px;
}

.max-width-295 {
  max-width: 295px;
}

.max-height-295 {
  max-height: 295px;
}

.width-296 {
  width: 296px;
}

.height-296 {
  height: 296px;
}

.max-width-296 {
  max-width: 296px;
}

.max-height-296 {
  max-height: 296px;
}

.width-297 {
  width: 297px;
}

.height-297 {
  height: 297px;
}

.max-width-297 {
  max-width: 297px;
}

.max-height-297 {
  max-height: 297px;
}

.width-298 {
  width: 298px;
}

.height-298 {
  height: 298px;
}

.max-width-298 {
  max-width: 298px;
}

.max-height-298 {
  max-height: 298px;
}

.width-299 {
  width: 299px;
}

.height-299 {
  height: 299px;
}

.max-width-299 {
  max-width: 299px;
}

.max-height-299 {
  max-height: 299px;
}

.width-300 {
  width: 300px;
}

.height-300 {
  height: 300px;
}

.max-width-300 {
  max-width: 300px;
}

.max-height-300 {
  max-height: 300px;
}

.width-301 {
  width: 301px;
}

.height-301 {
  height: 301px;
}

.max-width-301 {
  max-width: 301px;
}

.max-height-301 {
  max-height: 301px;
}

.width-302 {
  width: 302px;
}

.height-302 {
  height: 302px;
}

.max-width-302 {
  max-width: 302px;
}

.max-height-302 {
  max-height: 302px;
}

.width-303 {
  width: 303px;
}

.height-303 {
  height: 303px;
}

.max-width-303 {
  max-width: 303px;
}

.max-height-303 {
  max-height: 303px;
}

.width-304 {
  width: 304px;
}

.height-304 {
  height: 304px;
}

.max-width-304 {
  max-width: 304px;
}

.max-height-304 {
  max-height: 304px;
}

.width-305 {
  width: 305px;
}

.height-305 {
  height: 305px;
}

.max-width-305 {
  max-width: 305px;
}

.max-height-305 {
  max-height: 305px;
}

.width-306 {
  width: 306px;
}

.height-306 {
  height: 306px;
}

.max-width-306 {
  max-width: 306px;
}

.max-height-306 {
  max-height: 306px;
}

.width-307 {
  width: 307px;
}

.height-307 {
  height: 307px;
}

.max-width-307 {
  max-width: 307px;
}

.max-height-307 {
  max-height: 307px;
}

.width-308 {
  width: 308px;
}

.height-308 {
  height: 308px;
}

.max-width-308 {
  max-width: 308px;
}

.max-height-308 {
  max-height: 308px;
}

.width-309 {
  width: 309px;
}

.height-309 {
  height: 309px;
}

.max-width-309 {
  max-width: 309px;
}

.max-height-309 {
  max-height: 309px;
}

.width-310 {
  width: 310px;
}

.height-310 {
  height: 310px;
}

.max-width-310 {
  max-width: 310px;
}

.max-height-310 {
  max-height: 310px;
}

.width-311 {
  width: 311px;
}

.height-311 {
  height: 311px;
}

.max-width-311 {
  max-width: 311px;
}

.max-height-311 {
  max-height: 311px;
}

.width-312 {
  width: 312px;
}

.height-312 {
  height: 312px;
}

.max-width-312 {
  max-width: 312px;
}

.max-height-312 {
  max-height: 312px;
}

.width-313 {
  width: 313px;
}

.height-313 {
  height: 313px;
}

.max-width-313 {
  max-width: 313px;
}

.max-height-313 {
  max-height: 313px;
}

.width-314 {
  width: 314px;
}

.height-314 {
  height: 314px;
}

.max-width-314 {
  max-width: 314px;
}

.max-height-314 {
  max-height: 314px;
}

.width-315 {
  width: 315px;
}

.height-315 {
  height: 315px;
}

.max-width-315 {
  max-width: 315px;
}

.max-height-315 {
  max-height: 315px;
}

.width-316 {
  width: 316px;
}

.height-316 {
  height: 316px;
}

.max-width-316 {
  max-width: 316px;
}

.max-height-316 {
  max-height: 316px;
}

.width-317 {
  width: 317px;
}

.height-317 {
  height: 317px;
}

.max-width-317 {
  max-width: 317px;
}

.max-height-317 {
  max-height: 317px;
}

.width-318 {
  width: 318px;
}

.height-318 {
  height: 318px;
}

.max-width-318 {
  max-width: 318px;
}

.max-height-318 {
  max-height: 318px;
}

.width-319 {
  width: 319px;
}

.height-319 {
  height: 319px;
}

.max-width-319 {
  max-width: 319px;
}

.max-height-319 {
  max-height: 319px;
}

.width-320 {
  width: 320px;
}

.height-320 {
  height: 320px;
}

.max-width-320 {
  max-width: 320px;
}

.max-height-320 {
  max-height: 320px;
}

.width-321 {
  width: 321px;
}

.height-321 {
  height: 321px;
}

.max-width-321 {
  max-width: 321px;
}

.max-height-321 {
  max-height: 321px;
}

.width-322 {
  width: 322px;
}

.height-322 {
  height: 322px;
}

.max-width-322 {
  max-width: 322px;
}

.max-height-322 {
  max-height: 322px;
}

.width-323 {
  width: 323px;
}

.height-323 {
  height: 323px;
}

.max-width-323 {
  max-width: 323px;
}

.max-height-323 {
  max-height: 323px;
}

.width-324 {
  width: 324px;
}

.height-324 {
  height: 324px;
}

.max-width-324 {
  max-width: 324px;
}

.max-height-324 {
  max-height: 324px;
}

.width-325 {
  width: 325px;
}

.height-325 {
  height: 325px;
}

.max-width-325 {
  max-width: 325px;
}

.max-height-325 {
  max-height: 325px;
}

.width-326 {
  width: 326px;
}

.height-326 {
  height: 326px;
}

.max-width-326 {
  max-width: 326px;
}

.max-height-326 {
  max-height: 326px;
}

.width-327 {
  width: 327px;
}

.height-327 {
  height: 327px;
}

.max-width-327 {
  max-width: 327px;
}

.max-height-327 {
  max-height: 327px;
}

.width-328 {
  width: 328px;
}

.height-328 {
  height: 328px;
}

.max-width-328 {
  max-width: 328px;
}

.max-height-328 {
  max-height: 328px;
}

.width-329 {
  width: 329px;
}

.height-329 {
  height: 329px;
}

.max-width-329 {
  max-width: 329px;
}

.max-height-329 {
  max-height: 329px;
}

.width-330 {
  width: 330px;
}

.height-330 {
  height: 330px;
}

.max-width-330 {
  max-width: 330px;
}

.max-height-330 {
  max-height: 330px;
}

.width-331 {
  width: 331px;
}

.height-331 {
  height: 331px;
}

.max-width-331 {
  max-width: 331px;
}

.max-height-331 {
  max-height: 331px;
}

.width-332 {
  width: 332px;
}

.height-332 {
  height: 332px;
}

.max-width-332 {
  max-width: 332px;
}

.max-height-332 {
  max-height: 332px;
}

.width-333 {
  width: 333px;
}

.height-333 {
  height: 333px;
}

.max-width-333 {
  max-width: 333px;
}

.max-height-333 {
  max-height: 333px;
}

.width-334 {
  width: 334px;
}

.height-334 {
  height: 334px;
}

.max-width-334 {
  max-width: 334px;
}

.max-height-334 {
  max-height: 334px;
}

.width-335 {
  width: 335px;
}

.height-335 {
  height: 335px;
}

.max-width-335 {
  max-width: 335px;
}

.max-height-335 {
  max-height: 335px;
}

.width-336 {
  width: 336px;
}

.height-336 {
  height: 336px;
}

.max-width-336 {
  max-width: 336px;
}

.max-height-336 {
  max-height: 336px;
}

.width-337 {
  width: 337px;
}

.height-337 {
  height: 337px;
}

.max-width-337 {
  max-width: 337px;
}

.max-height-337 {
  max-height: 337px;
}

.width-338 {
  width: 338px;
}

.height-338 {
  height: 338px;
}

.max-width-338 {
  max-width: 338px;
}

.max-height-338 {
  max-height: 338px;
}

.width-339 {
  width: 339px;
}

.height-339 {
  height: 339px;
}

.max-width-339 {
  max-width: 339px;
}

.max-height-339 {
  max-height: 339px;
}

.width-340 {
  width: 340px;
}

.height-340 {
  height: 340px;
}

.max-width-340 {
  max-width: 340px;
}

.max-height-340 {
  max-height: 340px;
}

.width-341 {
  width: 341px;
}

.height-341 {
  height: 341px;
}

.max-width-341 {
  max-width: 341px;
}

.max-height-341 {
  max-height: 341px;
}

.width-342 {
  width: 342px;
}

.height-342 {
  height: 342px;
}

.max-width-342 {
  max-width: 342px;
}

.max-height-342 {
  max-height: 342px;
}

.width-343 {
  width: 343px;
}

.height-343 {
  height: 343px;
}

.max-width-343 {
  max-width: 343px;
}

.max-height-343 {
  max-height: 343px;
}

.width-344 {
  width: 344px;
}

.height-344 {
  height: 344px;
}

.max-width-344 {
  max-width: 344px;
}

.max-height-344 {
  max-height: 344px;
}

.width-345 {
  width: 345px;
}

.height-345 {
  height: 345px;
}

.max-width-345 {
  max-width: 345px;
}

.max-height-345 {
  max-height: 345px;
}

.width-346 {
  width: 346px;
}

.height-346 {
  height: 346px;
}

.max-width-346 {
  max-width: 346px;
}

.max-height-346 {
  max-height: 346px;
}

.width-347 {
  width: 347px;
}

.height-347 {
  height: 347px;
}

.max-width-347 {
  max-width: 347px;
}

.max-height-347 {
  max-height: 347px;
}

.width-348 {
  width: 348px;
}

.height-348 {
  height: 348px;
}

.max-width-348 {
  max-width: 348px;
}

.max-height-348 {
  max-height: 348px;
}

.width-349 {
  width: 349px;
}

.height-349 {
  height: 349px;
}

.max-width-349 {
  max-width: 349px;
}

.max-height-349 {
  max-height: 349px;
}

.width-350 {
  width: 350px;
}

.height-350 {
  height: 350px;
}

.max-width-350 {
  max-width: 350px;
}

.max-height-350 {
  max-height: 350px;
}

.width-351 {
  width: 351px;
}

.height-351 {
  height: 351px;
}

.max-width-351 {
  max-width: 351px;
}

.max-height-351 {
  max-height: 351px;
}

.width-352 {
  width: 352px;
}

.height-352 {
  height: 352px;
}

.max-width-352 {
  max-width: 352px;
}

.max-height-352 {
  max-height: 352px;
}

.width-353 {
  width: 353px;
}

.height-353 {
  height: 353px;
}

.max-width-353 {
  max-width: 353px;
}

.max-height-353 {
  max-height: 353px;
}

.width-354 {
  width: 354px;
}

.height-354 {
  height: 354px;
}

.max-width-354 {
  max-width: 354px;
}

.max-height-354 {
  max-height: 354px;
}

.width-355 {
  width: 355px;
}

.height-355 {
  height: 355px;
}

.max-width-355 {
  max-width: 355px;
}

.max-height-355 {
  max-height: 355px;
}

.width-356 {
  width: 356px;
}

.height-356 {
  height: 356px;
}

.max-width-356 {
  max-width: 356px;
}

.max-height-356 {
  max-height: 356px;
}

.width-357 {
  width: 357px;
}

.height-357 {
  height: 357px;
}

.max-width-357 {
  max-width: 357px;
}

.max-height-357 {
  max-height: 357px;
}

.width-358 {
  width: 358px;
}

.height-358 {
  height: 358px;
}

.max-width-358 {
  max-width: 358px;
}

.max-height-358 {
  max-height: 358px;
}

.width-359 {
  width: 359px;
}

.height-359 {
  height: 359px;
}

.max-width-359 {
  max-width: 359px;
}

.max-height-359 {
  max-height: 359px;
}

.width-360 {
  width: 360px;
}

.height-360 {
  height: 360px;
}

.max-width-360 {
  max-width: 360px;
}

.max-height-360 {
  max-height: 360px;
}

.width-361 {
  width: 361px;
}

.height-361 {
  height: 361px;
}

.max-width-361 {
  max-width: 361px;
}

.max-height-361 {
  max-height: 361px;
}

.width-362 {
  width: 362px;
}

.height-362 {
  height: 362px;
}

.max-width-362 {
  max-width: 362px;
}

.max-height-362 {
  max-height: 362px;
}

.width-363 {
  width: 363px;
}

.height-363 {
  height: 363px;
}

.max-width-363 {
  max-width: 363px;
}

.max-height-363 {
  max-height: 363px;
}

.width-364 {
  width: 364px;
}

.height-364 {
  height: 364px;
}

.max-width-364 {
  max-width: 364px;
}

.max-height-364 {
  max-height: 364px;
}

.width-365 {
  width: 365px;
}

.height-365 {
  height: 365px;
}

.max-width-365 {
  max-width: 365px;
}

.max-height-365 {
  max-height: 365px;
}

.width-366 {
  width: 366px;
}

.height-366 {
  height: 366px;
}

.max-width-366 {
  max-width: 366px;
}

.max-height-366 {
  max-height: 366px;
}

.width-367 {
  width: 367px;
}

.height-367 {
  height: 367px;
}

.max-width-367 {
  max-width: 367px;
}

.max-height-367 {
  max-height: 367px;
}

.width-368 {
  width: 368px;
}

.height-368 {
  height: 368px;
}

.max-width-368 {
  max-width: 368px;
}

.max-height-368 {
  max-height: 368px;
}

.width-369 {
  width: 369px;
}

.height-369 {
  height: 369px;
}

.max-width-369 {
  max-width: 369px;
}

.max-height-369 {
  max-height: 369px;
}

.width-370 {
  width: 370px;
}

.height-370 {
  height: 370px;
}

.max-width-370 {
  max-width: 370px;
}

.max-height-370 {
  max-height: 370px;
}

.width-371 {
  width: 371px;
}

.height-371 {
  height: 371px;
}

.max-width-371 {
  max-width: 371px;
}

.max-height-371 {
  max-height: 371px;
}

.width-372 {
  width: 372px;
}

.height-372 {
  height: 372px;
}

.max-width-372 {
  max-width: 372px;
}

.max-height-372 {
  max-height: 372px;
}

.width-373 {
  width: 373px;
}

.height-373 {
  height: 373px;
}

.max-width-373 {
  max-width: 373px;
}

.max-height-373 {
  max-height: 373px;
}

.width-374 {
  width: 374px;
}

.height-374 {
  height: 374px;
}

.max-width-374 {
  max-width: 374px;
}

.max-height-374 {
  max-height: 374px;
}

.width-375 {
  width: 375px;
}

.height-375 {
  height: 375px;
}

.max-width-375 {
  max-width: 375px;
}

.max-height-375 {
  max-height: 375px;
}

.width-376 {
  width: 376px;
}

.height-376 {
  height: 376px;
}

.max-width-376 {
  max-width: 376px;
}

.max-height-376 {
  max-height: 376px;
}

.width-377 {
  width: 377px;
}

.height-377 {
  height: 377px;
}

.max-width-377 {
  max-width: 377px;
}

.max-height-377 {
  max-height: 377px;
}

.width-378 {
  width: 378px;
}

.height-378 {
  height: 378px;
}

.max-width-378 {
  max-width: 378px;
}

.max-height-378 {
  max-height: 378px;
}

.width-379 {
  width: 379px;
}

.height-379 {
  height: 379px;
}

.max-width-379 {
  max-width: 379px;
}

.max-height-379 {
  max-height: 379px;
}

.width-380 {
  width: 380px;
}

.height-380 {
  height: 380px;
}

.max-width-380 {
  max-width: 380px;
}

.max-height-380 {
  max-height: 380px;
}

.width-381 {
  width: 381px;
}

.height-381 {
  height: 381px;
}

.max-width-381 {
  max-width: 381px;
}

.max-height-381 {
  max-height: 381px;
}

.width-382 {
  width: 382px;
}

.height-382 {
  height: 382px;
}

.max-width-382 {
  max-width: 382px;
}

.max-height-382 {
  max-height: 382px;
}

.width-383 {
  width: 383px;
}

.height-383 {
  height: 383px;
}

.max-width-383 {
  max-width: 383px;
}

.max-height-383 {
  max-height: 383px;
}

.width-384 {
  width: 384px;
}

.height-384 {
  height: 384px;
}

.max-width-384 {
  max-width: 384px;
}

.max-height-384 {
  max-height: 384px;
}

.width-385 {
  width: 385px;
}

.height-385 {
  height: 385px;
}

.max-width-385 {
  max-width: 385px;
}

.max-height-385 {
  max-height: 385px;
}

.width-386 {
  width: 386px;
}

.height-386 {
  height: 386px;
}

.max-width-386 {
  max-width: 386px;
}

.max-height-386 {
  max-height: 386px;
}

.width-387 {
  width: 387px;
}

.height-387 {
  height: 387px;
}

.max-width-387 {
  max-width: 387px;
}

.max-height-387 {
  max-height: 387px;
}

.width-388 {
  width: 388px;
}

.height-388 {
  height: 388px;
}

.max-width-388 {
  max-width: 388px;
}

.max-height-388 {
  max-height: 388px;
}

.width-389 {
  width: 389px;
}

.height-389 {
  height: 389px;
}

.max-width-389 {
  max-width: 389px;
}

.max-height-389 {
  max-height: 389px;
}

.width-390 {
  width: 390px;
}

.height-390 {
  height: 390px;
}

.max-width-390 {
  max-width: 390px;
}

.max-height-390 {
  max-height: 390px;
}

.width-391 {
  width: 391px;
}

.height-391 {
  height: 391px;
}

.max-width-391 {
  max-width: 391px;
}

.max-height-391 {
  max-height: 391px;
}

.width-392 {
  width: 392px;
}

.height-392 {
  height: 392px;
}

.max-width-392 {
  max-width: 392px;
}

.max-height-392 {
  max-height: 392px;
}

.width-393 {
  width: 393px;
}

.height-393 {
  height: 393px;
}

.max-width-393 {
  max-width: 393px;
}

.max-height-393 {
  max-height: 393px;
}

.width-394 {
  width: 394px;
}

.height-394 {
  height: 394px;
}

.max-width-394 {
  max-width: 394px;
}

.max-height-394 {
  max-height: 394px;
}

.width-395 {
  width: 395px;
}

.height-395 {
  height: 395px;
}

.max-width-395 {
  max-width: 395px;
}

.max-height-395 {
  max-height: 395px;
}

.width-396 {
  width: 396px;
}

.height-396 {
  height: 396px;
}

.max-width-396 {
  max-width: 396px;
}

.max-height-396 {
  max-height: 396px;
}

.width-397 {
  width: 397px;
}

.height-397 {
  height: 397px;
}

.max-width-397 {
  max-width: 397px;
}

.max-height-397 {
  max-height: 397px;
}

.width-398 {
  width: 398px;
}

.height-398 {
  height: 398px;
}

.max-width-398 {
  max-width: 398px;
}

.max-height-398 {
  max-height: 398px;
}

.width-399 {
  width: 399px;
}

.height-399 {
  height: 399px;
}

.max-width-399 {
  max-width: 399px;
}

.max-height-399 {
  max-height: 399px;
}

.width-400 {
  width: 400px;
}

.height-400 {
  height: 400px;
}

.max-width-400 {
  max-width: 400px;
}

.max-height-400 {
  max-height: 400px;
}

.width-401 {
  width: 401px;
}

.height-401 {
  height: 401px;
}

.max-width-401 {
  max-width: 401px;
}

.max-height-401 {
  max-height: 401px;
}

.width-402 {
  width: 402px;
}

.height-402 {
  height: 402px;
}

.max-width-402 {
  max-width: 402px;
}

.max-height-402 {
  max-height: 402px;
}

.width-403 {
  width: 403px;
}

.height-403 {
  height: 403px;
}

.max-width-403 {
  max-width: 403px;
}

.max-height-403 {
  max-height: 403px;
}

.width-404 {
  width: 404px;
}

.height-404 {
  height: 404px;
}

.max-width-404 {
  max-width: 404px;
}

.max-height-404 {
  max-height: 404px;
}

.width-405 {
  width: 405px;
}

.height-405 {
  height: 405px;
}

.max-width-405 {
  max-width: 405px;
}

.max-height-405 {
  max-height: 405px;
}

.width-406 {
  width: 406px;
}

.height-406 {
  height: 406px;
}

.max-width-406 {
  max-width: 406px;
}

.max-height-406 {
  max-height: 406px;
}

.width-407 {
  width: 407px;
}

.height-407 {
  height: 407px;
}

.max-width-407 {
  max-width: 407px;
}

.max-height-407 {
  max-height: 407px;
}

.width-408 {
  width: 408px;
}

.height-408 {
  height: 408px;
}

.max-width-408 {
  max-width: 408px;
}

.max-height-408 {
  max-height: 408px;
}

.width-409 {
  width: 409px;
}

.height-409 {
  height: 409px;
}

.max-width-409 {
  max-width: 409px;
}

.max-height-409 {
  max-height: 409px;
}

.width-410 {
  width: 410px;
}

.height-410 {
  height: 410px;
}

.max-width-410 {
  max-width: 410px;
}

.max-height-410 {
  max-height: 410px;
}

.width-411 {
  width: 411px;
}

.height-411 {
  height: 411px;
}

.max-width-411 {
  max-width: 411px;
}

.max-height-411 {
  max-height: 411px;
}

.width-412 {
  width: 412px;
}

.height-412 {
  height: 412px;
}

.max-width-412 {
  max-width: 412px;
}

.max-height-412 {
  max-height: 412px;
}

.width-413 {
  width: 413px;
}

.height-413 {
  height: 413px;
}

.max-width-413 {
  max-width: 413px;
}

.max-height-413 {
  max-height: 413px;
}

.width-414 {
  width: 414px;
}

.height-414 {
  height: 414px;
}

.max-width-414 {
  max-width: 414px;
}

.max-height-414 {
  max-height: 414px;
}

.width-415 {
  width: 415px;
}

.height-415 {
  height: 415px;
}

.max-width-415 {
  max-width: 415px;
}

.max-height-415 {
  max-height: 415px;
}

.width-416 {
  width: 416px;
}

.height-416 {
  height: 416px;
}

.max-width-416 {
  max-width: 416px;
}

.max-height-416 {
  max-height: 416px;
}

.width-417 {
  width: 417px;
}

.height-417 {
  height: 417px;
}

.max-width-417 {
  max-width: 417px;
}

.max-height-417 {
  max-height: 417px;
}

.width-418 {
  width: 418px;
}

.height-418 {
  height: 418px;
}

.max-width-418 {
  max-width: 418px;
}

.max-height-418 {
  max-height: 418px;
}

.width-419 {
  width: 419px;
}

.height-419 {
  height: 419px;
}

.max-width-419 {
  max-width: 419px;
}

.max-height-419 {
  max-height: 419px;
}

.width-420 {
  width: 420px;
}

.height-420 {
  height: 420px;
}

.max-width-420 {
  max-width: 420px;
}

.max-height-420 {
  max-height: 420px;
}

.width-421 {
  width: 421px;
}

.height-421 {
  height: 421px;
}

.max-width-421 {
  max-width: 421px;
}

.max-height-421 {
  max-height: 421px;
}

.width-422 {
  width: 422px;
}

.height-422 {
  height: 422px;
}

.max-width-422 {
  max-width: 422px;
}

.max-height-422 {
  max-height: 422px;
}

.width-423 {
  width: 423px;
}

.height-423 {
  height: 423px;
}

.max-width-423 {
  max-width: 423px;
}

.max-height-423 {
  max-height: 423px;
}

.width-424 {
  width: 424px;
}

.height-424 {
  height: 424px;
}

.max-width-424 {
  max-width: 424px;
}

.max-height-424 {
  max-height: 424px;
}

.width-425 {
  width: 425px;
}

.height-425 {
  height: 425px;
}

.max-width-425 {
  max-width: 425px;
}

.max-height-425 {
  max-height: 425px;
}

.width-426 {
  width: 426px;
}

.height-426 {
  height: 426px;
}

.max-width-426 {
  max-width: 426px;
}

.max-height-426 {
  max-height: 426px;
}

.width-427 {
  width: 427px;
}

.height-427 {
  height: 427px;
}

.max-width-427 {
  max-width: 427px;
}

.max-height-427 {
  max-height: 427px;
}

.width-428 {
  width: 428px;
}

.height-428 {
  height: 428px;
}

.max-width-428 {
  max-width: 428px;
}

.max-height-428 {
  max-height: 428px;
}

.width-429 {
  width: 429px;
}

.height-429 {
  height: 429px;
}

.max-width-429 {
  max-width: 429px;
}

.max-height-429 {
  max-height: 429px;
}

.width-430 {
  width: 430px;
}

.height-430 {
  height: 430px;
}

.max-width-430 {
  max-width: 430px;
}

.max-height-430 {
  max-height: 430px;
}

.width-431 {
  width: 431px;
}

.height-431 {
  height: 431px;
}

.max-width-431 {
  max-width: 431px;
}

.max-height-431 {
  max-height: 431px;
}

.width-432 {
  width: 432px;
}

.height-432 {
  height: 432px;
}

.max-width-432 {
  max-width: 432px;
}

.max-height-432 {
  max-height: 432px;
}

.width-433 {
  width: 433px;
}

.height-433 {
  height: 433px;
}

.max-width-433 {
  max-width: 433px;
}

.max-height-433 {
  max-height: 433px;
}

.width-434 {
  width: 434px;
}

.height-434 {
  height: 434px;
}

.max-width-434 {
  max-width: 434px;
}

.max-height-434 {
  max-height: 434px;
}

.width-435 {
  width: 435px;
}

.height-435 {
  height: 435px;
}

.max-width-435 {
  max-width: 435px;
}

.max-height-435 {
  max-height: 435px;
}

.width-436 {
  width: 436px;
}

.height-436 {
  height: 436px;
}

.max-width-436 {
  max-width: 436px;
}

.max-height-436 {
  max-height: 436px;
}

.width-437 {
  width: 437px;
}

.height-437 {
  height: 437px;
}

.max-width-437 {
  max-width: 437px;
}

.max-height-437 {
  max-height: 437px;
}

.width-438 {
  width: 438px;
}

.height-438 {
  height: 438px;
}

.max-width-438 {
  max-width: 438px;
}

.max-height-438 {
  max-height: 438px;
}

.width-439 {
  width: 439px;
}

.height-439 {
  height: 439px;
}

.max-width-439 {
  max-width: 439px;
}

.max-height-439 {
  max-height: 439px;
}

.width-440 {
  width: 440px;
}

.height-440 {
  height: 440px;
}

.max-width-440 {
  max-width: 440px;
}

.max-height-440 {
  max-height: 440px;
}

.width-441 {
  width: 441px;
}

.height-441 {
  height: 441px;
}

.max-width-441 {
  max-width: 441px;
}

.max-height-441 {
  max-height: 441px;
}

.width-442 {
  width: 442px;
}

.height-442 {
  height: 442px;
}

.max-width-442 {
  max-width: 442px;
}

.max-height-442 {
  max-height: 442px;
}

.width-443 {
  width: 443px;
}

.height-443 {
  height: 443px;
}

.max-width-443 {
  max-width: 443px;
}

.max-height-443 {
  max-height: 443px;
}

.width-444 {
  width: 444px;
}

.height-444 {
  height: 444px;
}

.max-width-444 {
  max-width: 444px;
}

.max-height-444 {
  max-height: 444px;
}

.width-445 {
  width: 445px;
}

.height-445 {
  height: 445px;
}

.max-width-445 {
  max-width: 445px;
}

.max-height-445 {
  max-height: 445px;
}

.width-446 {
  width: 446px;
}

.height-446 {
  height: 446px;
}

.max-width-446 {
  max-width: 446px;
}

.max-height-446 {
  max-height: 446px;
}

.width-447 {
  width: 447px;
}

.height-447 {
  height: 447px;
}

.max-width-447 {
  max-width: 447px;
}

.max-height-447 {
  max-height: 447px;
}

.width-448 {
  width: 448px;
}

.height-448 {
  height: 448px;
}

.max-width-448 {
  max-width: 448px;
}

.max-height-448 {
  max-height: 448px;
}

.width-449 {
  width: 449px;
}

.height-449 {
  height: 449px;
}

.max-width-449 {
  max-width: 449px;
}

.max-height-449 {
  max-height: 449px;
}

.width-450 {
  width: 450px;
}

.height-450 {
  height: 450px;
}

.max-width-450 {
  max-width: 450px;
}

.max-height-450 {
  max-height: 450px;
}

.width-451 {
  width: 451px;
}

.height-451 {
  height: 451px;
}

.max-width-451 {
  max-width: 451px;
}

.max-height-451 {
  max-height: 451px;
}

.width-452 {
  width: 452px;
}

.height-452 {
  height: 452px;
}

.max-width-452 {
  max-width: 452px;
}

.max-height-452 {
  max-height: 452px;
}

.width-453 {
  width: 453px;
}

.height-453 {
  height: 453px;
}

.max-width-453 {
  max-width: 453px;
}

.max-height-453 {
  max-height: 453px;
}

.width-454 {
  width: 454px;
}

.height-454 {
  height: 454px;
}

.max-width-454 {
  max-width: 454px;
}

.max-height-454 {
  max-height: 454px;
}

.width-455 {
  width: 455px;
}

.height-455 {
  height: 455px;
}

.max-width-455 {
  max-width: 455px;
}

.max-height-455 {
  max-height: 455px;
}

.width-456 {
  width: 456px;
}

.height-456 {
  height: 456px;
}

.max-width-456 {
  max-width: 456px;
}

.max-height-456 {
  max-height: 456px;
}

.width-457 {
  width: 457px;
}

.height-457 {
  height: 457px;
}

.max-width-457 {
  max-width: 457px;
}

.max-height-457 {
  max-height: 457px;
}

.width-458 {
  width: 458px;
}

.height-458 {
  height: 458px;
}

.max-width-458 {
  max-width: 458px;
}

.max-height-458 {
  max-height: 458px;
}

.width-459 {
  width: 459px;
}

.height-459 {
  height: 459px;
}

.max-width-459 {
  max-width: 459px;
}

.max-height-459 {
  max-height: 459px;
}

.width-460 {
  width: 460px;
}

.height-460 {
  height: 460px;
}

.max-width-460 {
  max-width: 460px;
}

.max-height-460 {
  max-height: 460px;
}

.width-461 {
  width: 461px;
}

.height-461 {
  height: 461px;
}

.max-width-461 {
  max-width: 461px;
}

.max-height-461 {
  max-height: 461px;
}

.width-462 {
  width: 462px;
}

.height-462 {
  height: 462px;
}

.max-width-462 {
  max-width: 462px;
}

.max-height-462 {
  max-height: 462px;
}

.width-463 {
  width: 463px;
}

.height-463 {
  height: 463px;
}

.max-width-463 {
  max-width: 463px;
}

.max-height-463 {
  max-height: 463px;
}

.width-464 {
  width: 464px;
}

.height-464 {
  height: 464px;
}

.max-width-464 {
  max-width: 464px;
}

.max-height-464 {
  max-height: 464px;
}

.width-465 {
  width: 465px;
}

.height-465 {
  height: 465px;
}

.max-width-465 {
  max-width: 465px;
}

.max-height-465 {
  max-height: 465px;
}

.width-466 {
  width: 466px;
}

.height-466 {
  height: 466px;
}

.max-width-466 {
  max-width: 466px;
}

.max-height-466 {
  max-height: 466px;
}

.width-467 {
  width: 467px;
}

.height-467 {
  height: 467px;
}

.max-width-467 {
  max-width: 467px;
}

.max-height-467 {
  max-height: 467px;
}

.width-468 {
  width: 468px;
}

.height-468 {
  height: 468px;
}

.max-width-468 {
  max-width: 468px;
}

.max-height-468 {
  max-height: 468px;
}

.width-469 {
  width: 469px;
}

.height-469 {
  height: 469px;
}

.max-width-469 {
  max-width: 469px;
}

.max-height-469 {
  max-height: 469px;
}

.width-470 {
  width: 470px;
}

.height-470 {
  height: 470px;
}

.max-width-470 {
  max-width: 470px;
}

.max-height-470 {
  max-height: 470px;
}

.width-471 {
  width: 471px;
}

.height-471 {
  height: 471px;
}

.max-width-471 {
  max-width: 471px;
}

.max-height-471 {
  max-height: 471px;
}

.width-472 {
  width: 472px;
}

.height-472 {
  height: 472px;
}

.max-width-472 {
  max-width: 472px;
}

.max-height-472 {
  max-height: 472px;
}

.width-473 {
  width: 473px;
}

.height-473 {
  height: 473px;
}

.max-width-473 {
  max-width: 473px;
}

.max-height-473 {
  max-height: 473px;
}

.width-474 {
  width: 474px;
}

.height-474 {
  height: 474px;
}

.max-width-474 {
  max-width: 474px;
}

.max-height-474 {
  max-height: 474px;
}

.width-475 {
  width: 475px;
}

.height-475 {
  height: 475px;
}

.max-width-475 {
  max-width: 475px;
}

.max-height-475 {
  max-height: 475px;
}

.width-476 {
  width: 476px;
}

.height-476 {
  height: 476px;
}

.max-width-476 {
  max-width: 476px;
}

.max-height-476 {
  max-height: 476px;
}

.width-477 {
  width: 477px;
}

.height-477 {
  height: 477px;
}

.max-width-477 {
  max-width: 477px;
}

.max-height-477 {
  max-height: 477px;
}

.width-478 {
  width: 478px;
}

.height-478 {
  height: 478px;
}

.max-width-478 {
  max-width: 478px;
}

.max-height-478 {
  max-height: 478px;
}

.width-479 {
  width: 479px;
}

.height-479 {
  height: 479px;
}

.max-width-479 {
  max-width: 479px;
}

.max-height-479 {
  max-height: 479px;
}

.width-480 {
  width: 480px;
}

.height-480 {
  height: 480px;
}

.max-width-480 {
  max-width: 480px;
}

.max-height-480 {
  max-height: 480px;
}

.width-481 {
  width: 481px;
}

.height-481 {
  height: 481px;
}

.max-width-481 {
  max-width: 481px;
}

.max-height-481 {
  max-height: 481px;
}

.width-482 {
  width: 482px;
}

.height-482 {
  height: 482px;
}

.max-width-482 {
  max-width: 482px;
}

.max-height-482 {
  max-height: 482px;
}

.width-483 {
  width: 483px;
}

.height-483 {
  height: 483px;
}

.max-width-483 {
  max-width: 483px;
}

.max-height-483 {
  max-height: 483px;
}

.width-484 {
  width: 484px;
}

.height-484 {
  height: 484px;
}

.max-width-484 {
  max-width: 484px;
}

.max-height-484 {
  max-height: 484px;
}

.width-485 {
  width: 485px;
}

.height-485 {
  height: 485px;
}

.max-width-485 {
  max-width: 485px;
}

.max-height-485 {
  max-height: 485px;
}

.width-486 {
  width: 486px;
}

.height-486 {
  height: 486px;
}

.max-width-486 {
  max-width: 486px;
}

.max-height-486 {
  max-height: 486px;
}

.width-487 {
  width: 487px;
}

.height-487 {
  height: 487px;
}

.max-width-487 {
  max-width: 487px;
}

.max-height-487 {
  max-height: 487px;
}

.width-488 {
  width: 488px;
}

.height-488 {
  height: 488px;
}

.max-width-488 {
  max-width: 488px;
}

.max-height-488 {
  max-height: 488px;
}

.width-489 {
  width: 489px;
}

.height-489 {
  height: 489px;
}

.max-width-489 {
  max-width: 489px;
}

.max-height-489 {
  max-height: 489px;
}

.width-490 {
  width: 490px;
}

.height-490 {
  height: 490px;
}

.max-width-490 {
  max-width: 490px;
}

.max-height-490 {
  max-height: 490px;
}

.width-491 {
  width: 491px;
}

.height-491 {
  height: 491px;
}

.max-width-491 {
  max-width: 491px;
}

.max-height-491 {
  max-height: 491px;
}

.width-492 {
  width: 492px;
}

.height-492 {
  height: 492px;
}

.max-width-492 {
  max-width: 492px;
}

.max-height-492 {
  max-height: 492px;
}

.width-493 {
  width: 493px;
}

.height-493 {
  height: 493px;
}

.max-width-493 {
  max-width: 493px;
}

.max-height-493 {
  max-height: 493px;
}

.width-494 {
  width: 494px;
}

.height-494 {
  height: 494px;
}

.max-width-494 {
  max-width: 494px;
}

.max-height-494 {
  max-height: 494px;
}

.width-495 {
  width: 495px;
}

.height-495 {
  height: 495px;
}

.max-width-495 {
  max-width: 495px;
}

.max-height-495 {
  max-height: 495px;
}

.width-496 {
  width: 496px;
}

.height-496 {
  height: 496px;
}

.max-width-496 {
  max-width: 496px;
}

.max-height-496 {
  max-height: 496px;
}

.width-497 {
  width: 497px;
}

.height-497 {
  height: 497px;
}

.max-width-497 {
  max-width: 497px;
}

.max-height-497 {
  max-height: 497px;
}

.width-498 {
  width: 498px;
}

.height-498 {
  height: 498px;
}

.max-width-498 {
  max-width: 498px;
}

.max-height-498 {
  max-height: 498px;
}

.width-499 {
  width: 499px;
}

.height-499 {
  height: 499px;
}

.max-width-499 {
  max-width: 499px;
}

.max-height-499 {
  max-height: 499px;
}

.width-500 {
  width: 500px;
}

.height-500 {
  height: 500px;
}

.max-width-500 {
  max-width: 500px;
}

.max-height-500 {
  max-height: 500px;
}

.margin-1 {
  margin: 1px;
}

.margin-top-1 {
  margin-top: 1px;
}

.margin-bottom-1 {
  margin-bottom: 1px;
}

.margin-left-1 {
  margin-left: 1px;
}

.margin-right-1 {
  margin-right: 1px;
}

.padding-1 {
  margin: 1px;
}

.padding-top-1 {
  padding-top: 1px;
}

.padding-bottom-1 {
  padding-bottom: 1px;
}

.padding-left-1 {
  padding-left: 1px;
}

.padding-right-1 {
  padding-right: 1px;
}

.margin-2 {
  margin: 2px;
}

.margin-top-2 {
  margin-top: 2px;
}

.margin-bottom-2 {
  margin-bottom: 2px;
}

.margin-left-2 {
  margin-left: 2px;
}

.margin-right-2 {
  margin-right: 2px;
}

.padding-2 {
  margin: 2px;
}

.padding-top-2 {
  padding-top: 2px;
}

.padding-bottom-2 {
  padding-bottom: 2px;
}

.padding-left-2 {
  padding-left: 2px;
}

.padding-right-2 {
  padding-right: 2px;
}

.margin-3 {
  margin: 3px;
}

.margin-top-3 {
  margin-top: 3px;
}

.margin-bottom-3 {
  margin-bottom: 3px;
}

.margin-left-3 {
  margin-left: 3px;
}

.margin-right-3 {
  margin-right: 3px;
}

.padding-3 {
  margin: 3px;
}

.padding-top-3 {
  padding-top: 3px;
}

.padding-bottom-3 {
  padding-bottom: 3px;
}

.padding-left-3 {
  padding-left: 3px;
}

.padding-right-3 {
  padding-right: 3px;
}

.margin-4 {
  margin: 4px;
}

.margin-top-4 {
  margin-top: 4px;
}

.margin-bottom-4 {
  margin-bottom: 4px;
}

.margin-left-4 {
  margin-left: 4px;
}

.margin-right-4 {
  margin-right: 4px;
}

.padding-4 {
  margin: 4px;
}

.padding-top-4 {
  padding-top: 4px;
}

.padding-bottom-4 {
  padding-bottom: 4px;
}

.padding-left-4 {
  padding-left: 4px;
}

.padding-right-4 {
  padding-right: 4px;
}

.margin-5 {
  margin: 5px;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-left-5 {
  margin-left: 5px;
}

.margin-right-5 {
  margin-right: 5px;
}

.padding-5 {
  margin: 5px;
}

.padding-top-5 {
  padding-top: 5px;
}

.padding-bottom-5 {
  padding-bottom: 5px;
}

.padding-left-5 {
  padding-left: 5px;
}

.padding-right-5 {
  padding-right: 5px;
}

.margin-6 {
  margin: 6px;
}

.margin-top-6 {
  margin-top: 6px;
}

.margin-bottom-6 {
  margin-bottom: 6px;
}

.margin-left-6 {
  margin-left: 6px;
}

.margin-right-6 {
  margin-right: 6px;
}

.padding-6 {
  margin: 6px;
}

.padding-top-6 {
  padding-top: 6px;
}

.padding-bottom-6 {
  padding-bottom: 6px;
}

.padding-left-6 {
  padding-left: 6px;
}

.padding-right-6 {
  padding-right: 6px;
}

.margin-7 {
  margin: 7px;
}

.margin-top-7 {
  margin-top: 7px;
}

.margin-bottom-7 {
  margin-bottom: 7px;
}

.margin-left-7 {
  margin-left: 7px;
}

.margin-right-7 {
  margin-right: 7px;
}

.padding-7 {
  margin: 7px;
}

.padding-top-7 {
  padding-top: 7px;
}

.padding-bottom-7 {
  padding-bottom: 7px;
}

.padding-left-7 {
  padding-left: 7px;
}

.padding-right-7 {
  padding-right: 7px;
}

.margin-8 {
  margin: 8px;
}

.margin-top-8 {
  margin-top: 8px;
}

.margin-bottom-8 {
  margin-bottom: 8px;
}

.margin-left-8 {
  margin-left: 8px;
}

.margin-right-8 {
  margin-right: 8px;
}

.padding-8 {
  margin: 8px;
}

.padding-top-8 {
  padding-top: 8px;
}

.padding-bottom-8 {
  padding-bottom: 8px;
}

.padding-left-8 {
  padding-left: 8px;
}

.padding-right-8 {
  padding-right: 8px;
}

.margin-9 {
  margin: 9px;
}

.margin-top-9 {
  margin-top: 9px;
}

.margin-bottom-9 {
  margin-bottom: 9px;
}

.margin-left-9 {
  margin-left: 9px;
}

.margin-right-9 {
  margin-right: 9px;
}

.padding-9 {
  margin: 9px;
}

.padding-top-9 {
  padding-top: 9px;
}

.padding-bottom-9 {
  padding-bottom: 9px;
}

.padding-left-9 {
  padding-left: 9px;
}

.padding-right-9 {
  padding-right: 9px;
}

.margin-10 {
  margin: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-right-10 {
  margin-right: 10px;
}

.padding-10 {
  margin: 10px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-right-10 {
  padding-right: 10px;
}

.margin-11 {
  margin: 11px;
}

.margin-top-11 {
  margin-top: 11px;
}

.margin-bottom-11 {
  margin-bottom: 11px;
}

.margin-left-11 {
  margin-left: 11px;
}

.margin-right-11 {
  margin-right: 11px;
}

.padding-11 {
  margin: 11px;
}

.padding-top-11 {
  padding-top: 11px;
}

.padding-bottom-11 {
  padding-bottom: 11px;
}

.padding-left-11 {
  padding-left: 11px;
}

.padding-right-11 {
  padding-right: 11px;
}

.margin-12 {
  margin: 12px;
}

.margin-top-12 {
  margin-top: 12px;
}

.margin-bottom-12 {
  margin-bottom: 12px;
}

.margin-left-12 {
  margin-left: 12px;
}

.margin-right-12 {
  margin-right: 12px;
}

.padding-12 {
  margin: 12px;
}

.padding-top-12 {
  padding-top: 12px;
}

.padding-bottom-12 {
  padding-bottom: 12px;
}

.padding-left-12 {
  padding-left: 12px;
}

.padding-right-12 {
  padding-right: 12px;
}

.margin-13 {
  margin: 13px;
}

.margin-top-13 {
  margin-top: 13px;
}

.margin-bottom-13 {
  margin-bottom: 13px;
}

.margin-left-13 {
  margin-left: 13px;
}

.margin-right-13 {
  margin-right: 13px;
}

.padding-13 {
  margin: 13px;
}

.padding-top-13 {
  padding-top: 13px;
}

.padding-bottom-13 {
  padding-bottom: 13px;
}

.padding-left-13 {
  padding-left: 13px;
}

.padding-right-13 {
  padding-right: 13px;
}

.margin-14 {
  margin: 14px;
}

.margin-top-14 {
  margin-top: 14px;
}

.margin-bottom-14 {
  margin-bottom: 14px;
}

.margin-left-14 {
  margin-left: 14px;
}

.margin-right-14 {
  margin-right: 14px;
}

.padding-14 {
  margin: 14px;
}

.padding-top-14 {
  padding-top: 14px;
}

.padding-bottom-14 {
  padding-bottom: 14px;
}

.padding-left-14 {
  padding-left: 14px;
}

.padding-right-14 {
  padding-right: 14px;
}

.margin-15 {
  margin: 15px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-right-15 {
  margin-right: 15px;
}

.padding-15 {
  margin: 15px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-right-15 {
  padding-right: 15px;
}

.margin-16 {
  margin: 16px;
}

.margin-top-16 {
  margin-top: 16px;
}

.margin-bottom-16 {
  margin-bottom: 16px;
}

.margin-left-16 {
  margin-left: 16px;
}

.margin-right-16 {
  margin-right: 16px;
}

.padding-16 {
  margin: 16px;
}

.padding-top-16 {
  padding-top: 16px;
}

.padding-bottom-16 {
  padding-bottom: 16px;
}

.padding-left-16 {
  padding-left: 16px;
}

.padding-right-16 {
  padding-right: 16px;
}

.margin-17 {
  margin: 17px;
}

.margin-top-17 {
  margin-top: 17px;
}

.margin-bottom-17 {
  margin-bottom: 17px;
}

.margin-left-17 {
  margin-left: 17px;
}

.margin-right-17 {
  margin-right: 17px;
}

.padding-17 {
  margin: 17px;
}

.padding-top-17 {
  padding-top: 17px;
}

.padding-bottom-17 {
  padding-bottom: 17px;
}

.padding-left-17 {
  padding-left: 17px;
}

.padding-right-17 {
  padding-right: 17px;
}

.margin-18 {
  margin: 18px;
}

.margin-top-18 {
  margin-top: 18px;
}

.margin-bottom-18 {
  margin-bottom: 18px;
}

.margin-left-18 {
  margin-left: 18px;
}

.margin-right-18 {
  margin-right: 18px;
}

.padding-18 {
  margin: 18px;
}

.padding-top-18 {
  padding-top: 18px;
}

.padding-bottom-18 {
  padding-bottom: 18px;
}

.padding-left-18 {
  padding-left: 18px;
}

.padding-right-18 {
  padding-right: 18px;
}

.margin-19 {
  margin: 19px;
}

.margin-top-19 {
  margin-top: 19px;
}

.margin-bottom-19 {
  margin-bottom: 19px;
}

.margin-left-19 {
  margin-left: 19px;
}

.margin-right-19 {
  margin-right: 19px;
}

.padding-19 {
  margin: 19px;
}

.padding-top-19 {
  padding-top: 19px;
}

.padding-bottom-19 {
  padding-bottom: 19px;
}

.padding-left-19 {
  padding-left: 19px;
}

.padding-right-19 {
  padding-right: 19px;
}

.margin-20 {
  margin: 20px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-right-20 {
  margin-right: 20px;
}

.padding-20 {
  margin: 20px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-left-20 {
  padding-left: 20px;
}

.padding-right-20 {
  padding-right: 20px;
}

.margin-21 {
  margin: 21px;
}

.margin-top-21 {
  margin-top: 21px;
}

.margin-bottom-21 {
  margin-bottom: 21px;
}

.margin-left-21 {
  margin-left: 21px;
}

.margin-right-21 {
  margin-right: 21px;
}

.padding-21 {
  margin: 21px;
}

.padding-top-21 {
  padding-top: 21px;
}

.padding-bottom-21 {
  padding-bottom: 21px;
}

.padding-left-21 {
  padding-left: 21px;
}

.padding-right-21 {
  padding-right: 21px;
}

.margin-22 {
  margin: 22px;
}

.margin-top-22 {
  margin-top: 22px;
}

.margin-bottom-22 {
  margin-bottom: 22px;
}

.margin-left-22 {
  margin-left: 22px;
}

.margin-right-22 {
  margin-right: 22px;
}

.padding-22 {
  margin: 22px;
}

.padding-top-22 {
  padding-top: 22px;
}

.padding-bottom-22 {
  padding-bottom: 22px;
}

.padding-left-22 {
  padding-left: 22px;
}

.padding-right-22 {
  padding-right: 22px;
}

.margin-23 {
  margin: 23px;
}

.margin-top-23 {
  margin-top: 23px;
}

.margin-bottom-23 {
  margin-bottom: 23px;
}

.margin-left-23 {
  margin-left: 23px;
}

.margin-right-23 {
  margin-right: 23px;
}

.padding-23 {
  margin: 23px;
}

.padding-top-23 {
  padding-top: 23px;
}

.padding-bottom-23 {
  padding-bottom: 23px;
}

.padding-left-23 {
  padding-left: 23px;
}

.padding-right-23 {
  padding-right: 23px;
}

.margin-24 {
  margin: 24px;
}

.margin-top-24 {
  margin-top: 24px;
}

.margin-bottom-24 {
  margin-bottom: 24px;
}

.margin-left-24 {
  margin-left: 24px;
}

.margin-right-24 {
  margin-right: 24px;
}

.padding-24 {
  margin: 24px;
}

.padding-top-24 {
  padding-top: 24px;
}

.padding-bottom-24 {
  padding-bottom: 24px;
}

.padding-left-24 {
  padding-left: 24px;
}

.padding-right-24 {
  padding-right: 24px;
}

.margin-25 {
  margin: 25px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-right-25 {
  margin-right: 25px;
}

.padding-25 {
  margin: 25px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-left-25 {
  padding-left: 25px;
}

.padding-right-25 {
  padding-right: 25px;
}

.margin-26 {
  margin: 26px;
}

.margin-top-26 {
  margin-top: 26px;
}

.margin-bottom-26 {
  margin-bottom: 26px;
}

.margin-left-26 {
  margin-left: 26px;
}

.margin-right-26 {
  margin-right: 26px;
}

.padding-26 {
  margin: 26px;
}

.padding-top-26 {
  padding-top: 26px;
}

.padding-bottom-26 {
  padding-bottom: 26px;
}

.padding-left-26 {
  padding-left: 26px;
}

.padding-right-26 {
  padding-right: 26px;
}

.margin-27 {
  margin: 27px;
}

.margin-top-27 {
  margin-top: 27px;
}

.margin-bottom-27 {
  margin-bottom: 27px;
}

.margin-left-27 {
  margin-left: 27px;
}

.margin-right-27 {
  margin-right: 27px;
}

.padding-27 {
  margin: 27px;
}

.padding-top-27 {
  padding-top: 27px;
}

.padding-bottom-27 {
  padding-bottom: 27px;
}

.padding-left-27 {
  padding-left: 27px;
}

.padding-right-27 {
  padding-right: 27px;
}

.margin-28 {
  margin: 28px;
}

.margin-top-28 {
  margin-top: 28px;
}

.margin-bottom-28 {
  margin-bottom: 28px;
}

.margin-left-28 {
  margin-left: 28px;
}

.margin-right-28 {
  margin-right: 28px;
}

.padding-28 {
  margin: 28px;
}

.padding-top-28 {
  padding-top: 28px;
}

.padding-bottom-28 {
  padding-bottom: 28px;
}

.padding-left-28 {
  padding-left: 28px;
}

.padding-right-28 {
  padding-right: 28px;
}

.margin-29 {
  margin: 29px;
}

.margin-top-29 {
  margin-top: 29px;
}

.margin-bottom-29 {
  margin-bottom: 29px;
}

.margin-left-29 {
  margin-left: 29px;
}

.margin-right-29 {
  margin-right: 29px;
}

.padding-29 {
  margin: 29px;
}

.padding-top-29 {
  padding-top: 29px;
}

.padding-bottom-29 {
  padding-bottom: 29px;
}

.padding-left-29 {
  padding-left: 29px;
}

.padding-right-29 {
  padding-right: 29px;
}

.margin-30 {
  margin: 30px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-left-30 {
  margin-left: 30px;
}

.margin-right-30 {
  margin-right: 30px;
}

.padding-30 {
  margin: 30px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-left-30 {
  padding-left: 30px;
}

.padding-right-30 {
  padding-right: 30px;
}

.margin-31 {
  margin: 31px;
}

.margin-top-31 {
  margin-top: 31px;
}

.margin-bottom-31 {
  margin-bottom: 31px;
}

.margin-left-31 {
  margin-left: 31px;
}

.margin-right-31 {
  margin-right: 31px;
}

.padding-31 {
  margin: 31px;
}

.padding-top-31 {
  padding-top: 31px;
}

.padding-bottom-31 {
  padding-bottom: 31px;
}

.padding-left-31 {
  padding-left: 31px;
}

.padding-right-31 {
  padding-right: 31px;
}

.margin-32 {
  margin: 32px;
}

.margin-top-32 {
  margin-top: 32px;
}

.margin-bottom-32 {
  margin-bottom: 32px;
}

.margin-left-32 {
  margin-left: 32px;
}

.margin-right-32 {
  margin-right: 32px;
}

.padding-32 {
  margin: 32px;
}

.padding-top-32 {
  padding-top: 32px;
}

.padding-bottom-32 {
  padding-bottom: 32px;
}

.padding-left-32 {
  padding-left: 32px;
}

.padding-right-32 {
  padding-right: 32px;
}

.margin-33 {
  margin: 33px;
}

.margin-top-33 {
  margin-top: 33px;
}

.margin-bottom-33 {
  margin-bottom: 33px;
}

.margin-left-33 {
  margin-left: 33px;
}

.margin-right-33 {
  margin-right: 33px;
}

.padding-33 {
  margin: 33px;
}

.padding-top-33 {
  padding-top: 33px;
}

.padding-bottom-33 {
  padding-bottom: 33px;
}

.padding-left-33 {
  padding-left: 33px;
}

.padding-right-33 {
  padding-right: 33px;
}

.margin-34 {
  margin: 34px;
}

.margin-top-34 {
  margin-top: 34px;
}

.margin-bottom-34 {
  margin-bottom: 34px;
}

.margin-left-34 {
  margin-left: 34px;
}

.margin-right-34 {
  margin-right: 34px;
}

.padding-34 {
  margin: 34px;
}

.padding-top-34 {
  padding-top: 34px;
}

.padding-bottom-34 {
  padding-bottom: 34px;
}

.padding-left-34 {
  padding-left: 34px;
}

.padding-right-34 {
  padding-right: 34px;
}

.margin-35 {
  margin: 35px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-left-35 {
  margin-left: 35px;
}

.margin-right-35 {
  margin-right: 35px;
}

.padding-35 {
  margin: 35px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-left-35 {
  padding-left: 35px;
}

.padding-right-35 {
  padding-right: 35px;
}

.margin-36 {
  margin: 36px;
}

.margin-top-36 {
  margin-top: 36px;
}

.margin-bottom-36 {
  margin-bottom: 36px;
}

.margin-left-36 {
  margin-left: 36px;
}

.margin-right-36 {
  margin-right: 36px;
}

.padding-36 {
  margin: 36px;
}

.padding-top-36 {
  padding-top: 36px;
}

.padding-bottom-36 {
  padding-bottom: 36px;
}

.padding-left-36 {
  padding-left: 36px;
}

.padding-right-36 {
  padding-right: 36px;
}

.margin-37 {
  margin: 37px;
}

.margin-top-37 {
  margin-top: 37px;
}

.margin-bottom-37 {
  margin-bottom: 37px;
}

.margin-left-37 {
  margin-left: 37px;
}

.margin-right-37 {
  margin-right: 37px;
}

.padding-37 {
  margin: 37px;
}

.padding-top-37 {
  padding-top: 37px;
}

.padding-bottom-37 {
  padding-bottom: 37px;
}

.padding-left-37 {
  padding-left: 37px;
}

.padding-right-37 {
  padding-right: 37px;
}

.margin-38 {
  margin: 38px;
}

.margin-top-38 {
  margin-top: 38px;
}

.margin-bottom-38 {
  margin-bottom: 38px;
}

.margin-left-38 {
  margin-left: 38px;
}

.margin-right-38 {
  margin-right: 38px;
}

.padding-38 {
  margin: 38px;
}

.padding-top-38 {
  padding-top: 38px;
}

.padding-bottom-38 {
  padding-bottom: 38px;
}

.padding-left-38 {
  padding-left: 38px;
}

.padding-right-38 {
  padding-right: 38px;
}

.margin-39 {
  margin: 39px;
}

.margin-top-39 {
  margin-top: 39px;
}

.margin-bottom-39 {
  margin-bottom: 39px;
}

.margin-left-39 {
  margin-left: 39px;
}

.margin-right-39 {
  margin-right: 39px;
}

.padding-39 {
  margin: 39px;
}

.padding-top-39 {
  padding-top: 39px;
}

.padding-bottom-39 {
  padding-bottom: 39px;
}

.padding-left-39 {
  padding-left: 39px;
}

.padding-right-39 {
  padding-right: 39px;
}

.margin-40 {
  margin: 40px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-left-40 {
  margin-left: 40px;
}

.margin-right-40 {
  margin-right: 40px;
}

.padding-40 {
  margin: 40px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-left-40 {
  padding-left: 40px;
}

.padding-right-40 {
  padding-right: 40px;
}

.margin-41 {
  margin: 41px;
}

.margin-top-41 {
  margin-top: 41px;
}

.margin-bottom-41 {
  margin-bottom: 41px;
}

.margin-left-41 {
  margin-left: 41px;
}

.margin-right-41 {
  margin-right: 41px;
}

.padding-41 {
  margin: 41px;
}

.padding-top-41 {
  padding-top: 41px;
}

.padding-bottom-41 {
  padding-bottom: 41px;
}

.padding-left-41 {
  padding-left: 41px;
}

.padding-right-41 {
  padding-right: 41px;
}

.margin-42 {
  margin: 42px;
}

.margin-top-42 {
  margin-top: 42px;
}

.margin-bottom-42 {
  margin-bottom: 42px;
}

.margin-left-42 {
  margin-left: 42px;
}

.margin-right-42 {
  margin-right: 42px;
}

.padding-42 {
  margin: 42px;
}

.padding-top-42 {
  padding-top: 42px;
}

.padding-bottom-42 {
  padding-bottom: 42px;
}

.padding-left-42 {
  padding-left: 42px;
}

.padding-right-42 {
  padding-right: 42px;
}

.margin-43 {
  margin: 43px;
}

.margin-top-43 {
  margin-top: 43px;
}

.margin-bottom-43 {
  margin-bottom: 43px;
}

.margin-left-43 {
  margin-left: 43px;
}

.margin-right-43 {
  margin-right: 43px;
}

.padding-43 {
  margin: 43px;
}

.padding-top-43 {
  padding-top: 43px;
}

.padding-bottom-43 {
  padding-bottom: 43px;
}

.padding-left-43 {
  padding-left: 43px;
}

.padding-right-43 {
  padding-right: 43px;
}

.margin-44 {
  margin: 44px;
}

.margin-top-44 {
  margin-top: 44px;
}

.margin-bottom-44 {
  margin-bottom: 44px;
}

.margin-left-44 {
  margin-left: 44px;
}

.margin-right-44 {
  margin-right: 44px;
}

.padding-44 {
  margin: 44px;
}

.padding-top-44 {
  padding-top: 44px;
}

.padding-bottom-44 {
  padding-bottom: 44px;
}

.padding-left-44 {
  padding-left: 44px;
}

.padding-right-44 {
  padding-right: 44px;
}

.margin-45 {
  margin: 45px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-left-45 {
  margin-left: 45px;
}

.margin-right-45 {
  margin-right: 45px;
}

.padding-45 {
  margin: 45px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-left-45 {
  padding-left: 45px;
}

.padding-right-45 {
  padding-right: 45px;
}

.margin-46 {
  margin: 46px;
}

.margin-top-46 {
  margin-top: 46px;
}

.margin-bottom-46 {
  margin-bottom: 46px;
}

.margin-left-46 {
  margin-left: 46px;
}

.margin-right-46 {
  margin-right: 46px;
}

.padding-46 {
  margin: 46px;
}

.padding-top-46 {
  padding-top: 46px;
}

.padding-bottom-46 {
  padding-bottom: 46px;
}

.padding-left-46 {
  padding-left: 46px;
}

.padding-right-46 {
  padding-right: 46px;
}

.margin-47 {
  margin: 47px;
}

.margin-top-47 {
  margin-top: 47px;
}

.margin-bottom-47 {
  margin-bottom: 47px;
}

.margin-left-47 {
  margin-left: 47px;
}

.margin-right-47 {
  margin-right: 47px;
}

.padding-47 {
  margin: 47px;
}

.padding-top-47 {
  padding-top: 47px;
}

.padding-bottom-47 {
  padding-bottom: 47px;
}

.padding-left-47 {
  padding-left: 47px;
}

.padding-right-47 {
  padding-right: 47px;
}

.margin-48 {
  margin: 48px;
}

.margin-top-48 {
  margin-top: 48px;
}

.margin-bottom-48 {
  margin-bottom: 48px;
}

.margin-left-48 {
  margin-left: 48px;
}

.margin-right-48 {
  margin-right: 48px;
}

.padding-48 {
  margin: 48px;
}

.padding-top-48 {
  padding-top: 48px;
}

.padding-bottom-48 {
  padding-bottom: 48px;
}

.padding-left-48 {
  padding-left: 48px;
}

.padding-right-48 {
  padding-right: 48px;
}

.margin-49 {
  margin: 49px;
}

.margin-top-49 {
  margin-top: 49px;
}

.margin-bottom-49 {
  margin-bottom: 49px;
}

.margin-left-49 {
  margin-left: 49px;
}

.margin-right-49 {
  margin-right: 49px;
}

.padding-49 {
  margin: 49px;
}

.padding-top-49 {
  padding-top: 49px;
}

.padding-bottom-49 {
  padding-bottom: 49px;
}

.padding-left-49 {
  padding-left: 49px;
}

.padding-right-49 {
  padding-right: 49px;
}

.margin-50 {
  margin: 50px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-right-50 {
  margin-right: 50px;
}

.padding-50 {
  margin: 50px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-left-50 {
  padding-left: 50px;
}

.padding-right-50 {
  padding-right: 50px;
}

.margin-51 {
  margin: 51px;
}

.margin-top-51 {
  margin-top: 51px;
}

.margin-bottom-51 {
  margin-bottom: 51px;
}

.margin-left-51 {
  margin-left: 51px;
}

.margin-right-51 {
  margin-right: 51px;
}

.padding-51 {
  margin: 51px;
}

.padding-top-51 {
  padding-top: 51px;
}

.padding-bottom-51 {
  padding-bottom: 51px;
}

.padding-left-51 {
  padding-left: 51px;
}

.padding-right-51 {
  padding-right: 51px;
}

.margin-52 {
  margin: 52px;
}

.margin-top-52 {
  margin-top: 52px;
}

.margin-bottom-52 {
  margin-bottom: 52px;
}

.margin-left-52 {
  margin-left: 52px;
}

.margin-right-52 {
  margin-right: 52px;
}

.padding-52 {
  margin: 52px;
}

.padding-top-52 {
  padding-top: 52px;
}

.padding-bottom-52 {
  padding-bottom: 52px;
}

.padding-left-52 {
  padding-left: 52px;
}

.padding-right-52 {
  padding-right: 52px;
}

.margin-53 {
  margin: 53px;
}

.margin-top-53 {
  margin-top: 53px;
}

.margin-bottom-53 {
  margin-bottom: 53px;
}

.margin-left-53 {
  margin-left: 53px;
}

.margin-right-53 {
  margin-right: 53px;
}

.padding-53 {
  margin: 53px;
}

.padding-top-53 {
  padding-top: 53px;
}

.padding-bottom-53 {
  padding-bottom: 53px;
}

.padding-left-53 {
  padding-left: 53px;
}

.padding-right-53 {
  padding-right: 53px;
}

.margin-54 {
  margin: 54px;
}

.margin-top-54 {
  margin-top: 54px;
}

.margin-bottom-54 {
  margin-bottom: 54px;
}

.margin-left-54 {
  margin-left: 54px;
}

.margin-right-54 {
  margin-right: 54px;
}

.padding-54 {
  margin: 54px;
}

.padding-top-54 {
  padding-top: 54px;
}

.padding-bottom-54 {
  padding-bottom: 54px;
}

.padding-left-54 {
  padding-left: 54px;
}

.padding-right-54 {
  padding-right: 54px;
}

.margin-55 {
  margin: 55px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-left-55 {
  margin-left: 55px;
}

.margin-right-55 {
  margin-right: 55px;
}

.padding-55 {
  margin: 55px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-left-55 {
  padding-left: 55px;
}

.padding-right-55 {
  padding-right: 55px;
}

.margin-56 {
  margin: 56px;
}

.margin-top-56 {
  margin-top: 56px;
}

.margin-bottom-56 {
  margin-bottom: 56px;
}

.margin-left-56 {
  margin-left: 56px;
}

.margin-right-56 {
  margin-right: 56px;
}

.padding-56 {
  margin: 56px;
}

.padding-top-56 {
  padding-top: 56px;
}

.padding-bottom-56 {
  padding-bottom: 56px;
}

.padding-left-56 {
  padding-left: 56px;
}

.padding-right-56 {
  padding-right: 56px;
}

.margin-57 {
  margin: 57px;
}

.margin-top-57 {
  margin-top: 57px;
}

.margin-bottom-57 {
  margin-bottom: 57px;
}

.margin-left-57 {
  margin-left: 57px;
}

.margin-right-57 {
  margin-right: 57px;
}

.padding-57 {
  margin: 57px;
}

.padding-top-57 {
  padding-top: 57px;
}

.padding-bottom-57 {
  padding-bottom: 57px;
}

.padding-left-57 {
  padding-left: 57px;
}

.padding-right-57 {
  padding-right: 57px;
}

.margin-58 {
  margin: 58px;
}

.margin-top-58 {
  margin-top: 58px;
}

.margin-bottom-58 {
  margin-bottom: 58px;
}

.margin-left-58 {
  margin-left: 58px;
}

.margin-right-58 {
  margin-right: 58px;
}

.padding-58 {
  margin: 58px;
}

.padding-top-58 {
  padding-top: 58px;
}

.padding-bottom-58 {
  padding-bottom: 58px;
}

.padding-left-58 {
  padding-left: 58px;
}

.padding-right-58 {
  padding-right: 58px;
}

.margin-59 {
  margin: 59px;
}

.margin-top-59 {
  margin-top: 59px;
}

.margin-bottom-59 {
  margin-bottom: 59px;
}

.margin-left-59 {
  margin-left: 59px;
}

.margin-right-59 {
  margin-right: 59px;
}

.padding-59 {
  margin: 59px;
}

.padding-top-59 {
  padding-top: 59px;
}

.padding-bottom-59 {
  padding-bottom: 59px;
}

.padding-left-59 {
  padding-left: 59px;
}

.padding-right-59 {
  padding-right: 59px;
}

.margin-60 {
  margin: 60px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-left-60 {
  margin-left: 60px;
}

.margin-right-60 {
  margin-right: 60px;
}

.padding-60 {
  margin: 60px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-left-60 {
  padding-left: 60px;
}

.padding-right-60 {
  padding-right: 60px;
}

.margin-61 {
  margin: 61px;
}

.margin-top-61 {
  margin-top: 61px;
}

.margin-bottom-61 {
  margin-bottom: 61px;
}

.margin-left-61 {
  margin-left: 61px;
}

.margin-right-61 {
  margin-right: 61px;
}

.padding-61 {
  margin: 61px;
}

.padding-top-61 {
  padding-top: 61px;
}

.padding-bottom-61 {
  padding-bottom: 61px;
}

.padding-left-61 {
  padding-left: 61px;
}

.padding-right-61 {
  padding-right: 61px;
}

.margin-62 {
  margin: 62px;
}

.margin-top-62 {
  margin-top: 62px;
}

.margin-bottom-62 {
  margin-bottom: 62px;
}

.margin-left-62 {
  margin-left: 62px;
}

.margin-right-62 {
  margin-right: 62px;
}

.padding-62 {
  margin: 62px;
}

.padding-top-62 {
  padding-top: 62px;
}

.padding-bottom-62 {
  padding-bottom: 62px;
}

.padding-left-62 {
  padding-left: 62px;
}

.padding-right-62 {
  padding-right: 62px;
}

.margin-63 {
  margin: 63px;
}

.margin-top-63 {
  margin-top: 63px;
}

.margin-bottom-63 {
  margin-bottom: 63px;
}

.margin-left-63 {
  margin-left: 63px;
}

.margin-right-63 {
  margin-right: 63px;
}

.padding-63 {
  margin: 63px;
}

.padding-top-63 {
  padding-top: 63px;
}

.padding-bottom-63 {
  padding-bottom: 63px;
}

.padding-left-63 {
  padding-left: 63px;
}

.padding-right-63 {
  padding-right: 63px;
}

.margin-64 {
  margin: 64px;
}

.margin-top-64 {
  margin-top: 64px;
}

.margin-bottom-64 {
  margin-bottom: 64px;
}

.margin-left-64 {
  margin-left: 64px;
}

.margin-right-64 {
  margin-right: 64px;
}

.padding-64 {
  margin: 64px;
}

.padding-top-64 {
  padding-top: 64px;
}

.padding-bottom-64 {
  padding-bottom: 64px;
}

.padding-left-64 {
  padding-left: 64px;
}

.padding-right-64 {
  padding-right: 64px;
}

.margin-65 {
  margin: 65px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-bottom-65 {
  margin-bottom: 65px;
}

.margin-left-65 {
  margin-left: 65px;
}

.margin-right-65 {
  margin-right: 65px;
}

.padding-65 {
  margin: 65px;
}

.padding-top-65 {
  padding-top: 65px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

.padding-left-65 {
  padding-left: 65px;
}

.padding-right-65 {
  padding-right: 65px;
}

.margin-66 {
  margin: 66px;
}

.margin-top-66 {
  margin-top: 66px;
}

.margin-bottom-66 {
  margin-bottom: 66px;
}

.margin-left-66 {
  margin-left: 66px;
}

.margin-right-66 {
  margin-right: 66px;
}

.padding-66 {
  margin: 66px;
}

.padding-top-66 {
  padding-top: 66px;
}

.padding-bottom-66 {
  padding-bottom: 66px;
}

.padding-left-66 {
  padding-left: 66px;
}

.padding-right-66 {
  padding-right: 66px;
}

.margin-67 {
  margin: 67px;
}

.margin-top-67 {
  margin-top: 67px;
}

.margin-bottom-67 {
  margin-bottom: 67px;
}

.margin-left-67 {
  margin-left: 67px;
}

.margin-right-67 {
  margin-right: 67px;
}

.padding-67 {
  margin: 67px;
}

.padding-top-67 {
  padding-top: 67px;
}

.padding-bottom-67 {
  padding-bottom: 67px;
}

.padding-left-67 {
  padding-left: 67px;
}

.padding-right-67 {
  padding-right: 67px;
}

.margin-68 {
  margin: 68px;
}

.margin-top-68 {
  margin-top: 68px;
}

.margin-bottom-68 {
  margin-bottom: 68px;
}

.margin-left-68 {
  margin-left: 68px;
}

.margin-right-68 {
  margin-right: 68px;
}

.padding-68 {
  margin: 68px;
}

.padding-top-68 {
  padding-top: 68px;
}

.padding-bottom-68 {
  padding-bottom: 68px;
}

.padding-left-68 {
  padding-left: 68px;
}

.padding-right-68 {
  padding-right: 68px;
}

.margin-69 {
  margin: 69px;
}

.margin-top-69 {
  margin-top: 69px;
}

.margin-bottom-69 {
  margin-bottom: 69px;
}

.margin-left-69 {
  margin-left: 69px;
}

.margin-right-69 {
  margin-right: 69px;
}

.padding-69 {
  margin: 69px;
}

.padding-top-69 {
  padding-top: 69px;
}

.padding-bottom-69 {
  padding-bottom: 69px;
}

.padding-left-69 {
  padding-left: 69px;
}

.padding-right-69 {
  padding-right: 69px;
}

.margin-70 {
  margin: 70px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-left-70 {
  margin-left: 70px;
}

.margin-right-70 {
  margin-right: 70px;
}

.padding-70 {
  margin: 70px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-left-70 {
  padding-left: 70px;
}

.padding-right-70 {
  padding-right: 70px;
}

.margin-71 {
  margin: 71px;
}

.margin-top-71 {
  margin-top: 71px;
}

.margin-bottom-71 {
  margin-bottom: 71px;
}

.margin-left-71 {
  margin-left: 71px;
}

.margin-right-71 {
  margin-right: 71px;
}

.padding-71 {
  margin: 71px;
}

.padding-top-71 {
  padding-top: 71px;
}

.padding-bottom-71 {
  padding-bottom: 71px;
}

.padding-left-71 {
  padding-left: 71px;
}

.padding-right-71 {
  padding-right: 71px;
}

.margin-72 {
  margin: 72px;
}

.margin-top-72 {
  margin-top: 72px;
}

.margin-bottom-72 {
  margin-bottom: 72px;
}

.margin-left-72 {
  margin-left: 72px;
}

.margin-right-72 {
  margin-right: 72px;
}

.padding-72 {
  margin: 72px;
}

.padding-top-72 {
  padding-top: 72px;
}

.padding-bottom-72 {
  padding-bottom: 72px;
}

.padding-left-72 {
  padding-left: 72px;
}

.padding-right-72 {
  padding-right: 72px;
}

.margin-73 {
  margin: 73px;
}

.margin-top-73 {
  margin-top: 73px;
}

.margin-bottom-73 {
  margin-bottom: 73px;
}

.margin-left-73 {
  margin-left: 73px;
}

.margin-right-73 {
  margin-right: 73px;
}

.padding-73 {
  margin: 73px;
}

.padding-top-73 {
  padding-top: 73px;
}

.padding-bottom-73 {
  padding-bottom: 73px;
}

.padding-left-73 {
  padding-left: 73px;
}

.padding-right-73 {
  padding-right: 73px;
}

.margin-74 {
  margin: 74px;
}

.margin-top-74 {
  margin-top: 74px;
}

.margin-bottom-74 {
  margin-bottom: 74px;
}

.margin-left-74 {
  margin-left: 74px;
}

.margin-right-74 {
  margin-right: 74px;
}

.padding-74 {
  margin: 74px;
}

.padding-top-74 {
  padding-top: 74px;
}

.padding-bottom-74 {
  padding-bottom: 74px;
}

.padding-left-74 {
  padding-left: 74px;
}

.padding-right-74 {
  padding-right: 74px;
}

.margin-75 {
  margin: 75px;
}

.margin-top-75 {
  margin-top: 75px;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-left-75 {
  margin-left: 75px;
}

.margin-right-75 {
  margin-right: 75px;
}

.padding-75 {
  margin: 75px;
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-left-75 {
  padding-left: 75px;
}

.padding-right-75 {
  padding-right: 75px;
}

.margin-76 {
  margin: 76px;
}

.margin-top-76 {
  margin-top: 76px;
}

.margin-bottom-76 {
  margin-bottom: 76px;
}

.margin-left-76 {
  margin-left: 76px;
}

.margin-right-76 {
  margin-right: 76px;
}

.padding-76 {
  margin: 76px;
}

.padding-top-76 {
  padding-top: 76px;
}

.padding-bottom-76 {
  padding-bottom: 76px;
}

.padding-left-76 {
  padding-left: 76px;
}

.padding-right-76 {
  padding-right: 76px;
}

.margin-77 {
  margin: 77px;
}

.margin-top-77 {
  margin-top: 77px;
}

.margin-bottom-77 {
  margin-bottom: 77px;
}

.margin-left-77 {
  margin-left: 77px;
}

.margin-right-77 {
  margin-right: 77px;
}

.padding-77 {
  margin: 77px;
}

.padding-top-77 {
  padding-top: 77px;
}

.padding-bottom-77 {
  padding-bottom: 77px;
}

.padding-left-77 {
  padding-left: 77px;
}

.padding-right-77 {
  padding-right: 77px;
}

.margin-78 {
  margin: 78px;
}

.margin-top-78 {
  margin-top: 78px;
}

.margin-bottom-78 {
  margin-bottom: 78px;
}

.margin-left-78 {
  margin-left: 78px;
}

.margin-right-78 {
  margin-right: 78px;
}

.padding-78 {
  margin: 78px;
}

.padding-top-78 {
  padding-top: 78px;
}

.padding-bottom-78 {
  padding-bottom: 78px;
}

.padding-left-78 {
  padding-left: 78px;
}

.padding-right-78 {
  padding-right: 78px;
}

.margin-79 {
  margin: 79px;
}

.margin-top-79 {
  margin-top: 79px;
}

.margin-bottom-79 {
  margin-bottom: 79px;
}

.margin-left-79 {
  margin-left: 79px;
}

.margin-right-79 {
  margin-right: 79px;
}

.padding-79 {
  margin: 79px;
}

.padding-top-79 {
  padding-top: 79px;
}

.padding-bottom-79 {
  padding-bottom: 79px;
}

.padding-left-79 {
  padding-left: 79px;
}

.padding-right-79 {
  padding-right: 79px;
}

.margin-80 {
  margin: 80px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-left-80 {
  margin-left: 80px;
}

.margin-right-80 {
  margin-right: 80px;
}

.padding-80 {
  margin: 80px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-left-80 {
  padding-left: 80px;
}

.padding-right-80 {
  padding-right: 80px;
}

.margin-81 {
  margin: 81px;
}

.margin-top-81 {
  margin-top: 81px;
}

.margin-bottom-81 {
  margin-bottom: 81px;
}

.margin-left-81 {
  margin-left: 81px;
}

.margin-right-81 {
  margin-right: 81px;
}

.padding-81 {
  margin: 81px;
}

.padding-top-81 {
  padding-top: 81px;
}

.padding-bottom-81 {
  padding-bottom: 81px;
}

.padding-left-81 {
  padding-left: 81px;
}

.padding-right-81 {
  padding-right: 81px;
}

.margin-82 {
  margin: 82px;
}

.margin-top-82 {
  margin-top: 82px;
}

.margin-bottom-82 {
  margin-bottom: 82px;
}

.margin-left-82 {
  margin-left: 82px;
}

.margin-right-82 {
  margin-right: 82px;
}

.padding-82 {
  margin: 82px;
}

.padding-top-82 {
  padding-top: 82px;
}

.padding-bottom-82 {
  padding-bottom: 82px;
}

.padding-left-82 {
  padding-left: 82px;
}

.padding-right-82 {
  padding-right: 82px;
}

.margin-83 {
  margin: 83px;
}

.margin-top-83 {
  margin-top: 83px;
}

.margin-bottom-83 {
  margin-bottom: 83px;
}

.margin-left-83 {
  margin-left: 83px;
}

.margin-right-83 {
  margin-right: 83px;
}

.padding-83 {
  margin: 83px;
}

.padding-top-83 {
  padding-top: 83px;
}

.padding-bottom-83 {
  padding-bottom: 83px;
}

.padding-left-83 {
  padding-left: 83px;
}

.padding-right-83 {
  padding-right: 83px;
}

.margin-84 {
  margin: 84px;
}

.margin-top-84 {
  margin-top: 84px;
}

.margin-bottom-84 {
  margin-bottom: 84px;
}

.margin-left-84 {
  margin-left: 84px;
}

.margin-right-84 {
  margin-right: 84px;
}

.padding-84 {
  margin: 84px;
}

.padding-top-84 {
  padding-top: 84px;
}

.padding-bottom-84 {
  padding-bottom: 84px;
}

.padding-left-84 {
  padding-left: 84px;
}

.padding-right-84 {
  padding-right: 84px;
}

.margin-85 {
  margin: 85px;
}

.margin-top-85 {
  margin-top: 85px;
}

.margin-bottom-85 {
  margin-bottom: 85px;
}

.margin-left-85 {
  margin-left: 85px;
}

.margin-right-85 {
  margin-right: 85px;
}

.padding-85 {
  margin: 85px;
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-left-85 {
  padding-left: 85px;
}

.padding-right-85 {
  padding-right: 85px;
}

.margin-86 {
  margin: 86px;
}

.margin-top-86 {
  margin-top: 86px;
}

.margin-bottom-86 {
  margin-bottom: 86px;
}

.margin-left-86 {
  margin-left: 86px;
}

.margin-right-86 {
  margin-right: 86px;
}

.padding-86 {
  margin: 86px;
}

.padding-top-86 {
  padding-top: 86px;
}

.padding-bottom-86 {
  padding-bottom: 86px;
}

.padding-left-86 {
  padding-left: 86px;
}

.padding-right-86 {
  padding-right: 86px;
}

.margin-87 {
  margin: 87px;
}

.margin-top-87 {
  margin-top: 87px;
}

.margin-bottom-87 {
  margin-bottom: 87px;
}

.margin-left-87 {
  margin-left: 87px;
}

.margin-right-87 {
  margin-right: 87px;
}

.padding-87 {
  margin: 87px;
}

.padding-top-87 {
  padding-top: 87px;
}

.padding-bottom-87 {
  padding-bottom: 87px;
}

.padding-left-87 {
  padding-left: 87px;
}

.padding-right-87 {
  padding-right: 87px;
}

.margin-88 {
  margin: 88px;
}

.margin-top-88 {
  margin-top: 88px;
}

.margin-bottom-88 {
  margin-bottom: 88px;
}

.margin-left-88 {
  margin-left: 88px;
}

.margin-right-88 {
  margin-right: 88px;
}

.padding-88 {
  margin: 88px;
}

.padding-top-88 {
  padding-top: 88px;
}

.padding-bottom-88 {
  padding-bottom: 88px;
}

.padding-left-88 {
  padding-left: 88px;
}

.padding-right-88 {
  padding-right: 88px;
}

.margin-89 {
  margin: 89px;
}

.margin-top-89 {
  margin-top: 89px;
}

.margin-bottom-89 {
  margin-bottom: 89px;
}

.margin-left-89 {
  margin-left: 89px;
}

.margin-right-89 {
  margin-right: 89px;
}

.padding-89 {
  margin: 89px;
}

.padding-top-89 {
  padding-top: 89px;
}

.padding-bottom-89 {
  padding-bottom: 89px;
}

.padding-left-89 {
  padding-left: 89px;
}

.padding-right-89 {
  padding-right: 89px;
}

.margin-90 {
  margin: 90px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-left-90 {
  margin-left: 90px;
}

.margin-right-90 {
  margin-right: 90px;
}

.padding-90 {
  margin: 90px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-left-90 {
  padding-left: 90px;
}

.padding-right-90 {
  padding-right: 90px;
}

.margin-91 {
  margin: 91px;
}

.margin-top-91 {
  margin-top: 91px;
}

.margin-bottom-91 {
  margin-bottom: 91px;
}

.margin-left-91 {
  margin-left: 91px;
}

.margin-right-91 {
  margin-right: 91px;
}

.padding-91 {
  margin: 91px;
}

.padding-top-91 {
  padding-top: 91px;
}

.padding-bottom-91 {
  padding-bottom: 91px;
}

.padding-left-91 {
  padding-left: 91px;
}

.padding-right-91 {
  padding-right: 91px;
}

.margin-92 {
  margin: 92px;
}

.margin-top-92 {
  margin-top: 92px;
}

.margin-bottom-92 {
  margin-bottom: 92px;
}

.margin-left-92 {
  margin-left: 92px;
}

.margin-right-92 {
  margin-right: 92px;
}

.padding-92 {
  margin: 92px;
}

.padding-top-92 {
  padding-top: 92px;
}

.padding-bottom-92 {
  padding-bottom: 92px;
}

.padding-left-92 {
  padding-left: 92px;
}

.padding-right-92 {
  padding-right: 92px;
}

.margin-93 {
  margin: 93px;
}

.margin-top-93 {
  margin-top: 93px;
}

.margin-bottom-93 {
  margin-bottom: 93px;
}

.margin-left-93 {
  margin-left: 93px;
}

.margin-right-93 {
  margin-right: 93px;
}

.padding-93 {
  margin: 93px;
}

.padding-top-93 {
  padding-top: 93px;
}

.padding-bottom-93 {
  padding-bottom: 93px;
}

.padding-left-93 {
  padding-left: 93px;
}

.padding-right-93 {
  padding-right: 93px;
}

.margin-94 {
  margin: 94px;
}

.margin-top-94 {
  margin-top: 94px;
}

.margin-bottom-94 {
  margin-bottom: 94px;
}

.margin-left-94 {
  margin-left: 94px;
}

.margin-right-94 {
  margin-right: 94px;
}

.padding-94 {
  margin: 94px;
}

.padding-top-94 {
  padding-top: 94px;
}

.padding-bottom-94 {
  padding-bottom: 94px;
}

.padding-left-94 {
  padding-left: 94px;
}

.padding-right-94 {
  padding-right: 94px;
}

.margin-95 {
  margin: 95px;
}

.margin-top-95 {
  margin-top: 95px;
}

.margin-bottom-95 {
  margin-bottom: 95px;
}

.margin-left-95 {
  margin-left: 95px;
}

.margin-right-95 {
  margin-right: 95px;
}

.padding-95 {
  margin: 95px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-left-95 {
  padding-left: 95px;
}

.padding-right-95 {
  padding-right: 95px;
}

.margin-96 {
  margin: 96px;
}

.margin-top-96 {
  margin-top: 96px;
}

.margin-bottom-96 {
  margin-bottom: 96px;
}

.margin-left-96 {
  margin-left: 96px;
}

.margin-right-96 {
  margin-right: 96px;
}

.padding-96 {
  margin: 96px;
}

.padding-top-96 {
  padding-top: 96px;
}

.padding-bottom-96 {
  padding-bottom: 96px;
}

.padding-left-96 {
  padding-left: 96px;
}

.padding-right-96 {
  padding-right: 96px;
}

.margin-97 {
  margin: 97px;
}

.margin-top-97 {
  margin-top: 97px;
}

.margin-bottom-97 {
  margin-bottom: 97px;
}

.margin-left-97 {
  margin-left: 97px;
}

.margin-right-97 {
  margin-right: 97px;
}

.padding-97 {
  margin: 97px;
}

.padding-top-97 {
  padding-top: 97px;
}

.padding-bottom-97 {
  padding-bottom: 97px;
}

.padding-left-97 {
  padding-left: 97px;
}

.padding-right-97 {
  padding-right: 97px;
}

.margin-98 {
  margin: 98px;
}

.margin-top-98 {
  margin-top: 98px;
}

.margin-bottom-98 {
  margin-bottom: 98px;
}

.margin-left-98 {
  margin-left: 98px;
}

.margin-right-98 {
  margin-right: 98px;
}

.padding-98 {
  margin: 98px;
}

.padding-top-98 {
  padding-top: 98px;
}

.padding-bottom-98 {
  padding-bottom: 98px;
}

.padding-left-98 {
  padding-left: 98px;
}

.padding-right-98 {
  padding-right: 98px;
}

.margin-99 {
  margin: 99px;
}

.margin-top-99 {
  margin-top: 99px;
}

.margin-bottom-99 {
  margin-bottom: 99px;
}

.margin-left-99 {
  margin-left: 99px;
}

.margin-right-99 {
  margin-right: 99px;
}

.padding-99 {
  margin: 99px;
}

.padding-top-99 {
  padding-top: 99px;
}

.padding-bottom-99 {
  padding-bottom: 99px;
}

.padding-left-99 {
  padding-left: 99px;
}

.padding-right-99 {
  padding-right: 99px;
}

.margin-100 {
  margin: 100px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-left-100 {
  margin-left: 100px;
}

.margin-right-100 {
  margin-right: 100px;
}

.padding-100 {
  margin: 100px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-left-100 {
  padding-left: 100px;
}

.padding-right-100 {
  padding-right: 100px;
}

.margin-101 {
  margin: 101px;
}

.margin-top-101 {
  margin-top: 101px;
}

.margin-bottom-101 {
  margin-bottom: 101px;
}

.margin-left-101 {
  margin-left: 101px;
}

.margin-right-101 {
  margin-right: 101px;
}

.padding-101 {
  margin: 101px;
}

.padding-top-101 {
  padding-top: 101px;
}

.padding-bottom-101 {
  padding-bottom: 101px;
}

.padding-left-101 {
  padding-left: 101px;
}

.padding-right-101 {
  padding-right: 101px;
}

.margin-102 {
  margin: 102px;
}

.margin-top-102 {
  margin-top: 102px;
}

.margin-bottom-102 {
  margin-bottom: 102px;
}

.margin-left-102 {
  margin-left: 102px;
}

.margin-right-102 {
  margin-right: 102px;
}

.padding-102 {
  margin: 102px;
}

.padding-top-102 {
  padding-top: 102px;
}

.padding-bottom-102 {
  padding-bottom: 102px;
}

.padding-left-102 {
  padding-left: 102px;
}

.padding-right-102 {
  padding-right: 102px;
}

.margin-103 {
  margin: 103px;
}

.margin-top-103 {
  margin-top: 103px;
}

.margin-bottom-103 {
  margin-bottom: 103px;
}

.margin-left-103 {
  margin-left: 103px;
}

.margin-right-103 {
  margin-right: 103px;
}

.padding-103 {
  margin: 103px;
}

.padding-top-103 {
  padding-top: 103px;
}

.padding-bottom-103 {
  padding-bottom: 103px;
}

.padding-left-103 {
  padding-left: 103px;
}

.padding-right-103 {
  padding-right: 103px;
}

.margin-104 {
  margin: 104px;
}

.margin-top-104 {
  margin-top: 104px;
}

.margin-bottom-104 {
  margin-bottom: 104px;
}

.margin-left-104 {
  margin-left: 104px;
}

.margin-right-104 {
  margin-right: 104px;
}

.padding-104 {
  margin: 104px;
}

.padding-top-104 {
  padding-top: 104px;
}

.padding-bottom-104 {
  padding-bottom: 104px;
}

.padding-left-104 {
  padding-left: 104px;
}

.padding-right-104 {
  padding-right: 104px;
}

.margin-105 {
  margin: 105px;
}

.margin-top-105 {
  margin-top: 105px;
}

.margin-bottom-105 {
  margin-bottom: 105px;
}

.margin-left-105 {
  margin-left: 105px;
}

.margin-right-105 {
  margin-right: 105px;
}

.padding-105 {
  margin: 105px;
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-left-105 {
  padding-left: 105px;
}

.padding-right-105 {
  padding-right: 105px;
}

.margin-106 {
  margin: 106px;
}

.margin-top-106 {
  margin-top: 106px;
}

.margin-bottom-106 {
  margin-bottom: 106px;
}

.margin-left-106 {
  margin-left: 106px;
}

.margin-right-106 {
  margin-right: 106px;
}

.padding-106 {
  margin: 106px;
}

.padding-top-106 {
  padding-top: 106px;
}

.padding-bottom-106 {
  padding-bottom: 106px;
}

.padding-left-106 {
  padding-left: 106px;
}

.padding-right-106 {
  padding-right: 106px;
}

.margin-107 {
  margin: 107px;
}

.margin-top-107 {
  margin-top: 107px;
}

.margin-bottom-107 {
  margin-bottom: 107px;
}

.margin-left-107 {
  margin-left: 107px;
}

.margin-right-107 {
  margin-right: 107px;
}

.padding-107 {
  margin: 107px;
}

.padding-top-107 {
  padding-top: 107px;
}

.padding-bottom-107 {
  padding-bottom: 107px;
}

.padding-left-107 {
  padding-left: 107px;
}

.padding-right-107 {
  padding-right: 107px;
}

.margin-108 {
  margin: 108px;
}

.margin-top-108 {
  margin-top: 108px;
}

.margin-bottom-108 {
  margin-bottom: 108px;
}

.margin-left-108 {
  margin-left: 108px;
}

.margin-right-108 {
  margin-right: 108px;
}

.padding-108 {
  margin: 108px;
}

.padding-top-108 {
  padding-top: 108px;
}

.padding-bottom-108 {
  padding-bottom: 108px;
}

.padding-left-108 {
  padding-left: 108px;
}

.padding-right-108 {
  padding-right: 108px;
}

.margin-109 {
  margin: 109px;
}

.margin-top-109 {
  margin-top: 109px;
}

.margin-bottom-109 {
  margin-bottom: 109px;
}

.margin-left-109 {
  margin-left: 109px;
}

.margin-right-109 {
  margin-right: 109px;
}

.padding-109 {
  margin: 109px;
}

.padding-top-109 {
  padding-top: 109px;
}

.padding-bottom-109 {
  padding-bottom: 109px;
}

.padding-left-109 {
  padding-left: 109px;
}

.padding-right-109 {
  padding-right: 109px;
}

.margin-110 {
  margin: 110px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-bottom-110 {
  margin-bottom: 110px;
}

.margin-left-110 {
  margin-left: 110px;
}

.margin-right-110 {
  margin-right: 110px;
}

.padding-110 {
  margin: 110px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-left-110 {
  padding-left: 110px;
}

.padding-right-110 {
  padding-right: 110px;
}

.margin-111 {
  margin: 111px;
}

.margin-top-111 {
  margin-top: 111px;
}

.margin-bottom-111 {
  margin-bottom: 111px;
}

.margin-left-111 {
  margin-left: 111px;
}

.margin-right-111 {
  margin-right: 111px;
}

.padding-111 {
  margin: 111px;
}

.padding-top-111 {
  padding-top: 111px;
}

.padding-bottom-111 {
  padding-bottom: 111px;
}

.padding-left-111 {
  padding-left: 111px;
}

.padding-right-111 {
  padding-right: 111px;
}

.margin-112 {
  margin: 112px;
}

.margin-top-112 {
  margin-top: 112px;
}

.margin-bottom-112 {
  margin-bottom: 112px;
}

.margin-left-112 {
  margin-left: 112px;
}

.margin-right-112 {
  margin-right: 112px;
}

.padding-112 {
  margin: 112px;
}

.padding-top-112 {
  padding-top: 112px;
}

.padding-bottom-112 {
  padding-bottom: 112px;
}

.padding-left-112 {
  padding-left: 112px;
}

.padding-right-112 {
  padding-right: 112px;
}

.margin-113 {
  margin: 113px;
}

.margin-top-113 {
  margin-top: 113px;
}

.margin-bottom-113 {
  margin-bottom: 113px;
}

.margin-left-113 {
  margin-left: 113px;
}

.margin-right-113 {
  margin-right: 113px;
}

.padding-113 {
  margin: 113px;
}

.padding-top-113 {
  padding-top: 113px;
}

.padding-bottom-113 {
  padding-bottom: 113px;
}

.padding-left-113 {
  padding-left: 113px;
}

.padding-right-113 {
  padding-right: 113px;
}

.margin-114 {
  margin: 114px;
}

.margin-top-114 {
  margin-top: 114px;
}

.margin-bottom-114 {
  margin-bottom: 114px;
}

.margin-left-114 {
  margin-left: 114px;
}

.margin-right-114 {
  margin-right: 114px;
}

.padding-114 {
  margin: 114px;
}

.padding-top-114 {
  padding-top: 114px;
}

.padding-bottom-114 {
  padding-bottom: 114px;
}

.padding-left-114 {
  padding-left: 114px;
}

.padding-right-114 {
  padding-right: 114px;
}

.margin-115 {
  margin: 115px;
}

.margin-top-115 {
  margin-top: 115px;
}

.margin-bottom-115 {
  margin-bottom: 115px;
}

.margin-left-115 {
  margin-left: 115px;
}

.margin-right-115 {
  margin-right: 115px;
}

.padding-115 {
  margin: 115px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-left-115 {
  padding-left: 115px;
}

.padding-right-115 {
  padding-right: 115px;
}

.margin-116 {
  margin: 116px;
}

.margin-top-116 {
  margin-top: 116px;
}

.margin-bottom-116 {
  margin-bottom: 116px;
}

.margin-left-116 {
  margin-left: 116px;
}

.margin-right-116 {
  margin-right: 116px;
}

.padding-116 {
  margin: 116px;
}

.padding-top-116 {
  padding-top: 116px;
}

.padding-bottom-116 {
  padding-bottom: 116px;
}

.padding-left-116 {
  padding-left: 116px;
}

.padding-right-116 {
  padding-right: 116px;
}

.margin-117 {
  margin: 117px;
}

.margin-top-117 {
  margin-top: 117px;
}

.margin-bottom-117 {
  margin-bottom: 117px;
}

.margin-left-117 {
  margin-left: 117px;
}

.margin-right-117 {
  margin-right: 117px;
}

.padding-117 {
  margin: 117px;
}

.padding-top-117 {
  padding-top: 117px;
}

.padding-bottom-117 {
  padding-bottom: 117px;
}

.padding-left-117 {
  padding-left: 117px;
}

.padding-right-117 {
  padding-right: 117px;
}

.margin-118 {
  margin: 118px;
}

.margin-top-118 {
  margin-top: 118px;
}

.margin-bottom-118 {
  margin-bottom: 118px;
}

.margin-left-118 {
  margin-left: 118px;
}

.margin-right-118 {
  margin-right: 118px;
}

.padding-118 {
  margin: 118px;
}

.padding-top-118 {
  padding-top: 118px;
}

.padding-bottom-118 {
  padding-bottom: 118px;
}

.padding-left-118 {
  padding-left: 118px;
}

.padding-right-118 {
  padding-right: 118px;
}

.margin-119 {
  margin: 119px;
}

.margin-top-119 {
  margin-top: 119px;
}

.margin-bottom-119 {
  margin-bottom: 119px;
}

.margin-left-119 {
  margin-left: 119px;
}

.margin-right-119 {
  margin-right: 119px;
}

.padding-119 {
  margin: 119px;
}

.padding-top-119 {
  padding-top: 119px;
}

.padding-bottom-119 {
  padding-bottom: 119px;
}

.padding-left-119 {
  padding-left: 119px;
}

.padding-right-119 {
  padding-right: 119px;
}

.margin-120 {
  margin: 120px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-left-120 {
  margin-left: 120px;
}

.margin-right-120 {
  margin-right: 120px;
}

.padding-120 {
  margin: 120px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-left-120 {
  padding-left: 120px;
}

.padding-right-120 {
  padding-right: 120px;
}

.line-height-100 {
  line-height: 100%;
}

.line-height-101 {
  line-height: 101%;
}

.line-height-102 {
  line-height: 102%;
}

.line-height-103 {
  line-height: 103%;
}

.line-height-104 {
  line-height: 104%;
}

.line-height-105 {
  line-height: 105%;
}

.line-height-106 {
  line-height: 106%;
}

.line-height-107 {
  line-height: 107%;
}

.line-height-108 {
  line-height: 108%;
}

.line-height-109 {
  line-height: 109%;
}

.line-height-110 {
  line-height: 110%;
}

.line-height-111 {
  line-height: 111%;
}

.line-height-112 {
  line-height: 112%;
}

.line-height-113 {
  line-height: 113%;
}

.line-height-114 {
  line-height: 114%;
}

.line-height-115 {
  line-height: 115%;
}

.line-height-116 {
  line-height: 116%;
}

.line-height-117 {
  line-height: 117%;
}

.line-height-118 {
  line-height: 118%;
}

.line-height-119 {
  line-height: 119%;
}

.line-height-120 {
  line-height: 120%;
}

.line-height-121 {
  line-height: 121%;
}

.line-height-122 {
  line-height: 122%;
}

.line-height-123 {
  line-height: 123%;
}

.line-height-124 {
  line-height: 124%;
}

.line-height-125 {
  line-height: 125%;
}

.line-height-126 {
  line-height: 126%;
}

.line-height-127 {
  line-height: 127%;
}

.line-height-128 {
  line-height: 128%;
}

.line-height-129 {
  line-height: 129%;
}

.line-height-130 {
  line-height: 130%;
}

.line-height-131 {
  line-height: 131%;
}

.line-height-132 {
  line-height: 132%;
}

.line-height-133 {
  line-height: 133%;
}

.line-height-134 {
  line-height: 134%;
}

.line-height-135 {
  line-height: 135%;
}

.line-height-136 {
  line-height: 136%;
}

.line-height-137 {
  line-height: 137%;
}

.line-height-138 {
  line-height: 138%;
}

.line-height-139 {
  line-height: 139%;
}

.line-height-140 {
  line-height: 140%;
}

.line-height-141 {
  line-height: 141%;
}

.line-height-142 {
  line-height: 142%;
}

.line-height-143 {
  line-height: 143%;
}

.line-height-144 {
  line-height: 144%;
}

.line-height-145 {
  line-height: 145%;
}

.line-height-146 {
  line-height: 146%;
}

.line-height-147 {
  line-height: 147%;
}

.line-height-148 {
  line-height: 148%;
}

.line-height-149 {
  line-height: 149%;
}

.line-height-150 {
  line-height: 150%;
}

.line-height-151 {
  line-height: 151%;
}

.line-height-152 {
  line-height: 152%;
}

.line-height-153 {
  line-height: 153%;
}

.line-height-154 {
  line-height: 154%;
}

.line-height-155 {
  line-height: 155%;
}

.line-height-156 {
  line-height: 156%;
}

.line-height-157 {
  line-height: 157%;
}

.line-height-158 {
  line-height: 158%;
}

.line-height-159 {
  line-height: 159%;
}

.line-height-160 {
  line-height: 160%;
}

.line-height-161 {
  line-height: 161%;
}

.line-height-162 {
  line-height: 162%;
}

.line-height-163 {
  line-height: 163%;
}

.line-height-164 {
  line-height: 164%;
}

.line-height-165 {
  line-height: 165%;
}

.line-height-166 {
  line-height: 166%;
}

.line-height-167 {
  line-height: 167%;
}

.line-height-168 {
  line-height: 168%;
}

.line-height-169 {
  line-height: 169%;
}

.line-height-170 {
  line-height: 170%;
}

.line-height-171 {
  line-height: 171%;
}

.line-height-172 {
  line-height: 172%;
}

.line-height-173 {
  line-height: 173%;
}

.line-height-174 {
  line-height: 174%;
}

.line-height-175 {
  line-height: 175%;
}

.line-height-176 {
  line-height: 176%;
}

.line-height-177 {
  line-height: 177%;
}

.line-height-178 {
  line-height: 178%;
}

.line-height-179 {
  line-height: 179%;
}

.line-height-180 {
  line-height: 180%;
}

.line-height-181 {
  line-height: 181%;
}

.line-height-182 {
  line-height: 182%;
}

.line-height-183 {
  line-height: 183%;
}

.line-height-184 {
  line-height: 184%;
}

.line-height-185 {
  line-height: 185%;
}

.line-height-186 {
  line-height: 186%;
}

.line-height-187 {
  line-height: 187%;
}

.line-height-188 {
  line-height: 188%;
}

.line-height-189 {
  line-height: 189%;
}

.line-height-190 {
  line-height: 190%;
}

.line-height-191 {
  line-height: 191%;
}

.line-height-192 {
  line-height: 192%;
}

.line-height-193 {
  line-height: 193%;
}

.line-height-194 {
  line-height: 194%;
}

.line-height-195 {
  line-height: 195%;
}

.line-height-196 {
  line-height: 196%;
}

.line-height-197 {
  line-height: 197%;
}

.line-height-198 {
  line-height: 198%;
}

.line-height-199 {
  line-height: 199%;
}

.line-height-200 {
  line-height: 200%;
}

.color-yellow-light {
  color: #c4ad8e;
}

.color-enemy-name {
  color: #e03636;
}

.color-negative-value {
  color: #dd6363;
}

.color-positive-value {
  color: #a6a6a6;
}

.color-mana {
  color: #8282f6;
}

.color-red-fire {
  color: #dc3e3e;
}

.color-yellow-fire, .app-btn-daily {
  color: #dfa94e;
}

.color-nickname {
  color: #d7a061;
}

.color-caption {
  color: #a37c83;
}

.bar-hp {
  color: #9af481;
}

.bar-mp {
  color: #8282f6;
}

.bar-exp {
  color: #ffda82;
}

.bar-enemy {
  color: #fb9696;
}

.color-try {
  color: #d8ffd4;
}

.color-free {
  color: #f9fff5;
}

.color-disabled {
  color: #796b5d;
}

.color-rarity-unknown {
  color: #929292;
}

.color-grey {
  color: #cac4d0;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Cambria", sans-serif;
  font-size: 35px;
  -webkit-overflow-scrolling: touch;
}

body {
  position: relative;
  overflow: hidden;
  font-family: "Cambria", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.5;
  color: #c4ad8e;
  background: #141414;
  cursor: url("/assets/images/cursor/cursor-50.avif") 10 0, auto !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}

button {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Sacra", serif;
  font-size: 35px;
  border: none;
  background: transparent;
  box-shadow: none;
  color: indianred;
  cursor: url("/assets/images/cursor/cursor-50-active.avif") 10 0, auto !important;
}

:focus-visible {
  outline: none;
}

a {
  color: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::placeholder {
  color: #a37c83;
}

/*  #CUSTOM SCROLL
------------------------------------------- */
.custom-scroll, .g-scroll, .g-scroll-y, .g-scroll-x {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.custom-scroll::-webkit-scrollbar, .g-scroll::-webkit-scrollbar, .g-scroll-y::-webkit-scrollbar, .g-scroll-x::-webkit-scrollbar {
  width: 0px;
}
.custom-scroll::-webkit-scrollbar-thumb, .g-scroll::-webkit-scrollbar-thumb, .g-scroll-y::-webkit-scrollbar-thumb, .g-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb:hover, .g-scroll::-webkit-scrollbar-thumb:hover, .g-scroll-y::-webkit-scrollbar-thumb:hover, .g-scroll-x::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.custom-scroll-small {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.custom-scroll-small::-webkit-scrollbar {
  width: 4px;
}
.custom-scroll-small::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgba(58, 58, 58, 0.3);
}
.custom-scroll-small::-webkit-scrollbar-thumb:hover {
  background: rgba(58, 58, 58, 0.5);
}

.custom-scroll--horizontal::-webkit-scrollbar {
  height: 0px;
}

.custom-scroll-small--horizontal::-webkit-scrollbar {
  height: 4px;
}

/* #GRIDS
------------------------------------------- */
.g-scroll-no {
  overflow: hidden;
}

.g-scroll {
  overflow: auto;
}

.g-scroll-y {
  overflow: hidden;
  overflow-y: auto;
}

.g-scroll-x {
  overflow-y: hidden;
  overflow-x: auto;
}

.g-flex {
  display: flex;
}

.g-flex--reverse {
  flex-direction: row-reverse;
}

.g-flex__item {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  width: 1%;
}

.g-flex__item-fixed {
  flex-shrink: 0;
}

.g-flex-column {
  display: flex;
  flex-direction: column;
}

.g-flex-column--reverse {
  flex-direction: column-reverse;
}

.g-flex-column__item {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  height: 1%;
}

.g-flex-column__item-fixed {
  flex-shrink: 0;
}

.g-flex--align-center {
  align-items: center;
}

.g-flex--align-baseline {
  align-items: baseline;
}

.g-flex--align-start {
  align-items: flex-start;
}

.g-flex--align-end {
  align-items: flex-end;
}

.g-flex--align-stretch {
  align-items: stretch;
}

.g-flex--space-between {
  justify-content: space-between;
}

.g-flex--space-around {
  justify-content: space-around;
}

.g-flex--space-evenly {
  justify-content: space-evenly;
}

.g-flex--justify-center {
  justify-content: center;
}

.g-flex--justify-start {
  justify-content: flex-start;
}

.g-flex--justify-end {
  justify-content: flex-end;
}

.g-flex--wrap {
  flex-wrap: wrap;
}

.g-flex--no-wrap {
  flex-wrap: nowrap;
}

.g-flex--self-center {
  align-self: center;
}

.g-flex--self-end {
  align-self: flex-end;
}

.app-btn, .app-btn-square-arrow-down-frameless, .app-btn-square-arrow-up-frameless, .app-btn-square-arrow-down, .app-btn-square-arrow-up, .app-btn-square-arrow-left, .app-btn-square-arrow-right, .app-btn-square-arrow-left-huge, .app-btn-square-arrow-right-huge, .app-btn-square-cross, .app-btn-cross-light, .app-btn-square-plus, .app-btn-square-minus, .app-btn-square-down, .app-btn-square-search, .app-btn-square-list, .app-btn-square-frame, .app-btn-square-settings, .app-btn-huge, .app-btn-red-huge-1, .app-btn-red-huge-2, .app-btn-red-huge-3, .app-btn-standard, .app-btn-max, .app-btn-swap, .app-btn-copy, .app-btn-exit, .app-btn-link, .app-btn-view-mode-icon, .app-btn-view-mode-list, .app-btn-filter, .app-btn-trash, .app-btn-stop, .app-btn-refresh, .app-btn-key, .app-btn-thunderbolt, .app-btn-token-banner-1, .app-btn-token-banner-2, .app-btn-escape, .app-btn-blue-1, .app-btn-blue-2, .app-btn-blue-2-show-list, .app-btn-blue-3, .app-btn-blue-4-2, .app-btn-blue-4-1, .app-btn-blue-inventory, .app-btn-blue-equip, .app-btn-blue-forge, .app-btn-blue-marketplace, .app-btn-blue-salvage, .app-btn-blue-augment, .app-btn-blue-reinforcement, .app-btn-blue-inventory-1, .app-btn-blue-inventory-2, .app-btn-blue-1-2, .app-btn-silver-1, .app-btn-silver-2, .app-btn-silver-3, .app-btn-silver-4, .app-btn-silver-5, .app-btn-red-1, .app-btn-red-1-2, .app-btn-red-2, .app-btn-red-3, .app-btn-red-4, .app-btn-red-attack, .app-btn-green-1 {
  white-space: nowrap;
  -webkit-user-select: none;
          user-select: none;
  background-repeat: no-repeat;
}

.btn-disabled-info {
  background-image: url(/assets/images/ui/icons/other/info-holder-question.png);
  background-repeat: no-repeat;
  background-size: 61px;
  height: 61px;
  width: 61px;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.app-btn-standard, .app-btn-max, .app-btn-swap, .app-btn-copy, .app-btn-exit, .app-btn-link, .app-btn-view-mode-icon, .app-btn-view-mode-list, .app-btn-filter, .app-btn-trash, .app-btn-stop, .app-btn-refresh, .app-btn-key, .app-btn-thunderbolt, .app-btn-token-banner-1, .app-btn-token-banner-2, .app-btn-escape, .app-btn-blue-1, .app-btn-blue-2, .app-btn-blue-2-show-list, .app-btn-blue-3, .app-btn-blue-4-2, .app-btn-blue-4-1, .app-btn-blue-inventory, .app-btn-blue-equip, .app-btn-blue-forge, .app-btn-blue-marketplace, .app-btn-blue-salvage, .app-btn-blue-augment, .app-btn-blue-reinforcement, .app-btn-blue-inventory-1, .app-btn-blue-inventory-2, .app-btn-blue-1-2, .app-btn-silver-1, .app-btn-silver-2, .app-btn-silver-3, .app-btn-silver-4, .app-btn-silver-5, .app-btn-red-1, .app-btn-red-1-2, .app-btn-red-2, .app-btn-red-3, .app-btn-red-4, .app-btn-red-attack, .app-btn-green-1 {
  height: 94px;
  font-family: "Sacra", serif;
  color: #c4ad8e;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.75), 0 0 5px #000000, 3px 3px 4px rgba(0, 0, 0, 0.52);
}
.app-btn-standard.app-btn_active, .app-btn_active.app-btn-max, .app-btn_active.app-btn-swap, .app-btn_active.app-btn-copy, .app-btn_active.app-btn-exit, .app-btn_active.app-btn-link, .app-btn_active.app-btn-view-mode-icon, .app-btn_active.app-btn-view-mode-list, .app-btn_active.app-btn-filter, .app-btn_active.app-btn-trash, .app-btn_active.app-btn-stop, .app-btn_active.app-btn-refresh, .app-btn_active.app-btn-key, .app-btn_active.app-btn-thunderbolt, .app-btn_active.app-btn-token-banner-1, .app-btn_active.app-btn-token-banner-2, .app-btn_active.app-btn-escape, .app-btn_active.app-btn-blue-1, .app-btn_active.app-btn-blue-2, .app-btn_active.app-btn-blue-2-show-list, .app-btn_active.app-btn-blue-3, .app-btn_active.app-btn-blue-4-2, .app-btn_active.app-btn-blue-4-1, .app-btn_active.app-btn-blue-inventory, .app-btn_active.app-btn-blue-equip, .app-btn_active.app-btn-blue-forge, .app-btn_active.app-btn-blue-marketplace, .app-btn_active.app-btn-blue-salvage, .app-btn_active.app-btn-blue-augment, .app-btn_active.app-btn-blue-reinforcement, .app-btn_active.app-btn-blue-inventory-1, .app-btn_active.app-btn-blue-inventory-2, .app-btn_active.app-btn-blue-1-2, .app-btn_active.app-btn-silver-1, .app-btn_active.app-btn-silver-2, .app-btn_active.app-btn-silver-3, .app-btn_active.app-btn-silver-4, .app-btn_active.app-btn-silver-5, .app-btn_active.app-btn-red-1, .app-btn_active.app-btn-red-1-2, .app-btn_active.app-btn-red-2, .app-btn_active.app-btn-red-3, .app-btn_active.app-btn-red-4, .app-btn_active.app-btn-red-attack, .app-btn_active.app-btn-green-1, .app-btn-standard.app-btn_highlight, .app-btn_highlight.app-btn-max, .app-btn_highlight.app-btn-swap, .app-btn_highlight.app-btn-copy, .app-btn_highlight.app-btn-exit, .app-btn_highlight.app-btn-link, .app-btn_highlight.app-btn-view-mode-icon, .app-btn_highlight.app-btn-view-mode-list, .app-btn_highlight.app-btn-filter, .app-btn_highlight.app-btn-trash, .app-btn_highlight.app-btn-stop, .app-btn_highlight.app-btn-refresh, .app-btn_highlight.app-btn-key, .app-btn_highlight.app-btn-thunderbolt, .app-btn_highlight.app-btn-token-banner-1, .app-btn_highlight.app-btn-token-banner-2, .app-btn_highlight.app-btn-escape, .app-btn_highlight.app-btn-blue-1, .app-btn_highlight.app-btn-blue-2, .app-btn_highlight.app-btn-blue-2-show-list, .app-btn_highlight.app-btn-blue-3, .app-btn_highlight.app-btn-blue-4-2, .app-btn_highlight.app-btn-blue-4-1, .app-btn_highlight.app-btn-blue-inventory, .app-btn_highlight.app-btn-blue-equip, .app-btn_highlight.app-btn-blue-forge, .app-btn_highlight.app-btn-blue-marketplace, .app-btn_highlight.app-btn-blue-salvage, .app-btn_highlight.app-btn-blue-augment, .app-btn_highlight.app-btn-blue-reinforcement, .app-btn_highlight.app-btn-blue-inventory-1, .app-btn_highlight.app-btn-blue-inventory-2, .app-btn_highlight.app-btn-blue-1-2, .app-btn_highlight.app-btn-silver-1, .app-btn_highlight.app-btn-silver-2, .app-btn_highlight.app-btn-silver-3, .app-btn_highlight.app-btn-silver-4, .app-btn_highlight.app-btn-silver-5, .app-btn_highlight.app-btn-red-1, .app-btn_highlight.app-btn-red-1-2, .app-btn_highlight.app-btn-red-2, .app-btn_highlight.app-btn-red-3, .app-btn_highlight.app-btn-red-4, .app-btn_highlight.app-btn-red-attack, .app-btn_highlight.app-btn-green-1 {
  color: #dfa94e;
  text-shadow: 0 0 16px #ff0000;
}
.app-btn-standard .btn-disabled-info, .app-btn-max .btn-disabled-info, .app-btn-swap .btn-disabled-info, .app-btn-copy .btn-disabled-info, .app-btn-exit .btn-disabled-info, .app-btn-link .btn-disabled-info, .app-btn-view-mode-icon .btn-disabled-info, .app-btn-view-mode-list .btn-disabled-info, .app-btn-filter .btn-disabled-info, .app-btn-trash .btn-disabled-info, .app-btn-stop .btn-disabled-info, .app-btn-refresh .btn-disabled-info, .app-btn-key .btn-disabled-info, .app-btn-thunderbolt .btn-disabled-info, .app-btn-token-banner-1 .btn-disabled-info, .app-btn-token-banner-2 .btn-disabled-info, .app-btn-escape .btn-disabled-info, .app-btn-blue-1 .btn-disabled-info, .app-btn-blue-2 .btn-disabled-info, .app-btn-blue-2-show-list .btn-disabled-info, .app-btn-blue-3 .btn-disabled-info, .app-btn-blue-4-2 .btn-disabled-info, .app-btn-blue-4-1 .btn-disabled-info, .app-btn-blue-inventory .btn-disabled-info, .app-btn-blue-equip .btn-disabled-info, .app-btn-blue-forge .btn-disabled-info, .app-btn-blue-marketplace .btn-disabled-info, .app-btn-blue-salvage .btn-disabled-info, .app-btn-blue-augment .btn-disabled-info, .app-btn-blue-reinforcement .btn-disabled-info, .app-btn-blue-inventory-1 .btn-disabled-info, .app-btn-blue-inventory-2 .btn-disabled-info, .app-btn-blue-1-2 .btn-disabled-info, .app-btn-silver-1 .btn-disabled-info, .app-btn-silver-2 .btn-disabled-info, .app-btn-silver-3 .btn-disabled-info, .app-btn-silver-4 .btn-disabled-info, .app-btn-silver-5 .btn-disabled-info, .app-btn-red-1 .btn-disabled-info, .app-btn-red-1-2 .btn-disabled-info, .app-btn-red-2 .btn-disabled-info, .app-btn-red-3 .btn-disabled-info, .app-btn-red-4 .btn-disabled-info, .app-btn-red-attack .btn-disabled-info, .app-btn-green-1 .btn-disabled-info {
  display: none;
}
.app-btn-standard.disabled, .disabled.app-btn-max, .disabled.app-btn-swap, .disabled.app-btn-copy, .disabled.app-btn-exit, .disabled.app-btn-link, .disabled.app-btn-view-mode-icon, .disabled.app-btn-view-mode-list, .disabled.app-btn-filter, .disabled.app-btn-trash, .disabled.app-btn-stop, .disabled.app-btn-refresh, .disabled.app-btn-key, .disabled.app-btn-thunderbolt, .disabled.app-btn-token-banner-1, .disabled.app-btn-token-banner-2, .disabled.app-btn-escape, .disabled.app-btn-blue-1, .disabled.app-btn-blue-2, .disabled.app-btn-blue-2-show-list, .disabled.app-btn-blue-3, .disabled.app-btn-blue-4-2, .disabled.app-btn-blue-4-1, .disabled.app-btn-blue-inventory, .disabled.app-btn-blue-equip, .disabled.app-btn-blue-forge, .disabled.app-btn-blue-marketplace, .disabled.app-btn-blue-salvage, .disabled.app-btn-blue-augment, .disabled.app-btn-blue-reinforcement, .disabled.app-btn-blue-inventory-1, .disabled.app-btn-blue-inventory-2, .disabled.app-btn-blue-1-2, .disabled.app-btn-silver-1, .disabled.app-btn-silver-2, .disabled.app-btn-silver-3, .disabled.app-btn-silver-4, .disabled.app-btn-silver-5, .disabled.app-btn-red-1, .disabled.app-btn-red-1-2, .disabled.app-btn-red-2, .disabled.app-btn-red-3, .disabled.app-btn-red-4, .disabled.app-btn-red-attack, .disabled.app-btn-green-1, .app-btn-standard:disabled, .app-btn-max:disabled, .app-btn-swap:disabled, .app-btn-copy:disabled, .app-btn-exit:disabled, .app-btn-link:disabled, .app-btn-view-mode-icon:disabled, .app-btn-view-mode-list:disabled, .app-btn-filter:disabled, .app-btn-trash:disabled, .app-btn-stop:disabled, .app-btn-refresh:disabled, .app-btn-key:disabled, .app-btn-thunderbolt:disabled, .app-btn-token-banner-1:disabled, .app-btn-token-banner-2:disabled, .app-btn-escape:disabled, .app-btn-blue-1:disabled, .app-btn-blue-2:disabled, .app-btn-blue-2-show-list:disabled, .app-btn-blue-3:disabled, .app-btn-blue-4-2:disabled, .app-btn-blue-4-1:disabled, .app-btn-blue-inventory:disabled, .app-btn-blue-equip:disabled, .app-btn-blue-forge:disabled, .app-btn-blue-marketplace:disabled, .app-btn-blue-salvage:disabled, .app-btn-blue-augment:disabled, .app-btn-blue-reinforcement:disabled, .app-btn-blue-inventory-1:disabled, .app-btn-blue-inventory-2:disabled, .app-btn-blue-1-2:disabled, .app-btn-silver-1:disabled, .app-btn-silver-2:disabled, .app-btn-silver-3:disabled, .app-btn-silver-4:disabled, .app-btn-silver-5:disabled, .app-btn-red-1:disabled, .app-btn-red-1-2:disabled, .app-btn-red-2:disabled, .app-btn-red-3:disabled, .app-btn-red-4:disabled, .app-btn-red-attack:disabled, .app-btn-green-1:disabled, .app-btn-standard:active.disabled, .app-btn-max:active.disabled, .app-btn-swap:active.disabled, .app-btn-copy:active.disabled, .app-btn-exit:active.disabled, .app-btn-link:active.disabled, .app-btn-view-mode-icon:active.disabled, .app-btn-view-mode-list:active.disabled, .app-btn-filter:active.disabled, .app-btn-trash:active.disabled, .app-btn-stop:active.disabled, .app-btn-refresh:active.disabled, .app-btn-key:active.disabled, .app-btn-thunderbolt:active.disabled, .app-btn-token-banner-1:active.disabled, .app-btn-token-banner-2:active.disabled, .app-btn-escape:active.disabled, .app-btn-blue-1:active.disabled, .app-btn-blue-2:active.disabled, .app-btn-blue-2-show-list:active.disabled, .app-btn-blue-3:active.disabled, .app-btn-blue-4-2:active.disabled, .app-btn-blue-4-1:active.disabled, .app-btn-blue-inventory:active.disabled, .app-btn-blue-equip:active.disabled, .app-btn-blue-forge:active.disabled, .app-btn-blue-marketplace:active.disabled, .app-btn-blue-salvage:active.disabled, .app-btn-blue-augment:active.disabled, .app-btn-blue-reinforcement:active.disabled, .app-btn-blue-inventory-1:active.disabled, .app-btn-blue-inventory-2:active.disabled, .app-btn-blue-1-2:active.disabled, .app-btn-silver-1:active.disabled, .app-btn-silver-2:active.disabled, .app-btn-silver-3:active.disabled, .app-btn-silver-4:active.disabled, .app-btn-silver-5:active.disabled, .app-btn-red-1:active.disabled, .app-btn-red-1-2:active.disabled, .app-btn-red-2:active.disabled, .app-btn-red-3:active.disabled, .app-btn-red-4:active.disabled, .app-btn-red-attack:active.disabled, .app-btn-green-1:active.disabled {
  color: #796b5d;
}
.app-btn-standard.disabled .btn-disabled-info, .disabled.app-btn-max .btn-disabled-info, .disabled.app-btn-swap .btn-disabled-info, .disabled.app-btn-copy .btn-disabled-info, .disabled.app-btn-exit .btn-disabled-info, .disabled.app-btn-link .btn-disabled-info, .disabled.app-btn-view-mode-icon .btn-disabled-info, .disabled.app-btn-view-mode-list .btn-disabled-info, .disabled.app-btn-filter .btn-disabled-info, .disabled.app-btn-trash .btn-disabled-info, .disabled.app-btn-stop .btn-disabled-info, .disabled.app-btn-refresh .btn-disabled-info, .disabled.app-btn-key .btn-disabled-info, .disabled.app-btn-thunderbolt .btn-disabled-info, .disabled.app-btn-token-banner-1 .btn-disabled-info, .disabled.app-btn-token-banner-2 .btn-disabled-info, .disabled.app-btn-escape .btn-disabled-info, .disabled.app-btn-blue-1 .btn-disabled-info, .disabled.app-btn-blue-2 .btn-disabled-info, .disabled.app-btn-blue-2-show-list .btn-disabled-info, .disabled.app-btn-blue-3 .btn-disabled-info, .disabled.app-btn-blue-4-2 .btn-disabled-info, .disabled.app-btn-blue-4-1 .btn-disabled-info, .disabled.app-btn-blue-inventory .btn-disabled-info, .disabled.app-btn-blue-equip .btn-disabled-info, .disabled.app-btn-blue-forge .btn-disabled-info, .disabled.app-btn-blue-marketplace .btn-disabled-info, .disabled.app-btn-blue-salvage .btn-disabled-info, .disabled.app-btn-blue-augment .btn-disabled-info, .disabled.app-btn-blue-reinforcement .btn-disabled-info, .disabled.app-btn-blue-inventory-1 .btn-disabled-info, .disabled.app-btn-blue-inventory-2 .btn-disabled-info, .disabled.app-btn-blue-1-2 .btn-disabled-info, .disabled.app-btn-silver-1 .btn-disabled-info, .disabled.app-btn-silver-2 .btn-disabled-info, .disabled.app-btn-silver-3 .btn-disabled-info, .disabled.app-btn-silver-4 .btn-disabled-info, .disabled.app-btn-silver-5 .btn-disabled-info, .disabled.app-btn-red-1 .btn-disabled-info, .disabled.app-btn-red-1-2 .btn-disabled-info, .disabled.app-btn-red-2 .btn-disabled-info, .disabled.app-btn-red-3 .btn-disabled-info, .disabled.app-btn-red-4 .btn-disabled-info, .disabled.app-btn-red-attack .btn-disabled-info, .disabled.app-btn-green-1 .btn-disabled-info, .app-btn-standard:disabled .btn-disabled-info, .app-btn-max:disabled .btn-disabled-info, .app-btn-swap:disabled .btn-disabled-info, .app-btn-copy:disabled .btn-disabled-info, .app-btn-exit:disabled .btn-disabled-info, .app-btn-link:disabled .btn-disabled-info, .app-btn-view-mode-icon:disabled .btn-disabled-info, .app-btn-view-mode-list:disabled .btn-disabled-info, .app-btn-filter:disabled .btn-disabled-info, .app-btn-trash:disabled .btn-disabled-info, .app-btn-stop:disabled .btn-disabled-info, .app-btn-refresh:disabled .btn-disabled-info, .app-btn-key:disabled .btn-disabled-info, .app-btn-thunderbolt:disabled .btn-disabled-info, .app-btn-token-banner-1:disabled .btn-disabled-info, .app-btn-token-banner-2:disabled .btn-disabled-info, .app-btn-escape:disabled .btn-disabled-info, .app-btn-blue-1:disabled .btn-disabled-info, .app-btn-blue-2:disabled .btn-disabled-info, .app-btn-blue-2-show-list:disabled .btn-disabled-info, .app-btn-blue-3:disabled .btn-disabled-info, .app-btn-blue-4-2:disabled .btn-disabled-info, .app-btn-blue-4-1:disabled .btn-disabled-info, .app-btn-blue-inventory:disabled .btn-disabled-info, .app-btn-blue-equip:disabled .btn-disabled-info, .app-btn-blue-forge:disabled .btn-disabled-info, .app-btn-blue-marketplace:disabled .btn-disabled-info, .app-btn-blue-salvage:disabled .btn-disabled-info, .app-btn-blue-augment:disabled .btn-disabled-info, .app-btn-blue-reinforcement:disabled .btn-disabled-info, .app-btn-blue-inventory-1:disabled .btn-disabled-info, .app-btn-blue-inventory-2:disabled .btn-disabled-info, .app-btn-blue-1-2:disabled .btn-disabled-info, .app-btn-silver-1:disabled .btn-disabled-info, .app-btn-silver-2:disabled .btn-disabled-info, .app-btn-silver-3:disabled .btn-disabled-info, .app-btn-silver-4:disabled .btn-disabled-info, .app-btn-silver-5:disabled .btn-disabled-info, .app-btn-red-1:disabled .btn-disabled-info, .app-btn-red-1-2:disabled .btn-disabled-info, .app-btn-red-2:disabled .btn-disabled-info, .app-btn-red-3:disabled .btn-disabled-info, .app-btn-red-4:disabled .btn-disabled-info, .app-btn-red-attack:disabled .btn-disabled-info, .app-btn-green-1:disabled .btn-disabled-info, .app-btn-standard:active.disabled .btn-disabled-info, .app-btn-max:active.disabled .btn-disabled-info, .app-btn-swap:active.disabled .btn-disabled-info, .app-btn-copy:active.disabled .btn-disabled-info, .app-btn-exit:active.disabled .btn-disabled-info, .app-btn-link:active.disabled .btn-disabled-info, .app-btn-view-mode-icon:active.disabled .btn-disabled-info, .app-btn-view-mode-list:active.disabled .btn-disabled-info, .app-btn-filter:active.disabled .btn-disabled-info, .app-btn-trash:active.disabled .btn-disabled-info, .app-btn-stop:active.disabled .btn-disabled-info, .app-btn-refresh:active.disabled .btn-disabled-info, .app-btn-key:active.disabled .btn-disabled-info, .app-btn-thunderbolt:active.disabled .btn-disabled-info, .app-btn-token-banner-1:active.disabled .btn-disabled-info, .app-btn-token-banner-2:active.disabled .btn-disabled-info, .app-btn-escape:active.disabled .btn-disabled-info, .app-btn-blue-1:active.disabled .btn-disabled-info, .app-btn-blue-2:active.disabled .btn-disabled-info, .app-btn-blue-2-show-list:active.disabled .btn-disabled-info, .app-btn-blue-3:active.disabled .btn-disabled-info, .app-btn-blue-4-2:active.disabled .btn-disabled-info, .app-btn-blue-4-1:active.disabled .btn-disabled-info, .app-btn-blue-inventory:active.disabled .btn-disabled-info, .app-btn-blue-equip:active.disabled .btn-disabled-info, .app-btn-blue-forge:active.disabled .btn-disabled-info, .app-btn-blue-marketplace:active.disabled .btn-disabled-info, .app-btn-blue-salvage:active.disabled .btn-disabled-info, .app-btn-blue-augment:active.disabled .btn-disabled-info, .app-btn-blue-reinforcement:active.disabled .btn-disabled-info, .app-btn-blue-inventory-1:active.disabled .btn-disabled-info, .app-btn-blue-inventory-2:active.disabled .btn-disabled-info, .app-btn-blue-1-2:active.disabled .btn-disabled-info, .app-btn-silver-1:active.disabled .btn-disabled-info, .app-btn-silver-2:active.disabled .btn-disabled-info, .app-btn-silver-3:active.disabled .btn-disabled-info, .app-btn-silver-4:active.disabled .btn-disabled-info, .app-btn-silver-5:active.disabled .btn-disabled-info, .app-btn-red-1:active.disabled .btn-disabled-info, .app-btn-red-1-2:active.disabled .btn-disabled-info, .app-btn-red-2:active.disabled .btn-disabled-info, .app-btn-red-3:active.disabled .btn-disabled-info, .app-btn-red-4:active.disabled .btn-disabled-info, .app-btn-red-attack:active.disabled .btn-disabled-info, .app-btn-green-1:active.disabled .btn-disabled-info {
  display: flex;
  opacity: 1;
}

.app-btn-huge, .app-btn-red-huge-1, .app-btn-red-huge-2, .app-btn-red-huge-3 {
  height: 150px;
  font-family: "Sacra", serif;
  color: #c4ad8e;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.75), 0 0 5px #000000, 3px 3px 4px rgba(0, 0, 0, 0.52);
}
.app-btn-huge.app-btn_active, .app-btn_active.app-btn-red-huge-1, .app-btn_active.app-btn-red-huge-2, .app-btn_active.app-btn-red-huge-3, .app-btn-huge.app-btn_highlight, .app-btn_highlight.app-btn-red-huge-1, .app-btn_highlight.app-btn-red-huge-2, .app-btn_highlight.app-btn-red-huge-3 {
  color: #dfa94e;
  text-shadow: 0 0 24px #ff0000;
}
.app-btn-huge.disabled, .disabled.app-btn-red-huge-1, .disabled.app-btn-red-huge-2, .disabled.app-btn-red-huge-3, .app-btn-huge:disabled, .app-btn-red-huge-1:disabled, .app-btn-red-huge-2:disabled, .app-btn-red-huge-3:disabled, .app-btn-huge:active.disabled {
  color: #796b5d;
}

.app-btn-biggest_font-size, .app-btn-green-1 {
  font-size: 76px;
}

.app-btn-huge_font-size, .app-btn-red-huge-2 {
  font-size: 56px;
}

.app-btn-medium-small_font-size, .app-btn-blue-1--medium, .app-btn-red-1--medium, .app-btn-red-2--medium {
  font-size: 30px;
}

.app-btn-medium-large_font-size {
  font-size: 40px;
}

.app-btn-small_font-size, .app-lvl-default-small {
  font-size: 28px;
}

.app-btn-tiny_font-size, .app-lvl-default-tiny {
  font-size: 24px;
}

.app-btn-tiny-small_font-size {
  font-size: 20px;
}

.app-btn-smallest_font-size {
  font-size: 18px;
}

.app-btn-micro_font-size {
  font-size: 16px;
}

.app-btn-medium_font-size, .app-btn-daily, .app-btn-red-huge-1, .app-btn-red-huge-3 {
  font-size: 46px;
}

.app-btn_font-size, .app-lvl-default-medium, .app-btn-max, .app-btn-swap, .app-btn-copy, .app-btn-exit, .app-btn-link, .app-btn-view-mode-icon, .app-btn-view-mode-list, .app-btn-filter, .app-btn-trash, .app-btn-stop, .app-btn-refresh, .app-btn-key, .app-btn-thunderbolt, .app-btn-token-banner-1, .app-btn-token-banner-2, .app-btn-escape, .app-btn-blue-1, .app-btn-blue-2, .app-btn-blue-2-show-list, .app-btn-blue-3, .app-btn-blue-3--medium, .app-btn-blue-4-2, .app-btn-blue-4-1, .app-btn-blue-inventory, .app-btn-blue-inventory--medium, .app-btn-blue-equip, .app-btn-blue-forge, .app-btn-blue-marketplace, .app-btn-blue-salvage, .app-btn-blue-augment, .app-btn-blue-reinforcement, .app-btn-blue-reinforcement--medium, .app-btn-blue-inventory-1, .app-btn-blue-inventory-2, .app-btn-blue-1-2, .app-btn-silver-1, .app-btn-silver-1--medium, .app-btn-silver-2, .app-btn-silver-2--medium, .app-btn-silver-3, .app-btn-silver-3--medium, .app-btn-silver-4, .app-btn-silver-5, .app-btn-red-1:not(.app-btn-red-1--medium), .app-btn-red-1-2, .app-btn-red-2, .app-btn-red-3, .app-btn-red-3--medium, .app-btn-red-4, .app-btn-red-huge-1--medium, .app-btn-red-huge-2--medium, .app-btn-red-huge-3--medium, .app-btn-red-attack, .app-btn-red-attack--medium {
  font-size: 35px;
}

::ng-deep .is-metamask .app-btn-biggest_font-size, ::ng-deep .is-metamask .app-btn-green-1 {
  font-size: 28px;
}
::ng-deep .is-metamask .app-btn-huge_font-size, ::ng-deep .is-metamask .app-btn-red-huge-2 {
  font-size: 20px;
}
::ng-deep .is-metamask .app-btn-medium-small_font-size, ::ng-deep .is-metamask .app-btn-blue-1--medium, ::ng-deep .is-metamask .app-btn-red-1--medium, ::ng-deep .is-metamask .app-btn-red-2--medium {
  font-size: 11px;
}
::ng-deep .is-metamask .app-btn-medium-large_font-size {
  font-size: 15px;
}
::ng-deep .is-metamask .app-btn-small_font-size, ::ng-deep .is-metamask .app-lvl-default-small {
  font-size: 12px;
}
::ng-deep .is-metamask .app-btn-medium_font-size, ::ng-deep .is-metamask .app-btn-daily, ::ng-deep .is-metamask .app-btn-red-huge-1, ::ng-deep .is-metamask .app-btn-red-huge-3 {
  font-size: 16px;
}
::ng-deep .is-metamask .app-btn-tiny_font-size, ::ng-deep .is-metamask .app-lvl-default-tiny {
  font-size: 10px;
}
::ng-deep .is-metamask .app-btn-tiny-small_font-size {
  font-size: 9px;
}
::ng-deep .is-metamask .app-btn-smallest_font-size {
  font-size: 8px;
}
::ng-deep .is-metamask .app-btn-micro_font-size {
  font-size: 7px;
}
::ng-deep .is-metamask .app-btn_font-size, ::ng-deep .is-metamask .app-lvl-default-medium, ::ng-deep .is-metamask .app-btn-max, ::ng-deep .is-metamask .app-btn-swap, ::ng-deep .is-metamask .app-btn-copy, ::ng-deep .is-metamask .app-btn-exit, ::ng-deep .is-metamask .app-btn-link, ::ng-deep .is-metamask .app-btn-view-mode-icon, ::ng-deep .is-metamask .app-btn-view-mode-list, ::ng-deep .is-metamask .app-btn-filter, ::ng-deep .is-metamask .app-btn-trash, ::ng-deep .is-metamask .app-btn-stop, ::ng-deep .is-metamask .app-btn-refresh, ::ng-deep .is-metamask .app-btn-key, ::ng-deep .is-metamask .app-btn-thunderbolt, ::ng-deep .is-metamask .app-btn-token-banner-1, ::ng-deep .is-metamask .app-btn-token-banner-2, ::ng-deep .is-metamask .app-btn-escape, ::ng-deep .is-metamask .app-btn-blue-1, ::ng-deep .is-metamask .app-btn-blue-2, ::ng-deep .is-metamask .app-btn-blue-2-show-list, ::ng-deep .is-metamask .app-btn-blue-3, ::ng-deep .is-metamask .app-btn-blue-3--medium, ::ng-deep .is-metamask .app-btn-blue-4-2, ::ng-deep .is-metamask .app-btn-blue-4-1, ::ng-deep .is-metamask .app-btn-blue-inventory, ::ng-deep .is-metamask .app-btn-blue-inventory--medium, ::ng-deep .is-metamask .app-btn-blue-equip, ::ng-deep .is-metamask .app-btn-blue-forge, ::ng-deep .is-metamask .app-btn-blue-marketplace, ::ng-deep .is-metamask .app-btn-blue-salvage, ::ng-deep .is-metamask .app-btn-blue-augment, ::ng-deep .is-metamask .app-btn-blue-reinforcement, ::ng-deep .is-metamask .app-btn-blue-reinforcement--medium, ::ng-deep .is-metamask .app-btn-blue-inventory-1, ::ng-deep .is-metamask .app-btn-blue-inventory-2, ::ng-deep .is-metamask .app-btn-blue-1-2, ::ng-deep .is-metamask .app-btn-silver-1, ::ng-deep .is-metamask .app-btn-silver-1--medium, ::ng-deep .is-metamask .app-btn-silver-2, ::ng-deep .is-metamask .app-btn-silver-2--medium, ::ng-deep .is-metamask .app-btn-silver-3, ::ng-deep .is-metamask .app-btn-silver-3--medium, ::ng-deep .is-metamask .app-btn-silver-4, ::ng-deep .is-metamask .app-btn-silver-5, ::ng-deep .is-metamask .app-btn-red-1:not(.app-btn-red-1--medium), ::ng-deep .is-metamask .app-btn-red-1-2, ::ng-deep .is-metamask .app-btn-red-2, ::ng-deep .is-metamask .app-btn-red-3, ::ng-deep .is-metamask .app-btn-red-3--medium, ::ng-deep .is-metamask .app-btn-red-4, ::ng-deep .is-metamask .app-btn-red-huge-1--medium, ::ng-deep .is-metamask .app-btn-red-huge-2--medium, ::ng-deep .is-metamask .app-btn-red-huge-3--medium, ::ng-deep .is-metamask .app-btn-red-attack, ::ng-deep .is-metamask .app-btn-red-attack--medium {
  font-size: 14px;
}

.is-metamask .app-btn-biggest_font-size, .is-metamask .app-btn-green-1 {
  font-size: 28px;
}

.is-metamask .app-btn-huge_font-size, .is-metamask .app-btn-red-huge-2 {
  font-size: 20px;
}

.is-metamask .app-btn-medium-small_font-size, .is-metamask .app-btn-blue-1--medium, .is-metamask .app-btn-red-1--medium, .is-metamask .app-btn-red-2--medium {
  font-size: 11px;
}

.is-metamask .app-btn-medium-large_font-size {
  font-size: 15px;
}

.is-metamask .app-btn-small_font-size, .is-metamask .app-lvl-default-small {
  font-size: 12px;
}

.is-metamask .app-btn_font-size, .is-metamask .app-lvl-default-medium, .is-metamask .app-btn-max, .is-metamask .app-btn-swap, .is-metamask .app-btn-copy, .is-metamask .app-btn-exit, .is-metamask .app-btn-link, .is-metamask .app-btn-view-mode-icon, .is-metamask .app-btn-view-mode-list, .is-metamask .app-btn-filter, .is-metamask .app-btn-trash, .is-metamask .app-btn-stop, .is-metamask .app-btn-refresh, .is-metamask .app-btn-key, .is-metamask .app-btn-thunderbolt, .is-metamask .app-btn-token-banner-1, .is-metamask .app-btn-token-banner-2, .is-metamask .app-btn-escape, .is-metamask .app-btn-blue-1, .is-metamask .app-btn-blue-2, .is-metamask .app-btn-blue-2-show-list, .is-metamask .app-btn-blue-3, .is-metamask .app-btn-blue-3--medium, .is-metamask .app-btn-blue-4-2, .is-metamask .app-btn-blue-4-1, .is-metamask .app-btn-blue-inventory, .is-metamask .app-btn-blue-inventory--medium, .is-metamask .app-btn-blue-equip, .is-metamask .app-btn-blue-forge, .is-metamask .app-btn-blue-marketplace, .is-metamask .app-btn-blue-salvage, .is-metamask .app-btn-blue-augment, .is-metamask .app-btn-blue-reinforcement, .is-metamask .app-btn-blue-reinforcement--medium, .is-metamask .app-btn-blue-inventory-1, .is-metamask .app-btn-blue-inventory-2, .is-metamask .app-btn-blue-1-2, .is-metamask .app-btn-silver-1, .is-metamask .app-btn-silver-1--medium, .is-metamask .app-btn-silver-2, .is-metamask .app-btn-silver-2--medium, .is-metamask .app-btn-silver-3, .is-metamask .app-btn-silver-3--medium, .is-metamask .app-btn-silver-4, .is-metamask .app-btn-silver-5, .is-metamask .app-btn-red-1:not(.app-btn-red-1--medium), .is-metamask .app-btn-red-1-2, .is-metamask .app-btn-red-2, .is-metamask .app-btn-red-3, .is-metamask .app-btn-red-3--medium, .is-metamask .app-btn-red-4, .is-metamask .app-btn-red-huge-1--medium, .is-metamask .app-btn-red-huge-2--medium, .is-metamask .app-btn-red-huge-3--medium, .is-metamask .app-btn-red-attack, .is-metamask .app-btn-red-attack--medium {
  font-size: 14px;
}

.is-metamask .app-btn-medium_font-size, .is-metamask .app-btn-daily, .is-metamask .app-btn-red-huge-1, .is-metamask .app-btn-red-huge-3 {
  font-size: 16px;
}

.is-metamask .app-btn-tiny_font-size, .is-metamask .app-lvl-default-tiny {
  font-size: 10px;
}

.is-metamask .app-btn-tiny-small_font-size {
  font-size: 9px;
}

.is-metamask .app-btn-micro_font-size {
  font-size: 7px;
}

.app-btns-row > button:not(:first-child) {
  margin-left: 0;
}
.app-btns-row > button:not(:last-child) {
  margin-right: 0;
}

.app-btns-col > button:not(:first-child) {
  margin-top: 0;
}
.app-btns-col > button:not(:last-child) {
  margin-bottom: 0;
}

.shadow__button, .app-btn-max, .app-btn-swap, .app-btn-copy, .app-btn-exit, .app-btn-link, .app-btn-view-mode-icon, .app-btn-view-mode-list, .app-btn-filter, .app-btn-trash, .app-btn-stop, .app-btn-refresh, .app-btn-key, .app-btn-thunderbolt, .app-btn-token-banner-1, .app-btn-token-banner-2, .app-btn-escape, .app-btn-square-arrow-down-frameless, .app-btn-square-arrow-up-frameless, .app-btn-square-arrow-down, .app-btn-square-arrow-up, .app-btn-square-arrow-left, .app-btn-square-arrow-right, .app-btn-square-arrow-left-huge, .app-btn-square-arrow-right-huge, .app-btn-square-cross, .app-btn-cross-light, .app-btn-square-plus, .app-btn-square-minus, .app-btn-square-down, .app-btn-square-search, .app-btn-square-list, .app-btn-square-frame, .app-btn-square-settings, .app-btn-blue-1, .app-btn-blue-2, .app-btn-blue-2-show-list, .app-btn-blue-3, .app-btn-blue-4-2, .app-btn-blue-4-1, .app-btn-blue-inventory, .app-btn-blue-equip, .app-btn-blue-forge, .app-btn-blue-marketplace, .app-btn-blue-salvage, .app-btn-blue-augment, .app-btn-blue-reinforcement, .app-btn-blue-inventory-1, .app-btn-blue-inventory-2, .app-btn-blue-1-2, .app-btn-silver-1, .app-btn-silver-2, .app-btn-silver-3, .app-btn-silver-4, .app-btn-silver-5, .app-btn-red-1, .app-btn-red-1-2, .app-btn-red-2, .app-btn-red-3, .app-btn-red-4, .app-btn-red-huge-1, .app-btn-red-huge-2, .app-btn-red-huge-3, .app-btn-red-attack, .app-btn-green-1 {
  filter: drop-shadow(12px 15px 10px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
}

.shadow__icon {
  filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
}

.app-title {
  font-family: "Sacra", serif;
  font-size: 56px;
  color: #c4ad8e;
  text-align: center;
  line-height: 0.9;
}

.app-subtitle {
  color: #dfa94e;
}

.app-input {
  height: 60px;
  padding: 0 20px;
  font-family: "Cambria", sans-serif;
  color: inherit;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
}
.app-input--small {
  width: 92px;
  background-image: url("/assets/images/ui/elements/input/small.avif");
}
.app-input--small:disabled {
  background-image: url("/assets/images/ui/elements/input/small_disabled.avif");
  color: #796b5d;
}
.app-input--medium {
  width: 154px;
  background-image: url("/assets/images/ui/elements/input/medium.avif");
}
.app-input--medium:disabled {
  background-image: url("/assets/images/ui/elements/input/medium_disabled.avif");
  color: #796b5d;
}
.app-input--large {
  width: 295px;
  background-image: url("/assets/images/ui/elements/input/large.avif");
}
.app-input--large:disabled {
  background-image: url("/assets/images/ui/elements/input/large_disabled.avif");
  color: #796b5d;
}
.app-input--huge {
  width: 381px;
  background-image: url("/assets/images/ui/elements/input/huge.avif");
}
.app-input--huge:disabled {
  background-image: url("/assets/images/ui/elements/input/huge_disabled.avif");
  color: #796b5d;
}
.app-input--nickname {
  width: 850px;
  height: 93px;
  background-image: url("/assets/images/ui/elements/input/nickname.avif");
}
.app-input--nickname:disabled {
  background-image: url("/assets/images/ui/elements/input/nickname_disabled.avif");
  color: #796b5d;
}

.app-text-warning {
  color: #dfa94e;
}

.app-text-error {
  color: #dc3e3e;
}

.app-text-warning--shadow {
  text-shadow: 0 0 16px #ff0000;
}

.app-text-yellow-fire--shadow {
  text-shadow: 0 0 16px #dfa94e;
}

.text-shadow, .app-btn-daily:active:not(:disabled), .title-b, .title-a, .app-btn-daily {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.75), 0 0 5px #000000, 3px 3px 4px rgba(0, 0, 0, 0.52);
}

.text-bar-shadow {
  text-shadow: 0 0 8px #000000, 0 0 5px #000000, 0 0 5px #000000, 0 0 8px #000000, 0 0 3px #000000, 0 0 2px #000000;
}

.text-shadow-blue {
  text-shadow: 0 0 8px rgba(89, 118, 255, 0.45);
}

.title-a, .app-btn-daily {
  font-family: "Sacra", serif;
}

.title-b {
  font-family: "Cambria", sans-serif;
}

.text-shadow-positive, .app-btn-daily:hover:not(:disabled):not(:active), .app-btn-silver-4.app-btn_active-jackpot, .app-btn-silver-5.app-btn_active-jackpot {
  text-shadow: 0 0 10px #ff6b00;
}

.text-shadow-negative {
  text-shadow: 0 0 10px #ff0000;
}

.text-speech {
  color: #accdb9;
}

.text-no-wrap {
  white-space: nowrap;
}

.app-btn-green-1 {
  width: 807px;
  height: 362px;
  margin: 0 -68px;
  background-image: url("/assets/images/ui/buttons/green/1/default.avif");
}
.app-btn-green-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/green/1/active.avif"), url("/assets/images/ui/buttons/green/1/default.avif");
}
.app-btn-green-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/green/1/pressed.avif");
}
.app-btn-green-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/green/1/active.avif"), url("/assets/images/ui/buttons/green/1/pressed.avif");
}
.app-btn-green-1.disabled, .app-btn-green-1:disabled, .app-btn-green-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/green/1/disabled.avif");
}

.app-btn-red-1 {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/red/1/default.avif");
}
.app-btn-red-1--medium {
  width: 180px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-red-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/1/active.avif"), url("/assets/images/ui/buttons/red/1/default.avif");
}
.app-btn-red-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/1/pressed.avif");
}
.app-btn-red-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/1/active.avif"), url("/assets/images/ui/buttons/red/1/pressed.avif");
}
.app-btn-red-1.disabled, .app-btn-red-1:disabled, .app-btn-red-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/1/disabled.avif");
}

.app-btn-red-1-2 {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/red/1-2/default.avif");
}
.app-btn-red-1-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/1-2/active.avif"), url("/assets/images/ui/buttons/red/1-2/default.avif");
}
.app-btn-red-1-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/1-2/pressed.avif");
}
.app-btn-red-1-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/1-2/active.avif"), url("/assets/images/ui/buttons/red/1-2/pressed.avif");
}
.app-btn-red-1-2.disabled, .app-btn-red-1-2:disabled, .app-btn-red-1-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/1-2/disabled.avif");
}

.app-btn-red-2 {
  width: 367px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/red/2/default.avif");
}
.app-btn-red-2--medium {
  width: 280px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-red-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/2/active.avif"), url("/assets/images/ui/buttons/red/2/default.avif");
}
.app-btn-red-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/2/pressed.avif");
}
.app-btn-red-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/2/active.avif"), url("/assets/images/ui/buttons/red/2/pressed.avif");
}
.app-btn-red-2.disabled, .app-btn-red-2:disabled, .app-btn-red-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/2/disabled.avif");
}

.app-btn-red-3 {
  width: 446px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/red/3/default.avif");
}
.app-btn-red-3--medium {
  width: 380px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-red-3.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/3/active.avif"), url("/assets/images/ui/buttons/red/3/default.avif");
}
.app-btn-red-3:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/3/pressed.avif");
}
.app-btn-red-3:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/3/active.avif"), url("/assets/images/ui/buttons/red/3/pressed.avif");
}
.app-btn-red-3.disabled, .app-btn-red-3:disabled, .app-btn-red-3:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/3/disabled.avif");
}

.app-btn-red-4 {
  width: 513px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/red/4/default.avif");
}
.app-btn-red-4.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/4/active.avif"), url("/assets/images/ui/buttons/red/4/default.avif");
}
.app-btn-red-4:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/4/pressed.avif");
}
.app-btn-red-4:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/4/active.avif"), url("/assets/images/ui/buttons/red/4/pressed.avif");
}
.app-btn-red-4.disabled, .app-btn-red-4:disabled, .app-btn-red-4:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/4/disabled.avif");
}

.app-btn-red-huge-1 {
  width: 442px;
  margin: -13px -18px;
  background-image: url("/assets/images/ui/buttons/red/huge-1/default.avif");
}
.app-btn-red-huge-1--medium {
  width: 309px;
  height: 105px;
  background-size: 100% 100%;
}
.app-btn-red-huge-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-1/active.avif"), url("/assets/images/ui/buttons/red/huge-1/default.avif");
}
.app-btn-red-huge-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/huge-1/pressed.avif");
}
.app-btn-red-huge-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-1/active.avif"), url("/assets/images/ui/buttons/red/huge-1/pressed.avif");
}
.app-btn-red-huge-1.disabled, .app-btn-red-huge-1:disabled, .app-btn-red-huge-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/huge-1/disabled.avif");
}

.app-btn-red-huge-2 {
  width: 605px;
  margin: -13px -18px;
  background-image: url("/assets/images/ui/buttons/red/huge-2/default.avif");
}
.app-btn-red-huge-2--medium {
  width: 484px;
  height: 120px;
  background-size: 100% 100%;
}
.app-btn-red-huge-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-2/active.avif"), url("/assets/images/ui/buttons/red/huge-2/default.avif");
}
.app-btn-red-huge-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/huge-2/pressed.avif");
}
.app-btn-red-huge-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-2/active.avif"), url("/assets/images/ui/buttons/red/huge-2/pressed.avif");
}
.app-btn-red-huge-2.disabled, .app-btn-red-huge-2:disabled, .app-btn-red-huge-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/huge-2/disabled.avif");
}

.app-btn-red-huge-3 {
  width: 530px;
  margin: -13px -18px;
  padding-bottom: 12px;
  background-image: url("/assets/images/ui/buttons/red/huge-3/default.avif");
}
.app-btn-red-huge-3--medium {
  width: 370px;
  height: 98px;
  padding-bottom: 0;
  background-size: 370px 98px;
}
.app-btn-red-huge-3.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-3/active.avif"), url("/assets/images/ui/buttons/red/huge-3/default.avif");
}
.app-btn-red-huge-3:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/huge-3/pressed.avif");
}
.app-btn-red-huge-3:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/huge-3/active.avif"), url("/assets/images/ui/buttons/red/huge-3/pressed.avif");
}
.app-btn-red-huge-3.disabled, .app-btn-red-huge-3:disabled, .app-btn-red-huge-3:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/huge-3/disabled.avif");
}

.app-btn-red-attack {
  width: 407px;
  background-image: url("/assets/images/ui/buttons/red/attack/default.avif");
}
.app-btn-red-attack--medium {
  width: 285px;
  height: 66px;
  background-size: 285px 66px;
}
.app-btn-red-attack.app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/attack/active.avif"), url("/assets/images/ui/buttons/red/attack/default.avif");
}
.app-btn-red-attack:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/red/attack/pressed.avif");
}
.app-btn-red-attack:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/red/attack/active.avif"), url("/assets/images/ui/buttons/red/attack/pressed.avif");
}
.app-btn-red-attack.disabled, .app-btn-red-attack:disabled, .app-btn-red-attack:active.disabled {
  background-image: url("/assets/images/ui/buttons/red/attack/disabled.avif");
}

.app-btn-silver-1 {
  width: 229px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/silver/1/default.avif");
}
.app-btn-silver-1--medium {
  width: 170px;
  height: 70px;
  background-size: 100% 70px;
}
.app-btn-silver-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/1/active.avif"), url("/assets/images/ui/buttons/silver/1/default.avif");
}
.app-btn-silver-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/1/pressed.avif");
}
.app-btn-silver-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/1/active.avif"), url("/assets/images/ui/buttons/silver/1/pressed.avif");
}
.app-btn-silver-1.disabled, .app-btn-silver-1:disabled, .app-btn-silver-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/silver/1/disabled.avif");
}

.app-btn-silver-2 {
  width: 261px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/silver/2/default.avif");
}
.app-btn-silver-2--medium {
  width: 220px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-silver-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/2/active.avif"), url("/assets/images/ui/buttons/silver/2/default.avif");
}
.app-btn-silver-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/2/pressed.avif");
}
.app-btn-silver-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/2/active.avif"), url("/assets/images/ui/buttons/silver/2/pressed.avif");
}
.app-btn-silver-2.disabled, .app-btn-silver-2:disabled, .app-btn-silver-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/silver/2/disabled.avif");
}

.app-btn-silver-3 {
  width: 369px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/silver/3/default.avif");
}
.app-btn-silver-3--medium {
  width: 258px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-silver-3.app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/3/active.avif"), url("/assets/images/ui/buttons/silver/3/default.avif");
}
.app-btn-silver-3:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/3/pressed.avif");
}
.app-btn-silver-3:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/3/active.avif"), url("/assets/images/ui/buttons/silver/3/pressed.avif");
}
.app-btn-silver-3.disabled, .app-btn-silver-3:disabled, .app-btn-silver-3:active.disabled {
  background-image: url("/assets/images/ui/buttons/silver/3/disabled.avif");
}

.app-btn-silver-4 {
  width: 514px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/silver/4/default.avif");
}
.app-btn-silver-4.app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/4/active.avif"), url("/assets/images/ui/buttons/silver/4/default.avif");
}
.app-btn-silver-4.app-btn_active-jackpot {
  color: #dfa94e;
  height: 132px;
  padding-bottom: 38px;
  margin-bottom: -38px;
  background-image: url("/assets/images/ui/buttons/silver/4/active-jackpot.avif"), url("/assets/images/ui/buttons/silver/4/default.avif");
}
.app-btn-silver-4.app-btn_active-jackpot:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/4/active-jackpot.avif"), url("/assets/images/ui/buttons/silver/4/default.avif");
}
.app-btn-silver-4:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/4/pressed.avif");
}
.app-btn-silver-4:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/4/active.avif"), url("/assets/images/ui/buttons/silver/4/pressed.avif");
}
.app-btn-silver-4.disabled, .app-btn-silver-4:disabled, .app-btn-silver-4:active.disabled {
  background-image: url("/assets/images/ui/buttons/silver/4/disabled.avif");
}

.app-btn-silver-5 {
  width: 336px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/silver/5/default.avif");
}
.app-btn-silver-5.app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/5/active.avif"), url("/assets/images/ui/buttons/silver/5/default.avif");
}
.app-btn-silver-5.app-btn_active-jackpot {
  color: #dfa94e;
  height: 132px;
  padding-bottom: 38px;
  margin-bottom: -38px;
  background-image: url("/assets/images/ui/buttons/silver/5/active-jackpot.avif"), url("/assets/images/ui/buttons/silver/5/default.avif");
}
.app-btn-silver-5.app-btn_active-jackpot:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/5/active-jackpot.avif"), url("/assets/images/ui/buttons/silver/5/default.avif");
}
.app-btn-silver-5:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/silver/5/pressed.avif");
}
.app-btn-silver-5:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/silver/5/active.avif"), url("/assets/images/ui/buttons/silver/5/pressed.avif");
}
.app-btn-silver-5.disabled, .app-btn-silver-5:disabled, .app-btn-silver-5:active.disabled {
  background-image: url("/assets/images/ui/buttons/silver/5/disabled.avif");
}

.app-btn-blue-1 {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/1/default.avif");
}
.app-btn-blue-1--medium {
  width: 180px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-blue-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/1/active.avif"), url("/assets/images/ui/buttons/blue/1/default.avif");
}
.app-btn-blue-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/1/pressed.avif");
}
.app-btn-blue-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/1/active.avif"), url("/assets/images/ui/buttons/blue/1/pressed.avif");
}
.app-btn-blue-1.disabled, .app-btn-blue-1:disabled, .app-btn-blue-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/1/disabled.avif");
}

.app-btn-blue-2 {
  width: 263px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/2/default.avif");
}
.app-btn-blue-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/2/active.avif"), url("/assets/images/ui/buttons/blue/2/default.avif");
}
.app-btn-blue-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/2/pressed.avif");
}
.app-btn-blue-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/2/active.avif"), url("/assets/images/ui/buttons/blue/2/pressed.avif");
}
.app-btn-blue-2.disabled, .app-btn-blue-2:disabled, .app-btn-blue-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/2/disabled.avif");
}

.app-btn-blue-2-show-list {
  width: 259px;
  margin: 0 0 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/2-show-list/default.avif");
}
.app-btn-blue-2-show-list.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/2-show-list/active.avif"), url("/assets/images/ui/buttons/blue/2-show-list/default.avif");
}
.app-btn-blue-2-show-list:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/2-show-list/pressed.avif");
}
.app-btn-blue-2-show-list:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/2-show-list/active.avif"), url("/assets/images/ui/buttons/blue/2-show-list/pressed.avif");
}
.app-btn-blue-2-show-list.disabled, .app-btn-blue-2-show-list:disabled, .app-btn-blue-2-show-list:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/2-show-list/disabled.avif");
}

.app-btn-blue-3 {
  width: 444px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/3/default.avif");
}
.app-btn-blue-3--medium {
  width: 320px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-blue-3.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/3/active.avif"), url("/assets/images/ui/buttons/blue/3/default.avif");
}
.app-btn-blue-3:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/3/pressed.avif");
}
.app-btn-blue-3:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/3/active.avif"), url("/assets/images/ui/buttons/blue/3/pressed.avif");
}
.app-btn-blue-3.disabled, .app-btn-blue-3:disabled, .app-btn-blue-3:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/3/disabled.avif");
}

.app-btn-blue-4-2 {
  width: 542px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/4-2/default.avif");
}
.app-btn-blue-4-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/4-2/active.avif"), url("/assets/images/ui/buttons/blue/4-2/default.avif");
}
.app-btn-blue-4-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/4-2/pressed.avif");
}
.app-btn-blue-4-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/4-2/active.avif"), url("/assets/images/ui/buttons/blue/4-2/pressed.avif");
}
.app-btn-blue-4-2.disabled, .app-btn-blue-4-2:disabled, .app-btn-blue-4-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/4-2/disabled.avif");
}

.app-btn-blue-4-1 {
  width: 542px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/4-1/default.avif");
}
.app-btn-blue-4-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/4-1/active.avif"), url("/assets/images/ui/buttons/blue/4-1/default.avif");
}
.app-btn-blue-4-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/4-1/pressed.avif");
}
.app-btn-blue-4-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/4-1/active.avif"), url("/assets/images/ui/buttons/blue/4-1/pressed.avif");
}
.app-btn-blue-4-1.disabled, .app-btn-blue-4-1:disabled, .app-btn-blue-4-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/4-1/disabled.avif");
}

.app-btn-blue-inventory {
  width: 333px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/inventory/default.avif");
}
.app-btn-blue-inventory--medium {
  width: 280px;
  height: 78px;
  background-size: 100% 78px;
}
.app-btn-blue-inventory.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory/active.avif"), url("/assets/images/ui/buttons/blue/inventory/default.avif");
}
.app-btn-blue-inventory:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/inventory/pressed.avif");
}
.app-btn-blue-inventory:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory/active.avif"), url("/assets/images/ui/buttons/blue/inventory/pressed.avif");
}
.app-btn-blue-inventory.disabled, .app-btn-blue-inventory:disabled, .app-btn-blue-inventory:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/inventory/disabled.avif");
}

.app-btn-blue-equip {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/default.avif");
}
.app-btn-blue-equip.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/default.avif");
}
.app-btn-blue-equip:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/pressed.avif");
}
.app-btn-blue-equip:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/pressed.avif");
}
.app-btn-blue-equip.disabled, .app-btn-blue-equip:disabled, .app-btn-blue-equip:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/equip/disabled.avif");
}

.app-btn-blue-forge {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/default.avif");
}
.app-btn-blue-forge.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/default.avif");
}
.app-btn-blue-forge:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/pressed.avif");
}
.app-btn-blue-forge:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/pressed.avif");
}
.app-btn-blue-forge.disabled, .app-btn-blue-forge:disabled, .app-btn-blue-forge:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/forge/disabled.avif");
}

.app-btn-blue-marketplace {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/default.avif");
}
.app-btn-blue-marketplace.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/default.avif");
}
.app-btn-blue-marketplace:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/pressed.avif");
}
.app-btn-blue-marketplace:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/pressed.avif");
}
.app-btn-blue-marketplace.disabled, .app-btn-blue-marketplace:disabled, .app-btn-blue-marketplace:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/marketplace/disabled.avif");
}

.app-btn-blue-salvage {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/default.avif");
}
.app-btn-blue-salvage.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/default.avif");
}
.app-btn-blue-salvage:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/pressed.avif");
}
.app-btn-blue-salvage:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/pressed.avif");
}
.app-btn-blue-salvage.disabled, .app-btn-blue-salvage:disabled, .app-btn-blue-salvage:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/salvage/disabled.avif");
}

.app-btn-blue-augment {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/default.avif");
}
.app-btn-blue-augment.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/default.avif");
}
.app-btn-blue-augment:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/pressed.avif");
}
.app-btn-blue-augment:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/active.avif"), url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/pressed.avif");
}
.app-btn-blue-augment.disabled, .app-btn-blue-augment:disabled, .app-btn-blue-augment:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/for-item-info-page-special/augment/disabled.avif");
}

.app-btn-blue-reinforcement {
  width: 407px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/reinforcement/default.avif");
}
.app-btn-blue-reinforcement--medium {
  width: 285px;
  height: 66px;
  margin: 0;
  background-size: 285px 66px;
}
.app-btn-blue-reinforcement.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/reinforcement/active.avif"), url("/assets/images/ui/buttons/blue/reinforcement/default.avif");
}
.app-btn-blue-reinforcement:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/reinforcement/pressed.avif");
}
.app-btn-blue-reinforcement:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/reinforcement/active.avif"), url("/assets/images/ui/buttons/blue/reinforcement/pressed.avif");
}
.app-btn-blue-reinforcement.disabled, .app-btn-blue-reinforcement:disabled, .app-btn-blue-reinforcement:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/reinforcement/disabled.avif");
}

.app-btn-blue-inventory-1 {
  width: 333px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/inventory-1/default.avif");
}
.app-btn-blue-inventory-1.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory-1/active.avif"), url("/assets/images/ui/buttons/blue/inventory-1/default.avif");
}
.app-btn-blue-inventory-1:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/inventory-1/pressed.avif");
}
.app-btn-blue-inventory-1:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory-1/active.avif"), url("/assets/images/ui/buttons/blue/inventory-1/pressed.avif");
}
.app-btn-blue-inventory-1.disabled, .app-btn-blue-inventory-1:disabled, .app-btn-blue-inventory-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/inventory-1/disabled.avif");
}

.app-btn-blue-inventory-2 {
  width: 333px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/inventory-2/default.avif");
}
.app-btn-blue-inventory-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory-2/active.avif"), url("/assets/images/ui/buttons/blue/inventory-2/default.avif");
}
.app-btn-blue-inventory-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/inventory-2/pressed.avif");
}
.app-btn-blue-inventory-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/inventory-2/active.avif"), url("/assets/images/ui/buttons/blue/inventory-2/pressed.avif");
}
.app-btn-blue-inventory-2.disabled, .app-btn-blue-inventory-2:disabled, .app-btn-blue-inventory-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/inventory-2/disabled.avif");
}

.app-btn-blue-1-2 {
  width: 234px;
  margin: 0 -18px;
  background-image: url("/assets/images/ui/buttons/blue/1-2/default.avif");
}
.app-btn-blue-1-2.app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/1-2/active.avif"), url("/assets/images/ui/buttons/blue/1-2/default.avif");
}
.app-btn-blue-1-2:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/blue/1-2/pressed.avif");
}
.app-btn-blue-1-2:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/blue/1-2/active.avif"), url("/assets/images/ui/buttons/blue/1-2/pressed.avif");
}
.app-btn-blue-1-2.disabled, .app-btn-blue-1-2:disabled, .app-btn-blue-1-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/blue/1-2/disabled.avif");
}

.app-btn-square-arrow-down-frameless {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-down-frameless/default.png");
}
.app-btn-square-arrow-down-frameless.disabled, .app-btn-square-arrow-down-frameless:disabled, .app-btn-square-arrow-down-frameless:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-down-frameless/disabled.png");
}

.app-btn-square-arrow-up-frameless {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-up-frameless/default.png");
}
.app-btn-square-arrow-up-frameless.disabled, .app-btn-square-arrow-up-frameless:disabled, .app-btn-square-arrow-up-frameless:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-up-frameless/disabled.png");
}

.app-btn-square-arrow-down {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-down/default.png");
}
.app-btn-square-arrow-down:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-down/pressed.png");
}
.app-btn-square-arrow-down.disabled, .app-btn-square-arrow-down:disabled, .app-btn-square-arrow-down:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-down/disabled.png");
}

.app-btn-square-arrow-up {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-up/default.png");
}
.app-btn-square-arrow-up:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-up/pressed.png");
}
.app-btn-square-arrow-up.disabled, .app-btn-square-arrow-up:disabled, .app-btn-square-arrow-up:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-up/disabled.png");
}

.app-btn-square-arrow-left {
  min-width: 80px;
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-left/default.png");
}
.app-btn-square-arrow-left:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-left/pressed.png");
}
.app-btn-square-arrow-left.disabled, .app-btn-square-arrow-left:disabled, .app-btn-square-arrow-left:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-left/disabled.png");
}

.app-btn-square-arrow-right {
  min-width: 80px;
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/arrow-right/default.png");
}
.app-btn-square-arrow-right:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-right/pressed.png");
}
.app-btn-square-arrow-right.disabled, .app-btn-square-arrow-right:disabled, .app-btn-square-arrow-right:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-right/disabled.png");
}

.app-btn-square-arrow-left-huge {
  width: 204px;
  height: 204px;
  background-image: url("/assets/images/ui/buttons/square/arrow-left-huge/default.png");
}
.app-btn-square-arrow-left-huge:hover:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-left-huge/hover.png");
}
.app-btn-square-arrow-left-huge:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-left-huge/pressed.png");
}
.app-btn-square-arrow-left-huge.disabled, .app-btn-square-arrow-left-huge:disabled, .app-btn-square-arrow-left-huge:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-left-huge/disabled.png");
}

.app-btn-square-arrow-right-huge {
  width: 204px;
  height: 204px;
  background-image: url("/assets/images/ui/buttons/square/arrow-right-huge/default.png");
}
.app-btn-square-arrow-right-huge:hover:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-right-huge/hover.png");
}
.app-btn-square-arrow-right-huge:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/arrow-right-huge/pressed.png");
}
.app-btn-square-arrow-right-huge.disabled, .app-btn-square-arrow-right-huge:disabled, .app-btn-square-arrow-right-huge:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/arrow-right-huge/disabled.png");
}

.app-btn-square-cross {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/cross/default.png");
}
.app-btn-square-cross:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/cross/pressed.png");
}
.app-btn-square-cross.disabled, .app-btn-square-cross:disabled, .app-btn-square-cross:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/cross/disabled.png");
}

.app-btn-cross-light {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/cross-light/default.png");
}
.app-btn-cross-light:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/cross-light/default.png");
}
.app-btn-cross-light.disabled, .app-btn-cross-light:disabled, .app-btn-cross-light:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/cross-light/disabled.png");
}

.app-btn-square-plus {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/plus/default.png");
}
.app-btn-square-plus:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/plus/pressed.png");
}
.app-btn-square-plus.disabled, .app-btn-square-plus:disabled, .app-btn-square-plus:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/plus/disabled.png");
}
.app-btn-square-plus--arrows {
  background-image: url("/assets/images/ui/icons/arrows/right.png");
}
.app-btn-square-plus--arrows:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/icons/arrows/right.png");
}
.app-btn-square-plus--arrows.disabled, .app-btn-square-plus--arrows:disabled, .app-btn-square-plus--arrows:active.disabled {
  background-image: url("/assets/images/ui/icons/arrows/right-disabled.png");
}
.app-btn-square-plus--minimal {
  background-image: url("/assets/images/ui/buttons/square/plus-minimal/default.png");
}
.app-btn-square-plus--minimal:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/plus-minimal/pressed.png");
}
.app-btn-square-plus--minimal.disabled, .app-btn-square-plus--minimal:disabled, .app-btn-square-plus--minimal:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/plus-minimal/disabled.png");
}
.app-btn-square-plus--all {
  background-image: url("/assets/images/ui/icons/arrows/right-all.png");
}
.app-btn-square-plus--all:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/icons/arrows/right-all.png");
}
.app-btn-square-plus--all.disabled, .app-btn-square-plus--all:disabled, .app-btn-square-plus--all:active.disabled {
  background-image: url("/assets/images/ui/icons/arrows/right-all-disabled.png");
}

.app-btn-square-minus {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/minus/default.png");
}
.app-btn-square-minus:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/minus/pressed.png");
}
.app-btn-square-minus.disabled, .app-btn-square-minus:disabled, .app-btn-square-minus:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/minus/disabled.png");
}
.app-btn-square-minus--arrows {
  background-image: url("/assets/images/ui/icons/arrows/left.png");
}
.app-btn-square-minus--arrows:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/icons/arrows/left.png");
}
.app-btn-square-minus--arrows.disabled, .app-btn-square-minus--arrows:disabled, .app-btn-square-minus--arrows:active.disabled {
  background-image: url("/assets/images/ui/icons/arrows/left-disabled.png");
}
.app-btn-square-minus--minimal {
  background-image: url("/assets/images/ui/buttons/square/minus-minimal/default.png");
}
.app-btn-square-minus--minimal:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/minus-minimal/pressed.png");
}
.app-btn-square-minus--minimal.disabled, .app-btn-square-minus--minimal:disabled, .app-btn-square-minus--minimal:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/minus-minimal/disabled.png");
}
.app-btn-square-minus--all {
  background-image: url("/assets/images/ui/icons/arrows/left-all.png");
}
.app-btn-square-minus--all:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/icons/arrows/left-all.png");
}
.app-btn-square-minus--all.disabled, .app-btn-square-minus--all:disabled, .app-btn-square-minus--all:active.disabled {
  background-image: url("/assets/images/ui/icons/arrows/left-all-disabled.png");
}

.app-btn-square-down {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/minus/default.png");
}
.app-btn-square-down:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/minus/pressed.png");
}
.app-btn-square-down.disabled, .app-btn-square-down:disabled, .app-btn-square-down:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/minus/disabled.png");
}
.app-btn-square-down--arrows {
  background-image: url("/assets/images/ui/icons/arrows/down.png");
}
.app-btn-square-down--arrows:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/icons/arrows/down.png");
}
.app-btn-square-down--arrows.disabled, .app-btn-square-down--arrows:disabled, .app-btn-square-down--arrows:active.disabled {
  background-image: url("/assets/images/ui/icons/arrows/down-disabled.png");
}

.app-btn-square-search {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/search/default.png");
}
.app-btn-square-search.pressed, .app-btn-square-search:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/search/pressed.png");
}
.app-btn-square-search.disabled, .app-btn-square-search:disabled, .app-btn-square-search:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/search/disabled.png");
}
.app-btn-square-search--small {
  background-image: url(/assets/images/ui/icons/other/search.png);
}
.app-btn-square-search--small.pressed, .app-btn-square-search--small:active:not(:disabled):not(:disabled) {
  background-image: url(/assets/images/ui/icons/other/search.png);
}

.app-btn-square-list {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/list/default.png");
}
.app-btn-square-list:active:not(:disabled):not(:disabled) {
  background-image: url("/assets/images/ui/buttons/square/list/pressed.png");
}
.app-btn-square-list.disabled, .app-btn-square-list:disabled, .app-btn-square-list:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/list/disabled.png");
}
.app-btn-square-list--small {
  background-image: url(/assets/images/ui/icons/other/sort.png);
}
.app-btn-square-list--small.pressed, .app-btn-square-list--small:active:not(:disabled):not(:disabled) {
  background-image: url(/assets/images/ui/icons/other/sort.png);
}

.app-btn-square-frame {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/square/frame/default.png");
}
.app-btn-square-frame:active:not(:disabled):not(:disabled), .app-btn-square-frame:hover {
  background-image: url("/assets/images/ui/buttons/square/frame/pressed.png");
}
.app-btn-square-frame.disabled, .app-btn-square-frame:disabled, .app-btn-square-frame:active.disabled {
  background-image: url("/assets/images/ui/buttons/square/frame/disabled.png");
}

.app-btn-square-settings {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/icons/other/settings.png");
}

.app-btn-max {
  width: 82px;
  height: 50px;
  background-position: 0px -13px;
  background-image: url("/assets/images/ui/buttons/other/max/default.png");
}
.app-btn-max:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/max/pressed.png");
}
.app-btn-max.disabled, .app-btn-max:disabled, .app-btn-max:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/max/disabled.png");
}

.app-btn-swap {
  width: 101px;
  height: 68px;
  background-position: center;
  background-image: url("/assets/images/ui/buttons/other/swap/default.png");
}
.app-btn-swap:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/swap/pressed.png");
}
.app-btn-swap.disabled, .app-btn-swap:disabled, .app-btn-swap:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/swap/disabled.png");
}

.app-btn-copy {
  width: 76px;
  height: 76px;
  background-image: url("/assets/images/ui/buttons/other/copy/default.png");
}
.app-btn-copy:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/copy/pressed.png");
}
.app-btn-copy.disabled, .app-btn-copy:disabled, .app-btn-copy:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/copy/disabled.png");
}

.app-btn-exit {
  width: 76px;
  height: 76px;
  background-image: url("/assets/images/ui/buttons/other/exit/default.png");
}
.app-btn-exit:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/exit/pressed.png");
}
.app-btn-exit.disabled, .app-btn-exit:disabled, .app-btn-exit:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/exit/disabled.png");
}

.app-btn-link {
  width: 76px;
  height: 76px;
  background-image: url("/assets/images/ui/buttons/other/link/default.png");
}
.app-btn-link:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/link/pressed.png");
}
.app-btn-link.disabled, .app-btn-link:disabled, .app-btn-link:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/link/disabled.png");
}

.app-btn-view-mode-icon {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/view-mode-icon/default.png");
}
.app-btn-view-mode-icon:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/view-mode-icon/pressed.png");
}
.app-btn-view-mode-icon.disabled, .app-btn-view-mode-icon:disabled, .app-btn-view-mode-icon:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/view-mode-icon/disabled.png");
}

.app-btn-view-mode-list {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/view-mode-list/default.png");
}
.app-btn-view-mode-list:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/view-mode-list/pressed.png");
}
.app-btn-view-mode-list.disabled, .app-btn-view-mode-list:disabled, .app-btn-view-mode-list:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/view-mode-list/disabled.png");
}

.app-btn-filter {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/filter/default.png");
}
.app-btn-filter:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/filter/default.png");
}
.app-btn-filter.disabled, .app-btn-filter:disabled, .app-btn-filter:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/filter/disabled.png");
}

.app-btn-trash {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/trash/default.png");
}
.app-btn-trash:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/trash/pressed.png");
}
.app-btn-trash:hover:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/trash/hover.png");
}
.app-btn-trash.disabled, .app-btn-trash:disabled, .app-btn-trash:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/trash/disabled.png");
}

.app-btn-stop {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/stop/default.png");
}
.app-btn-stop:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/stop/pressed.png");
}
.app-btn-stop:hover:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/stop/hover.png");
}
.app-btn-stop.disabled, .app-btn-stop:disabled, .app-btn-stop:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/stop/disabled.png");
}

.app-btn-refresh {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/refresh/default.png");
}
.app-btn-refresh:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/refresh/pressed.png");
}
.app-btn-refresh:hover:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/other/refresh/hover.png");
}
.app-btn-refresh.disabled, .app-btn-refresh:disabled, .app-btn-refresh:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/refresh/disabled.png");
}

.app-btn-key {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/key/default.png");
}
.app-btn-key:active:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/key/pressed.png");
}
.app-btn-key:hover:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/key/hover.png");
}
.app-btn-key.disabled, .app-btn-key:disabled, .app-btn-key:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/key/disabled.png");
}

.app-btn-thunderbolt {
  width: 80px;
  height: 79px;
  background-image: url("/assets/images/ui/buttons/other/thunderbolt/default.png");
}
.app-btn-thunderbolt:active:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/thunderbolt/pressed.png");
}
.app-btn-thunderbolt:hover:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/thunderbolt/hover.png");
}
.app-btn-thunderbolt.disabled, .app-btn-thunderbolt:disabled, .app-btn-thunderbolt:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/thunderbolt/disabled.png");
}

.app-btn-token-banner-1 {
  width: 417px;
  height: 337px;
  padding-bottom: 135px;
  padding-left: 60px;
  padding-right: 60px;
  background-image: url("/assets/images/ui/buttons/other/token-banner/1-1/default.avif");
  background-position-y: -230px;
}
.app-btn-token-banner-1:active:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/token-banner/1-1/pressed.avif");
}
.app-btn-token-banner-1:hover:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/token-banner/1-1/hover.avif");
}
.app-btn-token-banner-1.disabled, .app-btn-token-banner-1:disabled, .app-btn-token-banner-1:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/token-banner/1-1/disabled.avif");
}

.app-btn-token-banner-2 {
  width: 417px;
  height: 337px;
  padding-bottom: 135px;
  padding-left: 60px;
  padding-right: 60px;
  background-image: url("/assets/images/ui/buttons/other/token-banner/2-1/default.avif");
  background-position-y: -264px;
}
.app-btn-token-banner-2:active:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/token-banner/2-1/pressed.avif");
}
.app-btn-token-banner-2:hover:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/token-banner/2-1/hover.avif");
}
.app-btn-token-banner-2.disabled, .app-btn-token-banner-2:disabled, .app-btn-token-banner-2:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/token-banner/2-1/disabled.avif");
}

.app-btn-escape {
  width: 214px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: 214px 45px;
  background-image: url("/assets/images/ui/buttons/other/escape/default.png");
}
.app-btn-escape:active:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/escape/hover.png");
  height: 47px;
  background-size: 214px 47px;
}
.app-btn-escape:hover:not(:disabled):not(.disabled) {
  background-image: url("/assets/images/ui/buttons/other/escape/hover.png");
  height: 47px;
  background-size: 214px 47px;
}
.app-btn-escape.disabled, .app-btn-escape:disabled, .app-btn-escape:active.disabled {
  background-image: url("/assets/images/ui/buttons/other/escape/disabled.png");
}

.app-btn-daily {
  width: 495px;
  height: 156px;
  padding-left: 90px;
  background-image: url("/assets/images/ui/buttons/daily/default.avif");
}
.app-btn-daily.app-btn_active {
  background-image: url("/assets/images/ui/buttons/daily/active.avif"), url("/assets/images/ui/buttons/daily/default.avif");
}
.app-btn-daily:hover:not(:disabled):not(:active) {
  background-image: url("/assets/images/ui/buttons/daily/hover.avif");
}
.app-btn-daily:hover:not(:disabled):not(:active).app-btn_active {
  background-image: url("/assets/images/ui/buttons/daily/active.avif"), url("/assets/images/ui/buttons/daily/hover.avif");
}
.app-btn-daily:active:not(:disabled) {
  background-image: url("/assets/images/ui/buttons/daily/pressed.avif");
  color: #c4ad8e;
}
.app-btn-daily:active:not(:disabled).app-btn_active {
  background-image: url("/assets/images/ui/buttons/daily/active.avif"), url("/assets/images/ui/buttons/daily/pressed.avif");
}
.app-btn-daily.disabled, .app-btn-daily:disabled, .app-btn-daily:active.disabled {
  background-image: url("/assets/images/ui/buttons/daily/disabled.avif");
}

.app-divider-bolt {
  background-image: url("/assets/images/ui/dividers/bolt/bolt.png");
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 29px 29px;
  width: 29px;
  height: 29px;
}
.app-divider-bolt--active {
  background-image: url("/assets/images/ui/dividers/bolt/bolt-active.png");
}

.app-divider-group-of-bolts {
  background-image: url("/assets/images/ui/dividers/bolt/group-of-bolts.png");
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 49px 49px;
  width: 49px;
  height: 49px;
}

.app-divider-scratches-border-v-down {
  background-image: url("/assets/images/ui/dividers/scratches-border-v/scratches-border-v-down.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 369px 58px;
  min-width: 369px;
  padding-bottom: 58px;
}

.app-divider-scratches-border-v-up {
  background-image: url("/assets/images/ui/dividers/scratches-border-v/scratches-border-v-up.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 369px 58px;
  min-width: 369px;
  padding-top: 58px;
}

.app-divider-scratches-border-bolt {
  background-image: url("/assets/images/ui/dividers/scratches-border-v/scratches-border-bolt.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 369px 27px;
  padding-bottom: 27px;
  margin-top: -12px;
}

.app-divider-scratches-border-v-medium-down {
  background-image: url("/assets/images/ui/dividers/scratches-border-v/scratches-border-v-medium-down.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 592px 43px;
  min-width: 592px;
  padding-bottom: 43px;
}

.app-divider-scratches-border-v-medium-up {
  background-image: url("/assets/images/ui/dividers/scratches-border-v/scratches-border-v-medium-up.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 592px 43px;
  min-width: 592px;
  padding-top: 43px;
}

.app-scratch-huge {
  background-image: url("/assets/images/ui/dividers/scratches/scratch-huge.png");
  background-size: 1012px 17px;
  width: 1012px;
  min-height: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center center;
}

.app-scratch-middle {
  background-image: url("/assets/images/ui/dividers/scratches/scratch-middle.png");
  background-size: 592px 17px;
  width: 592px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center center;
}

.app-scratch-small {
  background-image: url("/assets/images/ui/dividers/scratches/scratch-small.png");
  background-size: 369px 15px;
  width: 369px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center center;
}

.app-item-slots, .app-item-slots-attack-middle-small, .app-item-slots-attack-middle-small_empty, .app-item-slots-small, .app-item-slots-small_unable-skill, .app-item-slots-small_unable, .app-item-slots-small_purple, .app-item-slots-small_green, .app-item-slots-small_gray, .app-item-slots-small_gold, .app-item-slots-small_empty, .app-item-slots-small_blue, .app-item-slots-small_aquamarine-skill-attack, .app-item-slots-small_aquamarine-skill, .app-item-slots-small_aquamarine, .app-item-slots-small_active-plus, .app-item-slots-small_active, .app-item-slots-middle-small, .app-item-slots-middle-small_unable-skill, .app-item-slots-middle-small_unable, .app-item-slots-middle-small_purple, .app-item-slots-middle-small_green, .app-item-slots-middle-small_gray, .app-item-slots-middle-small_gold, .app-item-slots-middle-small_empty, .app-item-slots-middle-small_blue, .app-item-slots-middle-small_aquamarine-skill-attack, .app-item-slots-middle-small_aquamarine-skill, .app-item-slots-middle-small_aquamarine, .app-item-slots-middle-small_active-plus, .app-item-slots-middle-small_active, .app-item-slots-middle, .app-item-slots-middle_unable-skill, .app-item-slots-middle_unable, .app-item-slots-middle_purple, .app-item-slots-middle_green, .app-item-slots-middle_gray, .app-item-slots-middle_gold, .app-item-slots-middle_empty, .app-item-slots-middle_blue, .app-item-slots-middle_aquamarine-skill-attack, .app-item-slots-middle_aquamarine-skill, .app-item-slots-middle_aquamarine, .app-item-slots-middle_active-plus, .app-item-slots-middle_active, .app-item-slots-huge, .app-item-slots-huge_unable-skill, .app-item-slots-huge_unable, .app-item-slots-huge_purple, .app-item-slots-huge_green, .app-item-slots-huge_gray, .app-item-slots-huge_gold, .app-item-slots-huge_empty, .app-item-slots-huge_blue, .app-item-slots-huge_aquamarine-skill-attack, .app-item-slots-huge_aquamarine-skill, .app-item-slots-huge_aquamarine, .app-item-slots-huge_active-plus, .app-item-slots-huge_active {
  background-repeat: no-repeat;
  background-position: center center;
}

.app-item-slots-huge, .app-item-slots-huge_unable-skill, .app-item-slots-huge_unable, .app-item-slots-huge_purple, .app-item-slots-huge_green, .app-item-slots-huge_gray, .app-item-slots-huge_gold, .app-item-slots-huge_empty, .app-item-slots-huge_blue, .app-item-slots-huge_aquamarine-skill-attack, .app-item-slots-huge_aquamarine-skill, .app-item-slots-huge_aquamarine, .app-item-slots-huge_active-plus, .app-item-slots-huge_active {
  width: 188px;
  height: 188px;
  min-width: 188px;
  min-height: 188px;
}

.app-item-slots-middle, .app-item-slots-middle_unable-skill, .app-item-slots-middle_unable, .app-item-slots-middle_purple, .app-item-slots-middle_green, .app-item-slots-middle_gray, .app-item-slots-middle_gold, .app-item-slots-middle_empty, .app-item-slots-middle_blue, .app-item-slots-middle_aquamarine-skill-attack, .app-item-slots-middle_aquamarine-skill, .app-item-slots-middle_aquamarine, .app-item-slots-middle_active-plus, .app-item-slots-middle_active {
  width: 144px;
  height: 144px;
  min-width: 144px;
  min-height: 144px;
}

.app-item-slots-middle-small, .app-item-slots-middle-small_unable-skill, .app-item-slots-middle-small_unable, .app-item-slots-middle-small_purple, .app-item-slots-middle-small_green, .app-item-slots-middle-small_gray, .app-item-slots-middle-small_gold, .app-item-slots-middle-small_empty, .app-item-slots-middle-small_blue, .app-item-slots-middle-small_aquamarine-skill-attack, .app-item-slots-middle-small_aquamarine-skill, .app-item-slots-middle-small_aquamarine, .app-item-slots-middle-small_active-plus, .app-item-slots-middle-small_active {
  width: 114px;
  height: 114px;
  min-width: 114px;
  min-height: 114px;
}

.app-item-slots-small, .app-item-slots-small_unable-skill, .app-item-slots-small_unable, .app-item-slots-small_purple, .app-item-slots-small_green, .app-item-slots-small_gray, .app-item-slots-small_gold, .app-item-slots-small_empty, .app-item-slots-small_blue, .app-item-slots-small_aquamarine-skill-attack, .app-item-slots-small_aquamarine-skill, .app-item-slots-small_aquamarine, .app-item-slots-small_active-plus, .app-item-slots-small_active {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
}

.app-item-slots-attack-middle-small, .app-item-slots-attack-middle-small_empty {
  width: 152px;
  height: 152px;
  min-width: 152px;
  min-height: 152px;
}

.app-item-slots-huge_active {
  background-image: url("/assets/images/ui/frames/item-slots/huge/active.avif");
}

.app-item-slots-huge_active-plus {
  background-image: url("/assets/images/ui/frames/item-slots/huge/active-plus.avif");
}

.app-item-slots-huge_aquamarine {
  background-image: url("/assets/images/ui/frames/item-slots/huge/aquamarine.avif");
}

.app-item-slots-huge_aquamarine-skill {
  background-image: url("/assets/images/ui/frames/item-slots/huge/aquamarine-skill.avif");
}

.app-item-slots-huge_aquamarine-skill-attack {
  background-image: url("/assets/images/ui/frames/item-slots/huge/aquamarine-skill-attack.avif");
}

.app-item-slots-huge_blue {
  background-image: url("/assets/images/ui/frames/item-slots/huge/blue.avif");
}

.app-item-slots-huge_empty {
  background-image: url("/assets/images/ui/frames/item-slots/huge/empty.avif");
}

.app-item-slots-huge_gold {
  background-image: url("/assets/images/ui/frames/item-slots/huge/gold.avif");
}

.app-item-slots-huge_gray {
  background-image: url("/assets/images/ui/frames/item-slots/huge/gray.avif");
}

.app-item-slots-huge_green {
  background-image: url("/assets/images/ui/frames/item-slots/huge/green.avif");
}

.app-item-slots-huge_purple {
  background-image: url("/assets/images/ui/frames/item-slots/huge/purple.avif");
}

.app-item-slots-huge_unable {
  background-image: url("/assets/images/ui/frames/item-slots/huge/unable.avif");
}

.app-item-slots-huge_unable-skill {
  background-image: url("/assets/images/ui/frames/item-slots/huge/unable-skill.avif");
}

.app-item-slots-middle_active {
  background-image: url("/assets/images/ui/frames/item-slots/middle/active.avif");
}

.app-item-slots-middle_active-plus {
  background-image: url("/assets/images/ui/frames/item-slots/middle/active-plus.avif");
}

.app-item-slots-middle_aquamarine {
  background-image: url("/assets/images/ui/frames/item-slots/middle/aquamarine.avif");
}

.app-item-slots-middle_aquamarine-skill {
  background-image: url("/assets/images/ui/frames/item-slots/middle/aquamarine-skill.avif");
}

.app-item-slots-middle_aquamarine-skill-attack {
  background-image: url("/assets/images/ui/frames/item-slots/middle/aquamarine-skill-attack.avif");
}

.app-item-slots-middle_blue {
  background-image: url("/assets/images/ui/frames/item-slots/middle/blue.avif");
}

.app-item-slots-middle_empty {
  background-image: url("/assets/images/ui/frames/item-slots/middle/empty.avif");
}

.app-item-slots-middle_gold {
  background-image: url("/assets/images/ui/frames/item-slots/middle/gold.avif");
}

.app-item-slots-middle_gray {
  background-image: url("/assets/images/ui/frames/item-slots/middle/gray.avif");
}

.app-item-slots-middle_green {
  background-image: url("/assets/images/ui/frames/item-slots/middle/green.avif");
}

.app-item-slots-middle_purple {
  background-image: url("/assets/images/ui/frames/item-slots/middle/purple.avif");
}

.app-item-slots-middle_unable {
  background-image: url("/assets/images/ui/frames/item-slots/middle/unable.avif");
}

.app-item-slots-middle_unable-skill {
  background-image: url("/assets/images/ui/frames/item-slots/middle/unable-skill.avif");
}

.app-item-slots-middle-small_active {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/active.avif");
}

.app-item-slots-middle-small_active-plus {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/active-plus.avif");
}

.app-item-slots-middle-small_aquamarine {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/aquamarine.avif");
}

.app-item-slots-middle-small_aquamarine-skill {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/aquamarine-skill.avif");
}

.app-item-slots-middle-small_aquamarine-skill-attack {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/aquamarine-skill-attack.avif");
}

.app-item-slots-middle-small_blue {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/blue.avif");
}

.app-item-slots-middle-small_empty {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/empty.avif");
}

.app-item-slots-middle-small_gold {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/gold.avif");
}

.app-item-slots-middle-small_gray {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/gray.avif");
}

.app-item-slots-middle-small_green {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/green.avif");
}

.app-item-slots-middle-small_purple {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/purple.avif");
}

.app-item-slots-middle-small_unable {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/unable.avif");
}

.app-item-slots-middle-small_unable-skill {
  background-image: url("/assets/images/ui/frames/item-slots/middle-small/unable-skill.avif");
}

.app-item-slots-small_active {
  background-image: url("/assets/images/ui/frames/item-slots/small/active.avif");
}

.app-item-slots-small_active-plus {
  background-image: url("/assets/images/ui/frames/item-slots/small/active-plus.avif");
}

.app-item-slots-small_aquamarine {
  background-image: url("/assets/images/ui/frames/item-slots/small/aquamarine.avif");
}

.app-item-slots-small_aquamarine-skill {
  background-image: url("/assets/images/ui/frames/item-slots/small/aquamarine-skill.avif");
}

.app-item-slots-small_aquamarine-skill-attack {
  background-image: url("/assets/images/ui/frames/item-slots/small/aquamarine-skill-attack.avif");
}

.app-item-slots-small_blue {
  background-image: url("/assets/images/ui/frames/item-slots/small/blue.avif");
}

.app-item-slots-small_empty {
  background-image: url("/assets/images/ui/frames/item-slots/small/empty.avif");
}

.app-item-slots-small_gold {
  background-image: url("/assets/images/ui/frames/item-slots/small/gold.avif");
}

.app-item-slots-small_gray {
  background-image: url("/assets/images/ui/frames/item-slots/small/gray.avif");
}

.app-item-slots-small_green {
  background-image: url("/assets/images/ui/frames/item-slots/small/green.avif");
}

.app-item-slots-small_purple {
  background-image: url("/assets/images/ui/frames/item-slots/small/purple.avif");
}

.app-item-slots-small_unable {
  background-image: url("/assets/images/ui/frames/item-slots/small/unable.avif");
}

.app-item-slots-small_unable-skill {
  background-image: url("/assets/images/ui/frames/item-slots/small/unable-skill.avif");
}

.app-item-slots-attack-middle-small_empty {
  background-image: url("/assets/images/ui/frames/item-slots/attacking/empty.avif");
}

.app-lvl, .app-lvl-uniq, .app-lvl-boss, .app-lvl-default {
  background-repeat: no-repeat;
  background-position: center top;
  width: 191px;
  height: 191px;
}

.app-lvl-medium, .app-lvl-boss-3, .app-lvl-uniq-3, .app-lvl-normal-3, .app-lvl-boss-2, .app-lvl-uniq-2, .app-lvl-normal-2, .app-lvl-boss-1, .app-lvl-uniq-1, .app-lvl-normal-1, .app-lvl-default-medium {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 153px;
  width: 153px;
  height: 153px;
}

.app-lvl-small, .app-lvl-uniq-small, .app-lvl-boss-small, .app-lvl-default-small {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 110px;
  width: 110px;
  height: 110px;
}

.app-lvl-tiny, .app-lvl-default-tiny {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 80px;
  width: 80px;
  height: 80px;
}

.app-lvl-default {
  background-image: url("/assets/images/ui/frames/lvl/default.avif");
}

.app-lvl-default-medium {
  background-image: url("/assets/images/ui/frames/lvl/default-small.avif");
}

.app-lvl-default-small {
  background-image: url("/assets/images/ui/frames/lvl/default-small.avif");
}

.app-lvl-default-tiny {
  background-image: url("/assets/images/ui/frames/lvl/default-small.avif");
}

.app-lvl-boss {
  background-image: url("/assets/images/ui/frames/lvl/boss.avif");
}

.app-lvl-boss-small {
  background-image: url("/assets/images/ui/frames/lvl/boss-small.avif");
}

.app-lvl-uniq {
  background-image: url("/assets/images/ui/frames/lvl/uniq.avif");
}

.app-lvl-uniq-small {
  background-image: url("/assets/images/ui/frames/lvl/uniq-small.avif");
}

/* MONSTERS */
.app-lvl-normal-1 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/normal-1-small.avif");
}

.app-lvl-uniq-1 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/uniq-1-small.avif");
}

.app-lvl-boss-1 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/boss-1-small.avif");
}

.app-lvl-normal-2 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/normal-2-small.avif");
}

.app-lvl-uniq-2 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/uniq-2-small.avif");
}

.app-lvl-boss-2 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/boss-2-small.avif");
}

.app-lvl-normal-3 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/normal-3-small.avif");
}

.app-lvl-uniq-3 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/uniq-3-small.avif");
}

.app-lvl-boss-3 {
  background-image: url("/assets/images/ui/frames/lvl/monsters/boss-3-small.avif");
}

.app-paint-fight-page {
  background-image: url("/assets/images/ui/paint/for-fight-page/black-paint-for-fight-page-1.avif"), url("/assets/images/ui/paint/for-fight-page/black-paint-for-fight-page-2.avif");
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: 50% 100%, 50% 100%;
}

.app-paint-item-tittles-base, .app-paint-item-tittles-purple, .app-paint-item-tittles-green, .app-paint-item-tittles-gray, .app-paint-item-tittles-gold, .app-paint-item-tittles-blue, .app-paint-item-tittles-aquamarine {
  background-size: 956px 286px;
  width: 956px;
  height: 286px;
}
.app-paint-item-tittles-base_incompressible {
  min-width: 956px;
  min-height: 286px;
}

.app-paint-item-tittles-aquamarine {
  background-image: url("/assets/images/ui/paint/for-item-tittles/aquamarine.png");
}

.app-paint-item-tittles-blue {
  background-image: url("/assets/images/ui/paint/for-item-tittles/blue.png");
}

.app-paint-item-tittles-gold {
  background-image: url("/assets/images/ui/paint/for-item-tittles/gold.png");
}

.app-paint-item-tittles-gray {
  background-image: url("/assets/images/ui/paint/for-item-tittles/gray.png");
}

.app-paint-item-tittles-green {
  background-image: url("/assets/images/ui/paint/for-item-tittles/green.png");
}

.app-paint-item-tittles-purple {
  background-image: url("/assets/images/ui/paint/for-item-tittles/purple.png");
}

.app-paint-text {
  background-image: url("/assets/images/ui/paint/for-text/black-paint-for-text.avif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.app-paint-text-2 {
  background-image: url("/assets/images/ui/paint/for-text/black-paint-for-text-2.avif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.app-paint-titles-1-long {
  background-image: url("/assets/images/ui/paint/for-tittles/black-paint-1-long.avif");
  background-size: 468px 131px;
  background-repeat: no-repeat;
  width: 468px;
  height: 131px;
}
.app-paint-titles-1-long_incompressible {
  min-width: 468px;
  min-height: 131px;
}

.app-paint-titles-1-middle {
  background-image: url("/assets/images/ui/paint/for-tittles/black-paint-1-middle.avif");
  background-size: 359px 131px;
  width: 359px;
  height: 131px;
}
.app-paint-titles-1-middle_incompressible {
  min-width: 359px;
  min-height: 131px;
}

.app-paint-titles-1-small {
  background-image: url("/assets/images/ui/paint/for-tittles/black-paint-1-small.avif");
  background-size: 270px 131px;
  width: 270px;
  height: 131px;
}
.app-paint-titles-1-small_incompressible {
  min-width: 270px;
  min-height: 131px;
}

.app-paint-titles-2-medium {
  background-image: url("/assets/images/ui/paint/for-tittles/black-paint-2-medium.avif");
  background-size: 692px 171px;
  width: 692px;
  height: 171px;
}
.app-paint-titles-2-medium_incompressible {
  min-width: 692px;
  min-height: 171px;
}

.app-paint-titles-2-large {
  background-image: url("/assets/images/ui/paint/for-market/black.png");
  background-size: 956px 223px;
  background-repeat: no-repeat;
  width: 956px;
  height: 223px;
}
.app-paint-titles-2-large_incompressible {
  min-width: 956px;
  min-height: 223px;
}

.app-window-background, .app-window-item-info-for-forge-page-background, .app-window-full-screen-background, .app-window-ask-for-reinforcement-background {
  display: block;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

.app-window-ask-for-reinforcement-background {
  background-image: url("/assets/images/ui/windows-pop-ups/window-ask-for-reinforcement.avif");
  width: 999px;
  height: 757px;
}

.app-window-full-screen-background {
  background-image: url("/assets/images/ui/windows-pop-ups/window-full-screen.avif");
  width: calc(100% + 10px);
  height: 100%;
  max-width: 1100px;
  max-height: 100%;
  background-repeat: no-repeat;
  background-position: 0px -2px;
}

.app-window-item-info-for-forge-page-background {
  background-image: url("/assets/images/ui/windows-pop-ups/window-item-info-for-forge-page.avif");
  width: 1090px;
  height: 1190px;
  max-width: 100%;
  max-height: 100%;
}

.app-window-responsive-background {
  width: 990px;
  max-width: 1080px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100%;
  padding-bottom: 20px;
  border: 3px solid #524b43;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.69%, rgba(0, 0, 0, 0.2) 88.03%), url("/assets/images/ui/windows-pop-ups/window-responsive.avif") lightgray 0% 0%/124.0259766579px 124.0259766579px repeat;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.45) inset, 0 0 40px 0 #000000, 0 0 10px 0 rgba(0, 0, 0, 0.8);
}
.app-window-responsive-background--full {
  width: 96%;
  height: 100%;
  max-width: 1100px;
  max-height: 80%;
}
.app-window-responsive-background--full-width {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  max-height: 80%;
}
.app-window-responsive-background--full-height {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  max-height: 100%;
  z-index: 999998;
}

.app-bg-all-hero-stats-back {
  background-image: url("/assets/images/ui/background-lists/all-hero-stats-page/all-hero-page-back.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 1080px;
  height: 1244px;
}

.app-bg-all-hero-stats-front {
  background-image: url("/assets/images/ui/background-lists/all-hero-stats-page/all-hero-page-front.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 533px;
  height: 839px;
}

.app-bg-all-hero-stats-back-new {
  background-image: url("/assets/images/ui/background-lists/all-hero-stats-page/all-hero-page-back-new.avif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.app-bg-inventory-equipped-front {
  background-image: url("/assets/images/ui/background-lists/inventory/equiped-page-back.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 786px;
  height: 916px;
}

.app-bg-level-up-back,
.app-bg-reinforcement-back,
.app-bg-inventory-all-back {
  background-image: url("/assets/images/ui/background-lists/all-hero-stats-page/all-hero-page-back-new.avif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: 1461px;
}

.app-bg-level-up-front {
  background-image: url("/assets/images/ui/background-lists/inventory/equiped-page-back.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 1185px;
  height: 1230px;
  background-size: contain;
}

.app-bg-main-back,
.app-bg-inventory-equipped-back {
  background-image: url("/assets/images/ui/background-lists/main-page/back.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 1024px;
  height: 1054px;
}

.app-bg-main-front {
  background-image: url("/assets/images/ui/background-lists/main-page/front.avif");
  background-repeat: no-repeat;
  background-position: center top;
  width: 620px;
  height: 871px;
}

/*.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;

  &.cdk-overlay-backdrop-showing {
    opacity: 1;
  }
}

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}*/
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
  overflow: hidden;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}

.cdk-overlay-pane {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cdk-overlay-container {
  z-index: 999997;
  overflow: hidden;
}
.cdk-overlay-container:empty {
  display: none;
}

.cdk-overlay-backdrop {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.cdk-dialog-container {
  overflow: hidden;
}

.app-overlay-pane-full-width {
  width: 100%;
  height: 100%;
}

.cdk-overlay-connected-position-bounding-box {
  position: fixed;
}
.cdk-overlay-connected-position-bounding-box .cdk-overlay-pane {
  justify-content: end;
}

.cdk-menu {
  z-index: 9999;
}

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