/*
 * Copyright 2021 LABOR.digital
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Last modified: 2021.03.02 at 14:13
 */

.newsletter__top {
  padding-top: 20px;
}

.newsletter__top img, .newsletter__bottom img {
  width: 100%;
  height: auto;
}

.newsletter__wrapper {
  margin: 0 auto;
  padding: 10%;
}

.form_description h2 {
  font-weight: 700;
  font-size: 32px;
  color: #000000
}

.newsletter__wrapper label {
  display: block;
  margin-top: 15px;
}

.newsletter__buttons {
  margin-top: 30px;
}

.newsletter__description {
  margin-top: 50px;
  margin-bottom: 15px;
}

.newsletter__salutation label {
  display: inline-flex;
  max-width: 200px;
  justify-content: space-between;
  padding-right: 15px;
}

.newsletter__salutation label input {
  margin-top: 5px;
}

.newsletter__loader {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: -14px;
}

.newsletter__loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  margin: 8px;
  border: 6px solid #5176FF;
  border-radius: 50%;
  animation: newsletter__loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #5176FF transparent transparent transparent;
}

.newsletter__loader div:nth-child(1) {
  animation-delay: -0.45s;
}

.newsletter__loader div:nth-child(2) {
  animation-delay: -0.3s;
}

.newsletter__loader div:nth-child(3) {
  animation-delay: -0.15s;
}

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

.newsletter__switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 45px;
}

.newsletter__switch input {
  display:none;
}

.newsletter__slider {
  background-color: #f1f1f1;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
  height: 17px;
}

.newsletter__slider:before {
  background-color: #E1E1E1;
  bottom: 0;
  content: "";
  height: 17px;
  width: 17px;
  left: 0;
  position: absolute;
  transition: .4s;
}

input:checked + .newsletter__slider:before {
  transform: translateX(28px);
  background-color: #00FFA0;
}

.newsletter__slider.round {
  border-radius: 34px;
}

.newsletter__slider.round:before {
  border-radius: 50%;
}

.newsletter__slider__container {
  display: flex;
  justify-content: space-between;
}

.newsletter__sliderleft {
  float: left;
  font-weight: 600;
  margin-top: 10px;
}

.newsletter__sliderright {
  float: right;
  padding-left: 45px;
}

.newsletter__input__light {
  background-color: #f1f1f1 !important;
}
