@charset "UTF-8";
/* ====================== FONTS =================== */
@font-face {
  font-family: Involve;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Involve-Regular.woff2") format("woff2"), url("../fonts/Involve-Regular.woff") format("woff");
}

@font-face {
  font-family: Involve;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Involve-Medium.woff2") format("woff2"), url("../fonts/Involve-Medium.woff") format("woff");
}

@font-face {
  font-family: Involve;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Involve-SemiBold.woff2") format("woff2"), url("../fonts/Involve-SemiBold.woff") format("woff");
}

@font-face {
  font-family: Involve;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Involve-Bold.woff2") format("woff2"), url("../fonts/Involve-Bold.woff") format("woff");
}

.aderma-main {
  font-family: "Involve", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  font-feature-settings: 'clig' off, 'liga' off;
}

.font-16 {
  font-size: 16px;
}

/* ====================== HELPERS =================== */
.white-bg {
  background-color: #ffffff;
}

.white-text {
  color: #ffffff;
}

.white-svg {
  fill: #ffffff;
}

.black-bg {
  background-color: #000000;
}

.black-text {
  color: #000000;
}

.black-svg {
  fill: #000000;
}

.green-bg {
  background-color: #274f18;
}

.green-text {
  color: #274f18;
}

.green-svg {
  fill: #274f18;
}

.dark-green-bg {
  background-color: #1C3911;
}

.dark-green-text {
  color: #1C3911;
}

.dark-green-svg {
  fill: #1C3911;
}

.orange-bg {
  background-color: #F39100;
}

.orange-text {
  color: #F39100;
}

.orange-svg {
  fill: #F39100;
}

.crop-btn-bg {
  background-color: #ccc;
}

.crop-btn-text {
  color: #ccc;
}

.crop-btn-svg {
  fill: #ccc;
}

.crop-btn-act-bg {
  background-color: #285219;
}

.crop-btn-act-text {
  color: #285219;
}

.crop-btn-act-svg {
  fill: #285219;
}

.aderma-container {
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1200px;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

@media screen and (min-width: 320px) and (max-width: 580px) {
  .hidden-xs {
    display: none !important;
  }
}

@media screen and (min-width: 580px) and (max-width: 960px) {
  .hidden-sm {
    display: none !important;
  }
}

@media screen and (min-width: 960px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/* ====================== ASSETS =================== */
.ps {
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.ps.ps--active-x > .ps__scrollbar-x-rail,
.ps.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: rgba(29, 60, 18, 0.6);
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #17300e;
  height: 11px;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #17300e;
  width: 6px;
}

.ps > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 0px;
  /* there must be 'bottom' for ps__scrollbar-x-rail */
  height: 15px;
}

.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #17300e;
  border-radius: 3px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  bottom: 2px;
  /* there must be 'bottom' for ps__scrollbar-x */
  height: 6px;
}

.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
  height: 11px;
}

.ps > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  right: 20px;
  /* there must be 'right' for ps__scrollbar-y-rail */
  width: 6px;
  border-radius: 3px;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #17300e;
  border-radius: 3px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  right: 0;
  /* there must be 'right' for ps__scrollbar-y */
  width: 6px;
}

.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
  width: 6px;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #17300e;
  height: 11px;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #17300e;
  width: 6px;
}

.ps:hover > .ps__scrollbar-x-rail,
.ps:hover > .ps__scrollbar-y-rail {
  opacity: 1;
}

.ps:hover > .ps__scrollbar-x-rail:hover {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #17300e;
}

.ps:hover > .ps__scrollbar-y-rail:hover {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #17300e;
}

.ps--theme_light {
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps--theme_light {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps--theme_light {
    overflow: auto !important;
  }
}

.ps--theme_light.ps--active-x > .ps__scrollbar-x-rail,
.ps--theme_light.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: #e9e9e9;
}

.ps--theme_light.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #17300e;
  height: 8px;
}

.ps--theme_light.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #17300e;
  width: 8px;
}

.ps--theme_light > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 0.6;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 0px;
  /* there must be 'bottom' for ps__scrollbar-x-rail */
  height: 8px;
}

.ps--theme_light > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #17300e;
  border-radius: 4px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  bottom: 2px;
  /* there must be 'bottom' for ps__scrollbar-x */
  height: 8px;
}

.ps--theme_light > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps--theme_light > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
  height: 8px;
}

.ps--theme_light > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 0.6;
  transition: background-color .2s linear, opacity .2s linear;
  right: 8px !important;
  /* there must be 'right' for ps__scrollbar-y-rail */
  width: 8px;
  border-radius: 4px;
}

.ps--theme_light > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #17300e;
  border-radius: 4px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  right: 0;
  /* there must be 'right' for ps__scrollbar-y */
  width: 8px;
}

.ps--theme_light > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps--theme_light > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
  width: 8px;
}

.ps--theme_light:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #17300e;
  height: 8px;
}

.ps--theme_light:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #17300e;
  width: 8px;
}

.ps--theme_light:hover > .ps__scrollbar-x-rail,
.ps--theme_light:hover > .ps__scrollbar-y-rail {
  opacity: 1;
}

.ps--theme_light:hover > .ps__scrollbar-x-rail:hover {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #17300e;
}

.ps--theme_light:hover > .ps__scrollbar-y-rail:hover {
  background-color: rgba(29, 60, 18, 0.6);
  opacity: 1;
}

.ps--theme_light:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #17300e;
}

.ps--theme_orange {
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps--theme_orange {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps--theme_orange {
    overflow: auto !important;
  }
}

.ps--theme_orange.ps--active-x > .ps__scrollbar-x-rail,
.ps--theme_orange.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: #f8f8f8;
}

.ps--theme_orange.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #fcbc31;
  height: 11px;
}

.ps--theme_orange.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #fcbc31;
  width: 6px;
}

.ps--theme_orange > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 0px;
  /* there must be 'bottom' for ps__scrollbar-x-rail */
  height: 15px;
}

.ps--theme_orange > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #fcbc31;
  border-radius: 3px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  bottom: 2px;
  /* there must be 'bottom' for ps__scrollbar-x */
  height: 6px;
}

.ps--theme_orange > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps--theme_orange > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
  height: 11px;
}

.ps--theme_orange > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  right: 20px;
  /* there must be 'right' for ps__scrollbar-y-rail */
  width: 6px;
  border-radius: 3px;
}

.ps--theme_orange > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #fcbc31;
  border-radius: 3px;
  transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  right: 0;
  /* there must be 'right' for ps__scrollbar-y */
  width: 6px;
}

.ps--theme_orange > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps--theme_orange > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
  width: 6px;
}

.ps--theme_orange:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #fcbc31;
  height: 11px;
}

.ps--theme_orange:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #fcbc31;
  width: 6px;
}

.ps--theme_orange:hover > .ps__scrollbar-x-rail,
.ps--theme_orange:hover > .ps__scrollbar-y-rail {
  opacity: 1;
}

.ps--theme_orange:hover > .ps__scrollbar-x-rail:hover {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #fcbc31;
}

.ps--theme_orange:hover > .ps__scrollbar-y-rail:hover {
  background-color: #f8f8f8;
  opacity: 1;
}

.ps--theme_orange:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #fcbc31;
}

/*!
 * Cropper.js v1.0.0-alpha
 * https://github.com/fengyuanchen/cropperjs
 *
 * Copyright (c) 2016 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2016-12-04T14:06:47.119Z
 */
.cropper-container {
  font-size: 0;
  line-height: 0;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr;
  -ms-touch-action: none;
  touch-action: none;
}

.cropper-container img {
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  image-orientation: 0deg;
}

.cropper-canvas, .cropper-crop-box, .cropper-drag-box, .cropper-modal, .cropper-wrap-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cropper-wrap-box {
  overflow: hidden;
}

.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}

.cropper-modal {
  opacity: .5;
  background-color: #000;
}

.cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
}

.cropper-dashed {
  position: absolute;
  display: block;
  opacity: .5;
  border: 0 dashed #eee;
}

.cropper-dashed.dashed-h {
  top: 33.33333%;
  left: 0;
  width: 100%;
  height: 33.33333%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333%;
  width: 33.33333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}

.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  opacity: .75;
}

.cropper-center:after, .cropper-center:before {
  position: absolute;
  display: block;
  content: ' ';
  background-color: #eee;
}

.cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px;
}

.cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px;
}

.cropper-face, .cropper-line, .cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .1;
}

.cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}

.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}

.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}

.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}

.cropper-point {
  width: 5px;
  height: 5px;
  opacity: .75;
  background-color: #39f;
}

.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}

.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}

.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}

.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}

.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}

.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}

.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}

.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 1;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    opacity: .75;
  }
}

.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: ' ';
  opacity: 0;
  background-color: #39f;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url("data:image/png;\a     base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

.cropper-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}

/* croper */
.cropper.__td {
  display: none;
  width: 100%;
  min-height: 150px;
  overflow: hidden;
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 0 0 0 0;
}

.cropper.__td .crop-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cropper.__td .crop-modal__wrap {
  background-color: #f4f4f4;
  border-radius: 20px;
  box-shadow: 0px 24px 27px 0px rgba(0, 0, 0, 0.28);
  padding: 30px;
  max-width: 700px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .cropper.__td .crop-modal__wrap {
    min-width: 300px;
  }
}

