.mobile-friendly {
  position: relative;
  background: #FFFFFF;
}
.mobile-friendly .section_title,
.mobile-friendly .section_description {
  color: #000000;
}
.mobile-friendly .section_title {
  margin-bottom: 10px;
}
.mobile-friendly .button-switcher-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-friendly .button-switcher-container .button_container {
  margin-top: 0;
}
.mobile-friendly .device-switcher {
  background: #F5F5F6;
  border-radius: 23px;
  position: relative;
  display: none;
  box-sizing: border-box;
}
.mobile-friendly .device-switcher span {
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
}
.mobile-friendly .device-switcher span.active {
  color: #FFFFFF;
}
.mobile-friendly .device-switcher:after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-radius: 24px;
}
.mobile-friendly .device-switcher[data-active=mobile]:after {
  transform: translateX(100%);
}
.mobile-friendly .device-container {
  margin: 0 auto;
}
.mobile-friendly .device-container img {
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}
.mobile-friendly .device-container[data-device=mobile] img.mobile {
  opacity: 1;
}
.mobile-friendly .device-container[data-device=desktop] img.desktop {
  opacity: 1;
}
.mobile-friendly .device-container .device-container_header {
  display: flex;
  justify-content: center;
  background: #000000;
  color: #FFFFFF;
  font-weight: 600;
}
.mobile-friendly .device-container .device-container_header > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-friendly .device-container .device-container_header > div .device {
  position: relative;
  text-transform: capitalize;
}
.mobile-friendly .device-container .device-container_header > div .device-width {
  opacity: 0.5;
  width: 70px;
}
.mobile-friendly .device-container .device-container_body {
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.mobile-friendly .device-container .device-container_body:after, .mobile-friendly .device-container .device-container_body:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-friendly .device-container .device-container_body:after {
  right: -20px;
}
.mobile-friendly .device-container .device-container_body:before {
  left: -20px;
}
.mobile-friendly.grey_background {
  background: #F5F5F6;
}
.mobile-friendly.grey_background .device-switcher {
  background: #FFFFFF;
}
.mobile-friendly.no_margin {
  margin-bottom: 0;
}