@media screen and (min-width: 580px) and (max-width: 959px) {
  .cropper.__td .crop-modal__wrap {
    min-width: 500px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  .cropper.__td .crop-modal__wrap {
    min-width: 700px;
  }
}

@media screen and (min-width: 1200px) {
  .cropper.__td .crop-modal__wrap {
    min-width: 700px;
  }
}

@media screen and (max-width: 579px) {
  .cropper.__td .crop-modal__wrap {
    padding: 10px;
  }
}

.cropper.__td .cropper-view-box {
  border-radius: 0;
  outline: 0px;
  box-shadow: 0 0 0 1px #323232;
}

.cropper.__td .cropper-modal {
  opacity: .8;
  background-color: #FFF;
}

.cropper.__td .modal {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cropper.__td .image-cropper {
  position: relative;
}

.cropper.__td .img-container {
  width: 100%;
  height: 300px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .cropper.__td .img-container {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .cropper.__td .img-container {
    width: 100%;
  }
}

/*.cropper.__td .image-resize {
  position: absolute;
  top: 10px;
  right: 10px;
}

.cropper.__td .image-resize a {
  display: block;
  width: 30px;
  height: 30px;
  background: #009E62;
  margin-bottom: 10px;
  position: relative;
  border-radius: 3px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  color:#fff;
}*/
.cropper.__td .image-resize {
  position: absolute;
  top: 0;
  left: 0;
}

.cropper.__td .image-resize a {
  display: block;
  width: 44px;
  height: 44px;
  color: white;
  margin: 0 0 5px 0;
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

.cropper.__td .image-resize-plus {
  background-image: url("../src/images/td/crop-plus.png");
}

.cropper.__td .image-resize-minus {
  background-image: url("../src/images/td/crop-minus.png");
}

.cropper.__td .image-proportion {
  position: absolute;
  top: 0;
  right: 0;
}

.cropper.__td .image-proportion a {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 5px 0;
  position: relative;
}

.cropper.__td .proportion-1-1 {
  background-image: url("../src/images/td/crop-prop-1-1.png");
}

.cropper.__td .proportion-1-2 {
  background-image: url("../src/images/td/crop-prop-1-2.png");
}

.cropper.__td .proportion-2-1 {
  background-image: url("../src/images/td/crop-prop-2-1.png");
}

.cropper.__td .image-resize a,
.cropper.__td .image-proportion a {
  background-color: #ccc;
}

.cropper.__td .proportion-1-1._active,
.cropper.__td .proportion-1-2._active,
.cropper.__td .proportion-2-1._active,
.cropper.__td .image-resize-plus:active,
.cropper.__td .image-resize-minus:active {
  background-color: #285219;
}

.cropper.__td .file-upload {
  text-align: center;
}

@media (min-width: 320px) and (max-width: 980px) {
  .cropper.__td .file-upload {
    float: none;
    text-align: center;
  }
}

.cropper.__td .file-upload span {
  border-bottom: 1px solid #323232;
  font-size: 18px;
  color: #656565;
  cursor: pointer;
}

.cropper.__td .file-upload input[type="file"] {
  position: absolute;
  left: -3000px;
}

.cropper.__td .filename {
  background: transparent;
  border: 0;
}

.cropper.__td .modal-cropper {
  position: absolute;
}

.cropper.__td .upload-container {
  position: absolute;
  margin-top: 10px;
}

@media (min-width: 320px) and (max-width: 980px) {
  .cropper.__td .upload-container {
    margin-top: 0;
    left: 50%;
    top: 25px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.cropper.__td .upload-holder {
  position: relative;
  padding: 30px 0 18px;
  background-color: #f4f4f4;
}

@media (min-width: 320px) and (max-width: 980px) {
  .cropper.__td .upload-holder {
    padding: 62px 0 18px;
  }
}

.cropper.__td .__comment-form-submit {
  width: 181px;
  border: none;
  cursor: pointer;
  height: 48px;
  line-height: 48px;
  border: none;
  background-color: #285219;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 30px;
  font-family: Involve;
}

@media screen and (min-width: 320px) and (max-width: 580px) {
  .cropper.__td .__comment-form-submit {
    width: 141px;
    height: 46px;
    line-height: 46px;
  }
}

/* /croper */
/* ====================== COMMON =================== */
.aderma-main {
  width: 100%;
  padding: 36px 20px 40px;
  box-sizing: border-box;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, #275018 0%, #52a53a 100%);
  position: relative;
  z-index: 1;
  /*.a-d-s {
			display:none;
			@media screen and (min-width: 320px) and (max-width: 579px) {
				display:block;
			}
		}*/
}

@media (min-width: 1210px) {
  .aderma-main {
    padding-left: calc((100% - 1170px) / 2);
    padding-right: calc((100% - 1170px) / 2);
  }
}

.aderma-main * {
  box-sizing: border-box;
}

.aderma-main img {
  display: block;
  max-width: 100%;
  height: auto;
}

.aderma-main .spo-the-law-on-advertising {
  position: relative;
  padding: 10px 20px;
  font-size: 11px;
  line-height: 14px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
  text-align: right;
}

.aderma-main .spo-the-law-on-advertising a {
  text-decoration: underline;
  color: #101010;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-main .spo-the-law-on-advertising a {
    color: #101010;
  }
}

.aderma-main .spo-the-law-on-advertising br {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-main .spo-the-law-on-advertising br {
    display: inline;
  }
}

.aderma-main .drop {
  background-position: 0 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  transition: all .3s ease-out;
  pointer-events: none;
  will-change: transform;
  position: absolute;
  z-index: -1;
}

.aderma-main .drop.drop-01 {
  width: 600px;
  height: 1010px;
  background-image: url(../src/images/common/drop-1.png);
}

.aderma-main .drop.drop-02 {
  width: 600px;
  height: 1018px;
  background-image: url(../src/images/common/drop-2.png);
}

.aderma-main .drop.item-1 {
  right: calc(50% + 390px);
  top: -260px;
}

.aderma-main .drop.item-2 {
  left: calc(50% + 490px);
  top: 682px;
}

.aderma-main .drop.item-3 {
  right: calc(50% + 420px);
  top: 1860px;
}

.aderma-main .drop.item-4 {
  left: calc(50% + 520px);
  top: 2860px;
}

.aderma-main .drop.item-5 {
  right: calc(50% + 420px);
  top: 4220px;
}

.aderma-main .drop.item-6 {
  left: calc(50% + 520px);
  top: 5417px;
}

.aderma-main .drop.item-7 {
  right: calc(50% + 420px);
  top: 6723px;
}

.aderma-main .drop.item-8 {
  left: calc(50% + 454px);
  top: 7821px;
}

.aderma-main .drop.item-9 {
  right: calc(50% + 360px);
  top: 9005px;
}

.aderma-footer {
  padding: 120px 0 0;
  color: #d2d2d2;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-footer {
    padding: 80px 0 0;
  }
}

.aderma-footer .notes {
  width: 100%;
  max-width: 770px;
  margin: 0 auto 42px;
  font-size: 16px;
  word-wrap: break-word;
}

.aderma-footer .notes ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.aderma-sharing {
  display: inline-block;
  text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .aderma-sharing {
    display: block;
    width: 300px;
    margin: 0 auto;
  }
}

.aderma-sharing__list {
  font-size: 0;
  margin: 5px 0 15px;
}

.aderma-sharing__item {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 10px 0 10px;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .aderma-sharing__item {
    margin: 10px 5px 0 5px;
  }
}

@media screen and (min-width: 375px) and (max-width: 579px) {
  .aderma-sharing__item {
    margin: 10px 8px 0 8px;
  }
}

.aderma-sharing__link {
  display: block;
  width: 40px;
  height: 40px;
  transition: all .2s linear;
  transform: translate3d(0, 0, 0);
  -ms-transform-origin: center center;
      transform-origin: center center;
  border-radius: 50%;
  background-color: black;
  box-sizing: border-box;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .aderma-sharing__link {
    width: 30px;
    height: 30px;
  }
}

.aderma-sharing__link._bb {
  padding: 15%;
}

.aderma-sharing__link._fb, .aderma-sharing__link._ok, .aderma-sharing__link._wt, .aderma-sharing__link._vb, .aderma-sharing__link._vk {
  padding: 20%;
}

.aderma-sharing__link._tg {
  padding: 25% 0 10%;
}

.aderma-sharing__link._bb {
  border-color: #ef498f;
  background-color: #ef498f;
}

.aderma-sharing__link._bb:hover {
  background-color: rgba(239, 73, 143, 0.8);
}

.aderma-sharing__link._vk {
  border-color: #0077ff;
  background-color: #0077ff;
}

.aderma-sharing__link._vk:hover {
  background-color: rgba(0, 119, 255, 0.8);
}

.aderma-sharing__link._ok {
  border-color: #f7931e;
  background-color: #f7931e;
}

.aderma-sharing__link._ok:hover {
  background-color: rgba(247, 147, 30, 0.8);
}

.aderma-sharing__link._tg {
  border-color: #2aabee;
  background-color: #2aabee;
}

.aderma-sharing__link._tg:hover {
  background-color: rgba(42, 171, 238, 0.8);
}

.aderma-sharing__link._wt {
  border-color: #0dc143;
  background-color: #0dc143;
}

.aderma-sharing__link._wt:hover {
  background-color: rgba(13, 193, 67, 0.8);
}

.aderma-sharing__link._vb {
  border-color: #675da9;
  background-color: #675da9;
}

.aderma-sharing__link._vb:hover {
  background-color: rgba(103, 93, 169, 0.8);
}

.aderma-sharing__link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.aderma-sharing__link:hover {
  -ms-transform: scale(1.2);
      transform: scale(1.2);
  background-color: #141414;
}

.aderma-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: rgba(30, 30, 30, 0.9);
  z-index: 1300000;
  overflow: auto;
}

@media screen and (max-width: 759px) {
  .aderma-modal {
    display: block;
  }
}

.aderma-modal.long-read {
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
}

.aderma-modal__wrap {
  width: 1170px;
  margin: 70px 0;
}

@media screen and (max-width: 579px) {
  .aderma-modal__wrap {
    margin: 30px 0;
  }
}

@media screen and (max-width: 1199px) {
  .aderma-modal__wrap {
    width: unset;
    max-width: 960px;
  }
}

.aderma-modal__wrap.wrap-candidate {
  max-width: 670px;
  margin: 70px 0;
}

@media screen and (max-width: 579px) {
  .aderma-modal__wrap.wrap-candidate {
    margin: 30px 0;
  }
}

.aderma-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 23px;
  height: 23px;
  z-index: 1;
  cursor: pointer;
}

.aderma-modal__close svg {
  height: 100%;
  width: 100%;
  fill: #ffffff;
}

.aderma-modal-popup__content {
  padding: 32px;
  background-color: #254C17;
  border-radius: 16px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-modal-popup__content {
    padding: 32px 20px;
  }
}

.aderma-modal-popup__content--rules {
  padding: 40px 0;
  font-size: 16px;
}

.aderma-modal-popup__content--rules .title {
  font-size: 44px;
  font-weight: 700;
}

.aderma-modal-popup__content--rules a {
  color: inherit;
  text-decoration: underline;
}

.aderma-modal-popup__title {
  padding: 0 40px 30px;
  text-align: left;
}

.aderma-modal-popup__scroll {
  height: 400px;
}

.aderma-modal-popup__scroll-bar {
  position: absolute;
  width: 40px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #e1eefa;
}

.aderma-modal-popup__rules-text {
  padding: 0 40px;
}

.aderma-modal-popup__long-content .product-popup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup {
    gap: 42px;
  }
}

.aderma-modal-popup__long-content .product-popup .description {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .description {
    gap: 75px;
    padding: 0 36px;
    font-size: 32px;
  }
}

.aderma-modal-popup__long-content .product-popup .description > img {
  display: none;
}

@media (min-width: 500px) {
  .aderma-modal-popup__long-content .product-popup .description > img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 125px;
    object-fit: contain;
    object-position: center top;
  }
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .description > img {
    width: 202px;
  }
}

@media (min-width: 1200px) {
  .aderma-modal-popup__long-content .product-popup .description > img {
    object-position: center center;
  }
}

.aderma-modal-popup__long-content .product-popup .description > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
}

.aderma-modal-popup__long-content .product-popup .description > div img {
  width: auto;
  height: 364px;
  object-fit: contain;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .aderma-modal-popup__long-content .product-popup .description > div img {
    display: none;
  }
}

.aderma-modal-popup__long-content .product-popup .description .title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .description .title {
    font-size: 40px;
  }
}

.aderma-modal-popup__long-content .product-popup .description ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  font-weight: 400;
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .description ul {
    margin-top: 54px;
  }
}

.aderma-modal-popup__long-content .product-popup .description li {
  padding: 24px 20px;
  border-radius: 12px;
  background: #656565;
  mix-blend-mode: overlay;
}

@media (min-width: 500px) {
  .aderma-modal-popup__long-content .product-popup .description li {
    padding: 24px 36px;
  }
}

.aderma-modal-popup__long-content .product-popup .method {
  border-radius: 16px;
  background: #1d3c12;
}

.aderma-modal-popup__long-content .product-popup .method button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  border: unset;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  background: unset;
  cursor: pointer;
}

@media (min-width: 500px) {
  .aderma-modal-popup__long-content .product-popup .method button {
    padding: 0 34px;
  }
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .method button {
    height: 134px;
    font-size: 36px;
  }
}

.aderma-modal-popup__long-content .product-popup .method button::after {
  content: '+';
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  aspect-ratio: 1;
  box-sizing: border-box;
  padding-bottom: 2px;
  border-radius: 50%;
  font-weight: 500;
  background: #17300e;
  transition: all .3s ease-in-out;
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .method button::after {
    width: 70px;
    padding-bottom: 5px;
  }
}

.aderma-modal-popup__long-content .product-popup .method button.is-active::after {
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.aderma-modal-popup__long-content .product-popup .method > div {
  display: none;
  padding: 0 20px 32px;
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 500px) {
  .aderma-modal-popup__long-content .product-popup .method > div {
    padding: 0 34px 32px;
  }
}

@media (min-width: 900px) {
  .aderma-modal-popup__long-content .product-popup .method > div {
    padding-top: 28px;
    font-size: 36px;
  }
}

.aderma-modal-popup__long-content .product-popup .method > div > *:not(:last-child) {
  margin-bottom: 12px;
}

.aderma-modal-popup__rules-text {
  font-family: Arial, Helvetica, sans-serif;
  /* fix for BB css*/
  /*ol li {
					font-weight:bold;
					padding-top:15px;
				}
				ol ol li, ol ol ol li, ol ol ol ol li {
					font-weight:normal;
					padding-top:0;
				}
				li {
					list-style-type: none;
					margin:5px 10px;
				}
				ol { counter-reset: list1; }
				ol li:before {
					counter-increment: list1;
					content: counter(list1) ". ";
					font-weight:bold;
				}
				ol ol { counter-reset: list2; }
				ol ol li:before {
					counter-increment: list2;
					content: counter(list1) "." counter(list2) ". ";
					font-weight:bold;
				}

				ol ol ol { counter-reset: list3; }
				ol ol ol li:before {
					counter-increment: list3;
					content: counter(list1) "." counter(list2)  "." counter(list3) ". ";
					font-weight:bold;
				}

				ol ol ol ol { counter-reset: list4; }
				ol ol ol ol li:before {
					counter-increment: list4;
					content: counter(list1) "." counter(list2) "." counter(list3)  "." counter(list4) ". ";
					font-weight:bold;
				}*/
  /* /fix for BB css*/
}

.aderma-modal-popup__rules-text b {
  font-weight: bold;
}

@media screen and (max-width: 579px) {
  .aderma-modal-popup__rules-text {
    padding-left: 20px;
  }
}

.aderma-modal-popup__rules-text ul {
  list-style-type: disc;
  margin-left: 20px;
}

.aderma-modal-popup__rules-text ul li {
  list-style-type: disc !important;
}

.aderma-modal-popup__rules-text ul li:before {
  display: none;
}

.aderma-modal-popup__rules-text ol {
  counter-reset: section;
  list-style-type: none;
}

.aderma-modal-popup__rules-text li::before {
  counter-increment: section;
  content: counters(section, ".") ". ";
  font-weight: bold;
}

.aderma-modal-popup__rules-text ol li {
  font-weight: bold;
  padding-top: 15px;
}

.aderma-modal-popup__rules-text ol ol li, .aderma-modal-popup__rules-text ol ol ol li, .aderma-modal-popup__rules-text ol ol ol ol li {
  font-weight: normal;
  padding-top: 0;
}

.aderma-modal-popup__rules-text li {
  margin: 5px 10px;
}

/* blur */
/* ====================== ELEMENTS =================== */
/* ====================== MODULES =================== */
/* ====================== SECTIONS =================== */
.aderma-section-1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-bottom: 78px;
}

.aderma-section-1 button {
  display: block;
  padding: unset;
  border: unset;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: unset;
  cursor: pointer;
}

.aderma-section-1 menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .aderma-section-1 menu {
    gap: 20px;
  }
}

.aderma-section-1 menu a, .aderma-section-1 menu span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 40px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #59b537 0%, #1c3911 100%);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media (min-width: 500px) {
  .aderma-section-1 menu a, .aderma-section-1 menu span {
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
  }
}

.aderma-section-1 menu a img, .aderma-section-1 menu span img {
  width: 60px;
  margin: 0 5px;
}

@media (min-width: 500px) {
  .aderma-section-1 menu a img, .aderma-section-1 menu span img {
    width: 100px;
  }
}

.aderma-section-1 menu menuitem:first-child span {
  color: #274f18;
  background: #ffffff;
}

.aderma-section-1 .logo-aderma {
  display: block;
  margin: 44px auto 64px;
}

.aderma-section-1 .logo-aderma img {
  width: 300px;
}

.aderma-section-1 .logo-exomega {
  display: block;
  margin: 80px auto 0;
}

@media (min-width: 700px) {
  .aderma-section-1 .logo-exomega {
    margin-top: 116px;
  }
}

.aderma-section-1 .logo-exomega img {
  width: 286px;
}

.aderma-section-1 .block-1 {
  padding: 380px 20px 40px 20px;
  border-radius: 16px;
  overflow: hidden;
  font-size: 30px;
  font-weight: 500;
  background-color: rgba(28, 57, 17, 0.4);
  position: relative;
  z-index: 1;
}

@media (min-width: 500px) {
  .aderma-section-1 .block-1 {
    padding-top: 460px;
  }
}

@media (min-width: 700px) {
  .aderma-section-1 .block-1 {
    min-height: 560px;
    padding: 72px 300px 72px 56px;
  }
}

@media (min-width: 900px) {
  .aderma-section-1 .block-1 {
    padding-right: 455px;
    font-size: 40px;
  }
}

.aderma-section-1 .block-1::before {
  content: '';
  width: 100%;
  height: 340px;
  background: url(../src/images/common/01.png) 0 0/cover no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}

@media (min-width: 500px) {
  .aderma-section-1 .block-1::before {
    height: 420px;
  }
}

@media (min-width: 700px) {
  .aderma-section-1 .block-1::before {
    width: 432px;
    height: 100%;
    right: -100px;
  }
}

@media (min-width: 900px) {
  .aderma-section-1 .block-1::before {
    right: 0;
  }
}

.aderma-section-1 .block-1::after {
  content: '';
  width: 305px;
  height: 246px;
  background: url(../src/images/common/02.png) 0 0/cover no-repeat;
  position: absolute;
  right: -72px;
  top: 94px;
  z-index: -1;
}

@media (min-width: 500px) {
  .aderma-section-1 .block-1::after {
    width: 419px;
    height: 338px;
    right: -100px;
    top: 82px;
  }
}

@media (min-width: 700px) {
  .aderma-section-1 .block-1::after {
    top: unset;
    bottom: 0;
    right: 68px;
  }
}

@media (min-width: 900px) {
  .aderma-section-1 .block-1::after {
    right: 180px;
  }
}

@media (min-width: 1170px) {
  .aderma-section-1 .block-1::after {
    right: 291px;
  }
}

.aderma-section-1 .block-1 strong {
  font-weight: 700;
}

.aderma-section-1 .block-2 {
  padding: 36px 20px;
  margin-top: 52px;
  border-radius: 16px;
  font-size: 24px;
  text-align: center;
  background-color: rgba(28, 57, 17, 0.4);
}

@media (min-width: 700px) {
  .aderma-section-1 .block-2 {
    padding: 36px 46px;
    font-size: 32px;
  }
}

.aderma-section-1 .block-2 strong {
  font-weight: 700;
}

.aderma-section-1 .block-2 .title {
  margin-bottom: 48px;
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-2 .title {
    font-size: 40px;
  }
}

.aderma-section-1 .block-3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
  margin-top: 74px;
  position: relative;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-3 {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 {
    display: block;
    gap: unset;
  }
}

.aderma-section-1 .block-3 > div {
  width: 100px;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-3 > div {
    width: 294px;
    height: 933px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 > div {
    margin: 0 auto;
  }
}

.aderma-section-1 .block-3 > div::before {
  content: '';
  width: 100%;
  height: 45px;
  border-radius: 50%;
  background: #1c3911;
  filter: blur(15px);
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: -1;
}

.aderma-section-1 .block-3 > div img {
  width: 100%;
  height: auto;
}

.aderma-section-1 .block-3 ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul {
    font-size: 30px;
  }
}

.aderma-section-1 .block-3 ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
  max-width: 400px;
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li {
    display: block;
    gap: unset;
    max-width: unset;
    position: absolute;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li::before {
    content: '';
    height: 2px;
    background: #ffffff;
    position: absolute;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
  }
}

.aderma-section-1 .block-3 ul li img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-3 ul li img {
    width: 140px;
    height: 140px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li img {
    max-width: unset;
    position: absolute;
  }
}

.aderma-section-1 .block-3 ul li span {
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-1 {
    width: 403px;
    padding: 99px 0 0 174px;
    left: 14px;
    top: 162px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-1::before {
    width: 229px;
    right: 0;
    top: 74px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-1::after {
    right: -5px;
    top: 70px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-1 img {
    width: 150px;
    height: 150px;
    left: 0;
    top: 0;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-2 {
    width: 388px;
    padding: 171px 0 0 106px;
    left: 29px;
    top: 420px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-2::before {
    width: 282px;
    right: 0;
    top: 144px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-2::after {
    right: -5px;
    top: 140px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-2 img {
    width: 93px;
    height: 290px;
    left: 0;
    top: 0;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-3 {
    width: 310px;
    right: 95px;
    top: 214px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-3::before {
    width: 229px;
    left: 0;
    top: -33px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-3::after {
    left: 0;
    top: -37px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-3 img {
    width: 183px;
    height: 187px;
    right: -126px;
    top: -125px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-4 {
    width: 157px;
    right: 248px;
    top: 574px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-4::before {
    width: 229px;
    left: 0;
    top: -30px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-4::after {
    left: 0;
    top: -34px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-4 img {
    width: 154px;
    height: 154px;
    right: -250px;
    top: -106px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-5 {
    width: 204px;
    right: 201px;
    top: 801px;
  }
}

.aderma-section-1 .block-3 ul li.item-5::before {
  width: 229px;
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-5::before {
    left: 0;
    top: -33px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-5::after {
    left: 0;
    top: -37px;
  }
}

@media (min-width: 1200px) {
  .aderma-section-1 .block-3 ul li.item-5 img {
    width: 148px;
    height: 148px;
    right: -197px;
    top: -106px;
  }
}

.aderma-section-1 .block-4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 84px;
  margin-top: 80px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-4 {
    margin-top: 157px;
  }
}

.aderma-section-1 .block-4 .list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: fit-content;
  min-height: 92px;
  padding: 17px 12px 17px 100px;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(28, 57, 17, 0.4);
  position: relative;
}

@media (min-width: 900px) {
  .aderma-section-1 .block-4 .list-item {
    font-size: 36px;
  }
}

.aderma-section-1 .block-4 .list-item::before {
  content: '';
  width: 64px;
  height: 60px;
  background: url(../src/images/common/09.png) 0 0/100% no-repeat;
  position: absolute;
  left: 12px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.aderma-section-1 .block-4 .list-item em {
  font-size: 34px;
  font-style: normal;
  color: #F39100;
}

@media (min-width: 900px) {
  .aderma-section-1 .block-4 .list-item em {
    font-size: 48px;
  }
}

.aderma-section-1 .block-4 .list-item sup {
  font-size: 18px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-4 .list-item sup {
    position: relative;
    top: -5px;
  }
}

@media (min-width: 900px) {
  .aderma-section-1 .block-4 .list-item sup {
    font-size: 22px;
  }
}

.aderma-section-1 .block-4 .list-item strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  text-transform: lowercase;
}

.aderma-section-1 .block-4 .video {
  width: calc(100% - 90px);
  max-width: 450px;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}

.aderma-section-1 .block-4 .video::before {
  content: '';
  width: calc(100% + 90px);
  aspect-ratio: 1;
  background: url(../src/images/common/26.svg) 0 0/100% no-repeat;
  position: absolute;
  left: -45px;
  top: -45px;
  z-index: -1;
  animation: rotate 10s linear infinite;
}

.aderma-section-1 .block-4 .video iframe, .aderma-section-1 .block-4 .video img, .aderma-section-1 .block-4 .video div {
  width: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.aderma-section-1 .block-4 .video div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aderma-section-1 .block-4 .video iframe {
  width: calc(100% + 354px);
  height: calc(100% + 120px);
}

.aderma-section-1 .block-4 .video img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.aderma-section-1 .block-4 .video.is-active img {
  display: none;
}

.aderma-section-1 .block-4 .video.is-active iframe {
  opacity: 1;
}

.aderma-section-1 .block-4 .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
}

@media (min-width: 1380px) {
  .aderma-section-1 .block-4 .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: unset;
    width: 1350px;
  }
}

@media (min-width: 1530px) {
  .aderma-section-1 .block-4 .grid {
    width: 1507px;
  }
}

.aderma-section-1 .block-4 .grid .list-item {
  max-width: 646px;
}

.aderma-section-1 .block-5 {
  margin-top: 80px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 {
    margin-top: 105px;
    margin-bottom: 50px;
  }
}

.aderma-section-1 .block-5 .title {
  margin-bottom: 28px;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 .title {
    font-size: 64px;
  }
}

.aderma-section-1 .block-5 > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
}

@media (min-width: 1100px) {
  .aderma-section-1 .block-5 > div {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: unset;
  }
}

.aderma-section-1 .block-5 .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 435px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 .left {
    max-width: 517px;
  }
}

.aderma-section-1 .block-5 .left img {
  width: 442px;
}

.aderma-section-1 .block-5 .left button {
  width: 100%;
  max-width: 252px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 .left button {
    max-width: 335px;
    font-size: 32px;
  }
}

.aderma-section-1 .block-5 .left button:last-child {
  margin-left: auto;
}

.aderma-section-1 .block-5 .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 525px;
  padding: 24px 24px 44px;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background-color: rgba(28, 57, 17, 0.4);
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 .right {
    font-size: 32px;
  }
}

.aderma-section-1 .block-5 .right img {
  width: 100%;
  border-radius: 12px;
}

.aderma-section-1 .block-5 .right p {
  margin: 0 10px;
}

.aderma-section-1 .block-5 .right em {
  font-size: 34px;
  font-style: normal;
  color: #F39100;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-5 .right em {
    font-size: 42px;
  }
}

.aderma-section-1 .block-6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 72px;
  padding-top: 72px;
}

.aderma-section-1 .block-6 .title {
  margin-bottom: -18px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #F39100;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-6 .title {
    font-size: 48px;
  }
}

.aderma-section-1 .block-6 .title sup {
  font-size: 22px;
}

@media (min-width: 700px) {
  .aderma-section-1 .block-6 .title sup {
    font-size: 32px;
  }
}

.aderma-section-1 .block-6 .swiper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media (min-width: 440px) {
  .aderma-section-1 .block-6 .swiper {
    width: 398px;
  }
}

@media (min-width: 850px) {
  .aderma-section-1 .block-6 .swiper {
    width: 812px;
  }
}

@media (min-width: 1260px) {
  .aderma-section-1 .block-6 .swiper {
    width: calc(100% + 54px);
    margin-left: -27px;
  }
}

.aderma-section-1 .block-6 .swiper-slide {
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  min-height: 343px;
  padding: 24px;
  border: 1px solid #65cd45;
  border-radius: 12px;
  background-color: rgba(28, 57, 17, 0.4);
  transition: all .3s ease-in-out;
}

.aderma-section-1 .block-6 .swiper-slide:hover {
  background-color: rgba(28, 57, 17, 0.8);
}

.aderma-section-1 .block-6 .swiper-slide > img {
  width: 108px;
  height: 295px;
  margin: auto 0;
  object-fit: contain;
}

@media (min-width: 440px) {
  .aderma-section-1 .block-6 .swiper-slide > img {
    width: 153px;
  }
}

.aderma-section-1 .block-6 .swiper-slide > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 26px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #61c542;
}

.aderma-section-1 .block-6 .swiper-slide .texture {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F39100;
}

.aderma-section-1 .block-6 .swiper-slide .texture div {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.aderma-section-1 .block-6 .swiper-slide .texture div img {
  width: 19px;
  height: 27px;
}

.aderma-section-1 .block-6 .btn, .aderma-section-1 .block-6 button {
  width: 75px;
  height: 48px;
  margin: auto 0 0 auto;
  border-radius: 8px;
  background: #2d6220 url(../src/images/common/21.svg) center/53px 15px no-repeat;
  cursor: pointer;
}

.aderma-section-1 .block-6 .buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 15px;
}

.aderma-section-1 .block-6 .buttons button {
  margin: 42px 0 0;
  position: unset;
  background-color: #2e6320;
}

.aderma-section-1 .block-6 .buttons button::after {
  display: none;
}

.aderma-section-1 .block-6 .buttons button.swiper-button-prev {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

.aderma-section-1 .block-6 .buttons button.swiper-button-disabled {
  background-color: #387827;
  opacity: 1;
}

.aderma-section-1 .block-6 .buttons button.swiper-button-lock {
  display: none;
}

.aderma-section-1 .block-6 .pagination {
  display: -ms-flexbox;
  display: flex;
  width: fit-content;
  gap: 16px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 22px;
}

@media (min-width: 850px) {
  .aderma-section-1 .block-6 .pagination {
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }
}

.aderma-section-1 .block-6 .pagination .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  margin: unset;
  border-radius: 2px;
  background: #306120;
  opacity: 1;
}

@media (min-width: 850px) {
  .aderma-section-1 .block-6 .pagination .swiper-pagination-bullet {
    width: 72px;
  }
}

.aderma-section-1 .block-6 .pagination .swiper-pagination-bullet-active {
  background: #76f050;
}

.aderma-section-1 .block-7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #254c17;
  background: linear-gradient(180deg, #dfe4e2 0%, #dbe0de 100%);
  position: relative;
  z-index: 1;
}

@media (min-width: 760px) {
  .aderma-section-1 .block-7 {
    gap: 48px;
    padding: 74px 70px;
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  .aderma-section-1 .block-7::before {
    content: '';
    width: 696px;
    height: 100%;
    background: url(../src/images/common/23.png) 100% 0/cover no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
}

.aderma-section-1 .block-7 p {
  max-width: 593px;
}

.aderma-section-1 .block-7 .title {
  font-size: 30px;
  font-weight: 700;
}

@media (min-width: 760px) {
  .aderma-section-1 .block-7 .title {
    font-size: 40px;
  }
}

.aderma-section-1 .block-7 a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: fit-content;
  height: 70px;
  padding: 0 30px;
  margin-top: 7px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #254C17;
}

@media (min-width: 760px) {
  .aderma-section-1 .block-7 a {
    height: 90px;
    padding: 0 56px;
    font-size: 36px;
  }
}

.aderma-section-1 .block-8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 80px;
}

@media (min-width: 450px) {
  .aderma-section-1 .block-8 {
    margin-top: 107px;
  }
}

.aderma-section-1 .block-8 .top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 15px;
  font-size: 18px;
}

@media (min-width: 450px) {
  .aderma-section-1 .block-8 .top {
    padding: 0 21px;
  }
}

@media (min-width: 980px) {
  .aderma-section-1 .block-8 .top {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: end;
        align-items: flex-end;
    padding-left: 41px;
  }
}

@media (min-width: 1060px) {
  .aderma-section-1 .block-8 .top {
    font-size: 24px;
  }
}

.aderma-section-1 .block-8 .top .title {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 600;
}

@media (min-width: 1060px) {
  .aderma-section-1 .block-8 .top .title {
    font-size: 36px;
  }
}

.aderma-section-1 .block-8 .top ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.aderma-section-1 .block-8 .top ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 20px;
}

.aderma-section-1 .block-8 .top ul li::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: url(../src/images/common/27.svg) 0% 0/100% no-repeat;
}

.aderma-section-1 .block-8 .top button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  width: fit-content;
  height: 69px;
  padding: 0 30px;
  margin-bottom: 60px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #285218;
  background: #ffffff;
}

@media (min-width: 1060px) {
  .aderma-section-1 .block-8 .top button {
    gap: 30px;
    padding: 0 54px;
  }
}

.aderma-section-1 .block-8 .top button img {
  width: 33px;
  height: 15px;
}

.aderma-section-1 .block-8 .top > img {
  width: 100%;
  height: 603px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

@media (min-width: 980px) {
  .aderma-section-1 .block-8 .top > img {
    width: 523px;
  }
}

.aderma-section-1 .block-8 .bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 0 0 25px 25px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}

@media (min-width: 450px) {
  .aderma-section-1 .block-8 .bottom {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 10px;
    border-radius: 25px;
    text-align: left;
  }
}

@media (min-width: 600px) {
  .aderma-section-1 .block-8 .bottom {
    padding: 30px 30px 30px 40px;
    font-size: 30px;
  }
}

@media (min-width: 1060px) {
  .aderma-section-1 .block-8 .bottom {
    font-size: 37px;
  }
}

.aderma-section-1 .block-8 .bottom div {
  border-radius: 0 0 25px 25px;
  background: #1C3911;
  mix-blend-mode: soft-light;
  position: absolute;
  inset: 0;
}

@media (min-width: 450px) {
  .aderma-section-1 .block-8 .bottom div {
    border-radius: 25px;
  }
}

.aderma-section-1 .block-8 .bottom p, .aderma-section-1 .block-8 .bottom a {
  position: relative;
  z-index: 1;
}

.aderma-section-1 .block-8 .bottom a {
  -ms-flex-order: -1;
      order: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 450px) {
  .aderma-section-1 .block-8 .bottom a {
    -ms-flex-order: unset;
        order: unset;
  }
}

.aderma-section-1 .block-8 .bottom a img {
  width: 116px;
}

@media (min-width: 600px) {
  .aderma-section-1 .block-8 .bottom a img {
    width: 170px;
  }
}

@media (min-width: 980px) {
  .aderma-section-1 .block-8 .bottom a img {
    width: 304px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-members {
    margin-top: 80px;
    padding: 0px;
  }
}

.aderma-td-members .td-title .title {
  padding-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.aderma-td-content {
  padding: 80px 0 0;
  /*----------------- */
  /*._td-bottom-link-container {
				padding: 10px 0 0 0;
				max-width:574px;
				margin:0 auto;
				display: flex;
				flex-flow: row wrap;
				align-items: flex-start;
				align-content: flex-start;
				@media screen and (min-width: 320px) and (max-width: 579px) {
					justify-content: space-between;
				}
//				._all-users-btn {
//					display:inline-block;
//					height:64px;
//					line-height:64px;
//					border-radius:32px;
//					padding:0 40px;
//					border:2px solid #f2f2f2;
//					font-size:20px;
//					color:getColor(blue);
//				}
				._link {
					display:block;
					margin-top:10px;
				}
				._link:nth-child(1) {
					margin-right:-104px;
					@media screen and (min-width: 320px) and (max-width: 579px) {
						margin-right:0;
					}
				}
				._link:nth-child(2) {
					margin:10px auto 0;
					@media screen and (min-width: 320px) and (max-width: 579px) {
						margin:10px 0 0;
					}
				}
			}*/
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content {
    padding: 0;
  }
}

.aderma-td-content .td-container-in {
  margin: 0 auto;
  max-width: 770px;
  color: #656565;
}

.aderma-td-content .td-container-in .td-order-container {
  padding: 60px;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-container-in .td-order-container {
    padding: 40px 20px;
  }
}

.aderma-td-content .td-container-in .td-order-container + p.note {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-container-in .td-order-container + p.note {
    font-size: 16px;
  }
}

.aderma-td-content .td-container-in .td-order-container .td-title .title {
  padding-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #285219;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-container-in .td-order-container .td-title .title {
    font-size: 32px;
  }
}

.aderma-td-content .td-container-in .td-message-container {
  padding: 0 40px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-container-in .td-message-container {
    border-radius: 0;
    padding: 0px 0px;
  }
}

.aderma-td-content .td-container-in .td-message-container .td-title .title {
  color: #ffffff;
}

.aderma-td-content .td-container-in .td-message-container img {
  display: inline-block;
}

.aderma-td-content .td-container-in .td-order-container ._link, .aderma-td-content .td-container-in .td-message-container ._link {
  color: #285219;
  border-bottom: 1px solid rgba(40, 82, 25, 0.3);
  margin-top: 30px;
  display: inline-block;
  font-size: 18px;
}

.aderma-td-content .td-title {
  max-width: 580px;
  margin: 0 auto;
}

.aderma-td-content .td-title.your-review {
  margin: 40px auto 0;
}

.aderma-td-content .td-title.your-review h2 {
  color: #ffffff;
}

.aderma-td-content .td-title h2 {
  padding: 0 0 30px;
}

@media screen and (min-width: 320px) and (max-width: 479px) {
  .aderma-td-content .td-title h2 {
    padding: 0 0 20px;
  }
}

@media screen and (min-width: 580px) and (max-width: 959px) {
  .aderma-td-content .td-title h2 {
    padding: 0 0 20px;
  }
}

.aderma-td-content .td-title h2 b {
  white-space: nowrap;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-title h2 br {
    display: none;
  }
}

.aderma-td-content .td-title p {
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #343434;
  padding: 0 0 20px 0;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-title p {
    font-size: 16px;
    font-weight: 600;
  }
}

.aderma-td-content .td-message-info {
  padding: 50px 0 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px dashed #65cd45;
  box-sizing: border-box;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 320px) and (max-width: 479px) {
  .aderma-td-content .td-message-info {
    padding: 40px 0 0;
  }
}

.aderma-td-content .td-message-info + .tac ._link {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.aderma-td-content .td-message-info ._animate-spin {
  display: inline-block;
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.aderma-td-content .td-message-info h1 {
  font-size: 36px;
  line-height: 120%;
  padding: 20px 0 20px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-message-info h1 {
    font-size: 32px;
    padding: 20px 0 20px;
  }
}

@media screen and (min-width: 580px) and (max-width: 959px) {
  .aderma-td-content .td-message-info h1 {
    font-size: 32px;
    padding: 20px 0 20px;
  }
}

.aderma-td-content .td-message-info p {
  font-size: 18px;
  line-height: 140%;
  padding: 30px 65px 70px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-message-info p {
    padding: 20px 30px 70px;
    font-size: 16px;
    font-weight: 300;
  }
}

.aderma-td-content .td-message-info p ._enter {
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.aderma-td-content .td-message-info p.__login {
  padding: 30px 80px 70px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-message-info p.__login {
    padding: 20px 30px 70px;
  }
}

.aderma-td-content .td-message-info a {
  margin: 0 0 50px 0;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-message-info a {
    margin: 0 0 30px 0;
  }
}

.aderma-td-content .td-participant .participant-block {
  position: relative;
  max-width: 840px;
  margin: 30px auto 0;
  padding: 30px 60px 35px 140px;
  background: #ffffff;
  border-radius: 25px;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block {
    margin-top: 90px;
    padding: 55px 12px 30px;
  }
}

.aderma-td-content .td-participant .participant-block-edit {
  background: #f5f5f5;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block-edit {
    margin-top: 60px;
    padding: 55px 12px 30px;
  }
}

.aderma-td-content .td-participant .participant-block.winner:before {
  content: "";
  position: absolute;
  background-image: url("../src/images/td/winner.svg");
  background-repeat: no-repeat;
  width: 130px;
  height: 117px;
  top: -5px;
  left: 17px;
  z-index: 1;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block.winner:before {
    top: -81px;
    left: 50%;
    margin-left: -65px;
  }
}

.aderma-td-content .td-participant .participant-block .ava {
  position: absolute;
  top: 35px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .ava {
    top: -40px;
    left: calc(50% - 40px);
  }
}

.aderma-td-content .td-participant .participant-block .name {
  font-size: 16px;
  line-height: 100%;
  text-align: left;
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.aderma-td-content .td-participant .participant-block .city {
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
  padding: 0;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .name, .aderma-td-content .td-participant .participant-block .city {
    text-align: center;
  }
}

.aderma-td-content .td-participant .participant-block .review {
  font-size: 16px;
}

.aderma-td-content .td-participant .participant-block .review p {
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
  text-align: left;
  padding: 0;
  min-height: 50px;
}

.aderma-td-content .td-participant .participant-block .review p + p {
  margin-top: 10px;
}

.aderma-td-content .td-participant .participant-block .review .btn-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .review .btn-wrap {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .review .btn-wrap .show-more-btn {
    display: inline-block;
    width: max-content;
    margin: 10px 0 0 0;
  }
}

.aderma-td-content .td-participant .participant-block .full-review {
  margin-top: 10px;
  display: none;
  margin-left: -80px;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .full-review {
    margin-left: 0px;
  }
}

.aderma-td-content .td-participant .participant-block .full-review img {
  margin: 10px 0;
}

.aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-prev, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-prev {
  left: -8%;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-prev, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-prev {
    left: -4%;
  }
}

.aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-next, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-next {
  right: -8%;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-next, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button.owl-next {
    right: -4%;
  }
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button img, .aderma-td-content .td-participant .participant-block .full-review .owl-carousel .owl-nav button img {
    max-width: 70%;
  }
}

.aderma-td-content .td-participant .participant-block .show-more-btn {
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  background: #285219;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 150%;
  color: #ffffff !important;
}

@media (max-width: 750px) {
  .aderma-td-content .td-participant .participant-block .show-more-btn {
    display: block;
    width: max-content;
    margin: 10px auto 0;
  }
}

.aderma-td-content .td-participant .participant-block .edit-btn {
  display: inline-block;
  padding: 10px;
  background: #EF498F;
  border-radius: 50%;
  margin: 10px 0 0 10px;
}

.aderma-td-content .td-participant .participant-pagination {
  max-width: 296px;
  display: -ms-flexbox;
  display: flex;
  margin: 55px auto 0;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 20px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-td-content .td-participant .participant-pagination {
    max-width: 250px;
    margin: 40px auto 0;
    font-size: 18px;
  }
}

.aderma-td-content .td-participant .participant-pagination a {
  color: #ffffff;
  margin: 0 15px;
}

.aderma-td-content .td-participant .participant-pagination .active {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.aderma-td-content .td-participant .participant-pagination .active:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: #285219;
  border-radius: 50%;
  z-index: -1;
  left: calc(50% - 20px);
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .aderma-td-content .td-participant .participant-pagination .active:before {
    width: 30px;
    height: 30px;
    left: calc(50% - 15px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Форма */
/* Поля формы */
/* Подсказки над полями */
._td-form {
  /* Контейнер для полей формы */
  /* Поля формы */
  /* Группа полей */
  /* Разделительная линия формы */
  /* Выбор, радио кнопки */
}

._td-form-container {
  font-family: Involve;
  /* Firefox 19+ */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* Firefox 18- */
  /* img form */
  /* /img form */
  /* Кнопки формы */
  /*.addbutton {
			position: relative;
			margin: 10px auto 0;
			height: 40px;
			width: 40px;
			border-radius: 50%;
			cursor: pointer;
			background-color: #74C7F1;
			&:before {
				width: 20px;
				height: 20px;
				position: absolute;
				top: 50%;
				left: 50%;
				-webkit-transform: translate(-50%, -50%);
				-ms-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
				content: "";
				display: block;
				background-image: url(../src/images/td/plus.svg);
				background-size: contain;
			}
		}*/
}

._td-form-container input:-webkit-autofill,
._td-form-container input:-webkit-autofill:focus,
._td-form-container input:-webkit-autofill:hover,
._td-form-container input:-webkit-autofill:active,
._td-form-container select:-webkit-autofill,
._td-form-container textarea:-webkit-autofill {
  background: #ffffff !important;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

._td-form-container input.right-placeholder::-webkit-input-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: right;
}

._td-form-container input.right-placeholder::-moz-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: right;
}

._td-form-container input.right-placeholder:-moz-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: right;
}

._td-form-container input.right-placeholder:-ms-input-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: right;
}

._td-form-container input::-webkit-input-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: left;
}

._td-form-container input::-moz-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: left;
}

._td-form-container input:-moz-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: left;
}

._td-form-container input:-ms-input-placeholder {
  color: rgba(50, 50, 50, 0.23);
  text-align: left;
}

._td-form-container label {
  vertical-align: middle;
}

._td-form-container input {
  width: 100%;
  height: 50px;
  padding: 0 10px 0 10px;
  background-color: #f7f7f7 !important;
  border: none;
  border-radius: 10px;
  outline: 0;
  font-size: 18px;
  font-family: Involve;
}

._td-form-container input._success {
  box-shadow: inset 0px 0px 5px 0px rgba(110, 199, 43, 0.75);
}

._td-form-container input.error, ._td-form-container input._error {
  box-shadow: inset 0px 0px 5px 0px rgba(255, 6, 19, 0.75);
}

._td-form-container input[type=file] {
  position: absolute;
  outline: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 0;
  height: 0;
  z-index: -1;
}

._td-form-container .input-file {
  width: 130px;
  height: 130px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  transition: border 300ms ease;
  cursor: pointer;
  text-align: center;
}

._td-form-container .input-file i {
  display: block;
  padding-bottom: 16px;
}

._td-form-container .input-file i,
._td-form-container .input-file .title {
  color: #ccc;
  transition: 200ms color;
}

._td-form-container .input-file:hover {
  border: 2px solid grey;
}

._td-form-container .input-file:hover i,
._td-form-container .input-file:hover .title {
  color: grey;
}

._td-form-container .input-file-list-item {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 5px;
  background-position: 50% 50%;
  background-size: cover;
}

._td-form-container .input-file-list-item .input-file-list-remove {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 10px;
  right: 10px;
  background-image: url("../src/images/td/img-dell.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

._td-form-container .input-file-pdf {
  position: relative;
  display: inline-block;
  /* Focus */
  /* Hover/Active */
  /* Disabled */
}

._td-form-container .input-file-pdf .input-file-text {
  padding: 0 10px;
  line-height: 40px;
  text-align: left;
  height: 40px;
  display: block;
  float: left;
  box-sizing: border-box;
  width: 200px;
  border-radius: 5px 0px 0 5px;
  border: 1px solid #ddd;
  background: white;
  font-size: 18px;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  ._td-form-container .input-file-pdf .input-file-text {
    width: 130px;
  }
}

@media screen and (min-width: 375px) and (max-width: 579px) {
  ._td-form-container .input-file-pdf .input-file-text {
    width: 178px;
  }
}

._td-form-container .input-file-pdf .input-file-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 15px;
  vertical-align: middle;
  color: white;
  text-align: center;
  border-radius: 0 5px 5px 0;
  background-color: #009E62;
  line-height: 22px;
  height: 40px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
}

._td-form-container .input-file-pdf input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

._td-form-container .input-file-pdf input[type=file]:focus + .input-file-btn {
  box-shadow: none;
}

._td-form-container .input-file-pdf:hover .input-file-btn {
  background-color: #59be6e;
}

._td-form-container .input-file-pdf:active .input-file-btn {
  background-color: #2E703A;
}

._td-form-container .input-file-pdf input[type=file]:disabled + .input-file-btn {
  background-color: #eee;
}

._td-form-container ._textareafield * {
  vertical-align: top;
}

._td-form-container ._textareafield ._td-form-field-title {
  top: 3%;
  -ms-transform: translateY(0);
      transform: translateY(0);
}

._td-form-container ._textareafield ._caption-img {
  width: 70px;
  position: absolute;
  top: 30px;
  left: -80px;
}

@media screen and (min-width: 320px) and (max-width: 759px) {
  ._td-form-container ._textareafield ._caption-img {
    position: relative;
    top: auto;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    margin-bottom: -20px;
  }
}

._td-form-container .__form-checkbox input[type=checkbox] {
  display: none;
}

._td-form-container .__form-checkbox .__user-check {
  width: 100%;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 50px;
  cursor: pointer;
  position: relative;
  padding-left: 58px;
  margin: 0 0 20px 0;
  font-size: 16px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  ._td-form-container .__form-checkbox .__user-check {
    font-size: 14px;
  }
}

._td-form-container .__form-checkbox .__user-check:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  border-radius: 10px;
  background: #f7f7f7;
}

._td-form-container .__form-checkbox .__user-check a {
  color: inherit;
}

._td-form-container .__form-checkbox .__user-check.error:before {
  box-shadow: inset 0px 0px 5px 0px rgba(255, 6, 19, 0.75);
}

._td-form-container .__form-checkbox input[type=checkbox]:checked + .__user-check:before {
  background: #285219;
  box-shadow: unset;
}

._td-form-container .__form-checkbox input[type=checkbox]:checked + .__user-check:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 14px;
  top: 13px;
  left: 12px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

._td-form-container .__img-form {
  width: 100%;
  margin: 0 0 0 0;
  font-family: Involve;
}

._td-form-container .__img-form-title {
  margin: 0 0 5px 0;
  text-align: left;
  color: #656565;
  font-size: 16px;
  font-family: Involve;
}

._td-form-container .__img-form-item {
  width: 130px;
  height: 130px;
  float: left;
  overflow: hidden;
  background-color: #f7f7f7;
  margin: 0 20px 13px 0;
  position: relative;
}

._td-form-container .__img-form-item:last-child {
  margin: 0 0 13px 0;
}

._td-form-container .__img-form-upload {
  width: 130px;
  height: 130px;
  display: block;
  padding-left: 0;
  margin-right: 0;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  padding-top: 50px;
  color: #285219 !important;
}

@media screen and (min-width: 320px) and (max-width: 959px) {
  ._td-form-container .__img-form-upload {
    text-align: center;
  }
}

._td-form-container .__img-form-upload + input {
  display: none;
}

._td-form-container ._img-final {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

._td-form-container .__loading-img {
  object-fit: cover;
}

._td-form-container .__loading-img-dell {
  position: absolute;
  display: none;
  width: 24px;
  height: 24px;
  top: 10px;
  right: 10px;
  background-image: url("../src/images/td/img-dell.svg");
  background-repeat: no-repeat;
}

._td-form-container .__img-download {
  position: absolute;
  width: 86px;
  height: 32px;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  color: #606060;
  font-size: 13px;
}

._td-form-container .__img-download-view {
  width: 86px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(40, 82, 25, 0.2);
  margin-top: 6px;
}

._td-form-container .__img-download-view div {
  height: 4px;
  border-radius: 2px;
  background-color: #285219;
}

._td-form-container .__button-form {
  padding: 0 0 0 0;
}

._td-form-container .__form-submit {
  cursor: pointer;
  height: 70px;
  line-height: 1;
  border: none;
  border-radius: 10px;
  background-color: #285219;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 40px;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 580px) {
  ._td-form-container .__form-submit {
    font-size: 22px;
  }
}

._td-form-container .__form-publish {
  cursor: pointer;
  height: 70px;
  line-height: 70px;
  border: none;
  border-radius: 10px;
  background-color: #285219;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 40px;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 580px) {
  ._td-form-container .__form-publish {
    padding: 0 20px;
  }
}

._td-form-container .addbutton {
  position: relative;
  margin: 10px 0 0 0;
  padding: 0 0 0 40px;
  font-size: 18px;
  cursor: pointer;
}

._td-form-container .addbutton:before {
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 0%;
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "";
  display: block;
  background: #285219 url(../src/images/td/plus.svg) no-repeat 50% 50%/10px 10px;
}

._td-form-container .deletebutton {
  width: 17px;
  height: 17px;
  cursor: pointer;
  display: inline-block;
  background-image: url(../src/images/td/x.svg);
  background-size: contain;
  position: absolute;
  top: 4px;
  right: 4px;
}

._td-form-in {
  padding: 0;
  margin: 0 auto;
}

._td-form-in textarea {
  width: 100%;
  height: 130px;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: auto;
  outline: none;
  border: none;
  resize: none;
}

._td-form-in .under {
  font-size: 12px;
  line-height: 16px;
  color: #656565;
}

._td-form-field {
  width: 100%;
  margin: 0 0 20px 0;
  position: relative;
  font-family: Involve;
  /* Выбор пола - select */
  /* Рейтинг звёзды */
  /* /Рейтинг звёзды */
}

._td-form-field-title {
  margin: 0 0 8px 0;
  text-align: left;
  color: #656565;
  font-size: 16px;
  font-family: Involve;
}

._td-form-field .add, ._td-form-field .addsoc, ._td-form-field .addlink {
  margin: 0 0 10px 0;
  position: relative;
}

._td-form-field .uper {
  font-size: 18px;
  line-height: 16px;
  padding: 0 0 10px;
}

._td-form-field .under {
  font-size: 12px;
  line-height: 16px;
}

._td-form-field .select {
  position: relative;
  display: inline-block;
  margin: 0 0 0 0;
  width: 100%;
  vertical-align: middle;
  text-align: left;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

._td-form-field .select .placeholder {
  position: relative;
  display: block;
  background-color: #f7f7f7;
  z-index: 1;
  padding: 14px 46px 10px 17px;
  cursor: pointer;
  font-size: 18px;
  height: 48px;
  border-radius: 5px;
}

._td-form-field .select .placeholder:hover {
  background: #f7f7f7;
}

._td-form-field .select .placeholder:after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 10px;
  border: 2px solid #00A3E0;
  border-top: none;
  border-right: none;
  top: 50%;
  -ms-transform: translateY(-70%) rotate(-45deg);
      transform: translateY(-70%) rotate(-45deg);
  content: "";
  z-index: 10;
}

._td-form-field .select .placeholder:before {
  position: absolute;
  content: "";
  width: 46px;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 5px 5px 0;
  background-color: #f7f7f7;
}

._td-form-field .select.is-open .placeholder:after {
  -ms-transform: translateY(-10%) rotate(135deg);
      transform: translateY(-10%) rotate(135deg);
}

._td-form-field .select.is-open ul {
  display: block;
}

._td-form-field .select ul {
  display: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  background: #f7f7f7;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  border: 1px solid #00A3E0;
  border-radius: 0 0 5px 5px;
  z-index: 100;
}

._td-form-field .select ul li {
  display: block;
  text-align: left;
  padding: 14px 12px 14px 26px;
  cursor: pointer;
}

._td-form-field .select ul li:hover {
  background: #00A3E0;
  color: #ffffff;
}

._td-form-field .rating-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

._td-form-field .rating-input {
  display: none;
}

._td-form-field .rating-star:hover,
._td-form-field .rating-star:hover ~ .rating-star {
  background-position: 0 0;
}

._td-form-field .rating-wrapper:hover .rating-star:hover,
._td-form-field .rating-wrapper:hover .rating-star:hover ~ .rating-star,
._td-form-field .rating-input:checked ~ .rating-star {
  background-position: 0 0;
}

._td-form-field .rating-star,
._td-form-field .rating-wrapper:hover .rating-star {
  float: right;
  display: block;
  width: 43px;
  height: 41px;
  background: url(../src/images/td/rating-stars.svg) no-repeat 0 -41px;
}

._td-form-field-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  ._td-form-field-group {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}

._td-form-field-group .group-item:first-child {
  width: 40%;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  ._td-form-field-group .group-item:first-child {
    margin: 0 0 10px 0;
  }
}

._td-form-field-group .group-item:last-child {
  width: 25%;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  ._td-form-field-group .group-item:first-child, ._td-form-field-group .group-item:last-child {
    width: 100%;
  }
}

._td-form-line {
  width: 100%;
  height: 2px;
  margin: 20px 0 20px 0;
  background-color: rgba(40, 82, 25, 0.4);
}

@media screen and (min-width: 320px) and (max-width: 959px) {
  ._td-form-line {
    margin: 20px 0 20px 0;
  }
}

._td-form-radio-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  ._td-form-radio-row {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media screen and (min-width: 320px) and (max-width: 959px) {
  ._td-form-radio-row {
    margin: 8px 0 0 0;
  }
}

._td-form-radio-row input[type=radio] {
  display: none;
}

._td-form-radio-row .input-wrapper {
  margin-right: 10px;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  ._td-form-radio-row .input-wrapper {
    margin-right: 5px;
  }
}

._td-form-radio-row .input-wrapper:last-child {
  margin-right: 0;
}

._td-form-radio-row .radio {
  font-size: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  padding: 10px 13px;
  background-color: #CCEBF9;
  color: #000000;
  width: auto;
  border: 1px solid #CCEBF9;
  cursor: pointer;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  ._td-form-radio-row .radio {
    padding: 12px 8px;
    font-size: 12px;
  }
}

._td-form-radio-row input[type=radio]:checked + .radio {
  background-color: #00A3E0;
  color: white;
}

.aderma-candidate {
  max-width: 550px;
  font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  /* Firefox 19+ */
  /* Firefox 18- */
}

.aderma-candidate ::-webkit-input-placeholder {
  color: #8a9bab;
}

.aderma-candidate ::-moz-placeholder {
  color: #8a9bab;
}

.aderma-candidate :-moz-placeholder {
  color: #8a9bab;
}

.aderma-candidate :-ms-input-placeholder {
  color: #8a9bab;
}

.aderma-candidate-title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  color: #000;
  padding: 0;
}

.aderma-candidate-title h1 {
  font-weight: 700;
  font-size: 21px;
  line-height: 30px;
  padding: 0 0 20px;
  color: #000;
}

.aderma-candidate-title p {
  font-size: 16px;
  line-height: 24px;
  font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
  padding: 0 0 20px;
  color: #8a9bab;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate-title p {
    font-size: 14px;
  }
}

.aderma-candidate a {
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(0, 113, 245, 0.2) !important;
  text-decoration-color: rgba(0, 113, 245, 0.2);
}

.aderma-candidate a:hover {
  -webkit-text-decoration-color: rgba(239, 73, 143, 0.2) !important;
  text-decoration-color: rgba(239, 73, 143, 0.2);
}

.aderma-candidate .candidate-field {
  width: 100%;
  margin: 0 0 10px 0;
  /* Выбор, радио кнопки */
  /* Псевдо - select */
}

.aderma-candidate .candidate-field input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  background-color: #eef5f7 !important;
  border: 1px solid #d8e6ea;
  border-radius: 5px;
  font-size: 16px;
  font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
}

.aderma-candidate .candidate-field input:focus {
  background-color: rgba(0, 113, 245, 0.15) !important;
  border: 1px solid #0071f5;
  transition: background .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .candidate-field input {
    font-size: 14px;
  }
}

.aderma-candidate .candidate-field-title {
  margin: 0 0 5px 0;
  text-align: left;
  font-size: 16px;
  color: #8a9bab;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .candidate-field-title {
    font-size: 14px;
  }
}

.aderma-candidate .candidate-field-radio-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

@media screen and (min-width: 320px) and (max-width: 424px) {
  .aderma-candidate .candidate-field-radio-row {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

@media screen and (min-width: 320px) and (max-width: 959px) {
  .aderma-candidate .candidate-field-radio-row {
    margin: 8px 0 0 0;
  }
}

.aderma-candidate .candidate-field-radio-row input[type=radio] {
  display: none;
}

.aderma-candidate .candidate-field-radio-row .input-wrapper {
  margin-right: 10px;
}

@media screen and (min-width: 320px) and (max-width: 424px) {
  .aderma-candidate .candidate-field-radio-row .input-wrapper {
    margin-right: 0;
  }
}

.aderma-candidate .candidate-field-radio-row .input-wrapper:last-child {
  margin-right: 0;
}

.aderma-candidate .candidate-field-radio-row .radio {
  font-size: 16px;
  display: block;
  padding: 8px 10px;
  background-color: #eef5f7 !important;
  border: 1px solid #d8e6ea;
  border-radius: 5px;
  color: #8a9bab;
  width: auto;
  cursor: pointer;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .aderma-candidate .candidate-field-radio-row .radio {
    padding: 8px 8px;
    font-size: 12px;
  }
}

@media screen and (min-width: 375px) and (max-width: 424px) {
  .aderma-candidate .candidate-field-radio-row .radio {
    padding: 8px 8px;
    font-size: 15px;
  }
}

.aderma-candidate .candidate-field-radio-row input[type=radio]:checked + .radio {
  background-image: linear-gradient(90deg, #ff5fa2, #ef2e7f, #f800c1, #832eef);
  background-size: 300% 100%;
  color: #fff;
  border: 1px solid #ff5fa2;
  transition: background .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.aderma-candidate .candidate-field textarea {
  width: 100%;
  height: 130px;
  padding: 10px;
  background-color: #eef5f7 !important;
  border: 1px solid #d8e6ea;
  border-radius: 5px;
  overflow: auto;
  outline: none;
  resize: none;
  font-size: 16px;
  font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
}

.aderma-candidate .candidate-field textarea:focus {
  background-color: rgba(0, 113, 245, 0.15) !important;
  border: 1px solid #0071f5;
  transition: background .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .candidate-field textarea {
    font-size: 14px;
  }
}

.aderma-candidate .candidate-field .add {
  margin: 0 0 10px 0;
  position: relative;
}

.aderma-candidate .candidate-field .select {
  position: relative;
  display: inline-block;
  margin: 0 0 0 0;
  width: 100%;
  vertical-align: middle;
  text-align: left;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.aderma-candidate .candidate-field .select .placeholder {
  position: relative;
  display: block;
  background-color: #eef5f7;
  z-index: 1;
  padding: 8px 46px 8px 10px;
  cursor: pointer;
  font-size: 16px;
  height: 38px;
  border: 1px solid #d8e6ea;
  border-radius: 5px;
  color: #8a9bab;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .candidate-field .select .placeholder {
    font-size: 14px;
  }
}

.aderma-candidate .candidate-field .select .placeholder:hover {
  background: #eef5f7;
}

.aderma-candidate .candidate-field .select .placeholder:after {
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  border: 2px solid #0071f5;
  border-top: none;
  border-right: none;
  top: 50%;
  -ms-transform: translateY(-70%) rotate(-45deg);
      transform: translateY(-70%) rotate(-45deg);
  content: "";
  z-index: 10;
}

.aderma-candidate .candidate-field .select .placeholder:before {
  position: absolute;
  content: "";
  width: 46px;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 5px 5px 0;
  background-color: inherit;
}

.aderma-candidate .candidate-field .select.is-open .placeholder:after {
  -ms-transform: translateY(-10%) rotate(135deg);
      transform: translateY(-10%) rotate(135deg);
}

.aderma-candidate .candidate-field .select.is-open ul {
  display: block;
}

.aderma-candidate .candidate-field .select ul {
  display: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  background: #eef5f7;
  top: 100%;
  left: 0;
  list-style: none;
  margin: -4px 0 0 0;
  padding: 0;
  color: #8a9bab;
  font-size: 16px;
  border: 1px solid #d8e6ea;
  border-top: none;
  border-radius: 0 0 5px 5px;
  z-index: 100;
  height: 300px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .candidate-field .select ul {
    font-size: 14px;
  }
}

.aderma-candidate .candidate-field .select ul li {
  display: block;
  text-align: left;
  padding: 10px 12px 10px 26px;
  cursor: pointer;
}

.aderma-candidate .candidate-field .select ul li:hover {
  background-color: rgba(0, 113, 245, 0.15);
  color: #000;
}

.aderma-candidate .__form-checkbox {
  color: #8a9bab;
}

.aderma-candidate .__form-checkbox.__read {
  margin: 0 0 20px 0;
}

.aderma-candidate .__form-checkbox.__read label {
  font-size: 16px;
  text-align: left;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .__form-checkbox.__read label {
    font-size: 14px;
  }
}

.aderma-candidate .__form-checkbox.__agree {
  margin: 0 0 30px 0;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .__form-checkbox.__agree {
    margin: 0 auto 20px;
  }
}

.aderma-candidate .__form-checkbox.__agree label {
  font-size: 16px;
  text-align: left;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .__form-checkbox.__agree label {
    font-size: 14px;
  }
}

.aderma-candidate .__form-checkbox input[type=checkbox] {
  display: none;
}

.aderma-candidate .__form-checkbox .__user-check {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
}

.aderma-candidate .__form-checkbox .__user-check:before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  left: 0;
  top: -2px;
  border-radius: 5px;
  background: #eef5f7;
  border: 1px solid #d8e6ea;
}

.aderma-candidate .__form-checkbox .__user-check.error:before {
  box-shadow: inset 0px 0px 5px 0px rgba(255, 6, 19, 0.75);
}

.aderma-candidate .__form-checkbox input[type=checkbox]:checked + .__user-check:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 5px;
  top: 5px;
  left: 6px;
  border: 3px solid #0071f5;
  border-top: none;
  border-right: none;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.aderma-candidate .addbutton {
  position: relative;
  margin: 10px 0 30px 0;
  padding: 0 0 0 30px;
  cursor: pointer;
  color: #8a9bab;
  font-size: 16px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate .addbutton {
    font-size: 14px;
  }
}

.aderma-candidate .addbutton:before {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 0%;
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "";
  display: block;
  background: url(../src/images/td/plus.svg) no-repeat 50% 50%/10px 10px, linear-gradient(90deg, #ff5fa2, #ef2e7f, #f800c1, #832eef) no-repeat 50% 50%/300% 100%;
}

.aderma-candidate .deletebutton {
  width: 17px;
  height: 17px;
  cursor: pointer;
  display: inline-block;
  background-image: url(../src/images/td/x.svg);
  background-size: contain;
  position: absolute;
  top: 4px;
  right: 4px;
}

.aderma-candidate-send {
  padding: 10px 0 0px;
  text-align: center;
  font-weight: bold;
}

.aderma-candidate-send-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-height: 40px;
  padding: 0 15px 2px;
  transition: background .2s ease-in-out;
  border-radius: 5px;
  outline: none;
  background-image: linear-gradient(90deg, #ff5fa2, #ef2e7f, #f800c1, #832eef);
  background-size: 300% 100%;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 320px) and (max-width: 579px) {
  .aderma-candidate-send-btn {
    /*height:50px;
					line-height:50px;
					font-size: 16px;
					padding:0 25px;*/
  }
}

.aderma-candidate-send-btn:hover {
  color: #fff;
  background-position: 100% 0;
}