/* custom css */

* {
  font-family: "Spartan", sans-serif;
}

body {
  border-radius: 50%;
  background: #f6f9fc;
}

p {
  margin: 0;
  padding: 0;
}

input {
  padding: 8px 12px;
  width: 100%;
  height: 46px;
  background: #e4e6ec;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  border-radius: 4px;
}

button {
  cursor: pointer;
}

button:focus {
  outline: none;
}

a {
  color: #2083fe;
}

a:hover {
  text-decoration: none;
}

/* general */

.w-40 {
  max-width: 40% !important;
}

.w-70 {
  max-width: 70%;
}

.w-80 {
  max-width: 80% !important;
}

.form-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.3rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin-bottom: 10px;
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.blue-background {
  background-color: #1e2e50;
}

.blue-color {
  color: #1f2c73;
}

/* end general */

.header-top {
  /* Top bar */
  height: 19px;
  width: 100%;
  background: rgba(41, 127, 202, 0.06);
}

.header-top-circle {
  /* Burron */
  width: 6px;
  height: 6px;
  background: #cad6e2;
}

.circle-block {
  width: 26px;
  margin-left: 7px;
}

.header-bottom {
  /* Navbar/Left */
  width: 100%;
  height: 80px;
  /* White/100% */
  background: #ffffff;
}

.header-logo {
  height: 28px;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #1e2e50;
  margin-left: 70px;
}

/* Login */

.auth-btn {
  background: #2083fe;
  border-radius: 4px;
  padding: 8px 16px;
  width: 93px;
  height: 40px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  margin-right: 152px;
}

.login-content {
  margin-top: 136px;
  width: 100%;
}

.login-page-info {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #1e2e50;
}

.login-form {
  margin-top: 64px;
}

.password-input {
  margin-top: 24px;
}

.login-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  width: 356px;
  height: 48px;
  background: #2083fe;
  box-shadow: 0px 16px 48px rgba(35, 38, 45, 0.275);
  border-radius: 4px;
  /* Inside auto layout */
  margin-top: 24px;
  border: none;
  color: white;
}

.forgot-password {
  width: 356px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-top: 48px;
}

.dont-have-account {
  width: 356px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #5a6c90;
  margin-top: 48px;
}

/* end login */

/* register */

.register-content {
  margin-top: 100px;
  width: 100%;
}

/* end register */

/* landing */

.landing-main-text {
  font-size: 64px;
  line-height: 76px;
  text-align: center;
  color: #ffffff;
  margin: 32px 0px;
  margin-top: 248px;
}

.landing-secondary-text {
  width: 1136px;
  height: 28px;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  margin-top: 32px;
}

.langing-button {
  padding: 24px 25px;
  width: 362.67px;
  height: 176px;
  background: #ffffff;
  box-shadow: 0px 2px 8px 3px rgba(35, 38, 45, 0.09);
  border-radius: 4px;
  margin: 135px 45px;
}

.langing-back-button {
  margin-top: 151px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  background: #2083fe;
  box-shadow: 0px 16px 48px rgba(35, 38, 45, 0.275);
  border-radius: 4px;
  width: 645;
  height: 87px;
}

.back-text {
  width: 613px;
  height: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(102, 114, 232, 0.1);
  border-radius: 80px;
  margin-top: 16px;
}

.button-text {
  left: 25px;
  top: 104px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1e2e50;
  margin-top: 16px;
}

.icon-arrow {
  border: 2.5px solid #1e2e50;
}

.landing-bg-img-style {
  background: #1e2e50;
  position: relative;
  z-index: 1;
}

.landing-bg-img-style::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  background: url("/static/assets/svg/landing-backgroud.svg") no-repeat center
    center fixed;
  background-size: cover;
}

.to-top {
  position: relative;
  z-index: 4;
}

.white-bg {
  height: 100%;
  width: 100%;
  background: white;
  position: fixed;
  z-index: 1;
  /* bottom: -86%; */
  top: 75%;
  transform: skew(0, -9deg);
}
/* end landing */

/* tasks */

.tasks-content {
  margin-top: 136px;
  width: 100%;
}

.center-task-button {
  margin: 0px 24px;
}

.tasks-button {
  padding: 24px 25px;
  width: 33%;
  height: 176px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(35, 38, 45, 0.09);
  border-radius: 4px;
  margin-top: 64px;
}

.tasks-large-button {
  padding: 24px 25px;
  width: 100%;
  height: 176px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(35, 38, 45, 0.09);
  border-radius: 4px;
  margin-top: 24px;
}

.task-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(102, 114, 232, 0.1);
  border-radius: 80px;
}
/* end tasks */

/* dealership  */

.dealership-create-block {
  margin-top: 48px;
}

.settings-text {
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(90, 108, 144, 0.8);
  margin-left: 24px;
  margin-bottom: 16px;
}

.dealership-setting {
  width: 239px;
  margin-right: 92px;
}

.dealership-setting-item {
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  color: #1f2c73;
  padding-left: 24px;
  margin-bottom: 12px;
}

.item-selected {
  border-left: 2px solid #6672e8;
  padding-left: 22px;
}

.dealership-information {
  padding: 0px 0px 24px;
  /* width: 804px; */
  width: 65%;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(35, 38, 45, 0.09);
  border-radius: 4px;
}

.form-block-title {
  font-weight: 600;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  color: #1f2c73;
  padding: 24px 28px;
  border-bottom: 1px solid #e9ecef;
}

.accept-btn {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  display: flex;
  background: #34bd91;
  border-radius: 4px;
  padding: 8px 16px;
  width: 95px;
  cursor: pointer;
  text-align: center;
}

.save-btn {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  display: flex;
  background: #34bd91;
  border-radius: 4px;
  padding: 8px 16px;
  width: 175px;
  cursor: pointer;
}

.save-btn:hover {
  text-decoration: none !important;
  color: white;
}

.dealership-create-form {
  margin: 24px 28px 0px 28px;
}

.form-input-label {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  padding-bottom: 7px;
}

.form-input {
  font-size: 16px;
  line-height: 24px;
  /* color: #adb5bd; */
  display: flex;
  background: #ffffff;
  border-radius: 4px;
}

.switch-label {
  font-size: 20px;
  color: #212529;
  text-align: center;
  margin: auto 0px;
  margin-left: 8px;
}

.switch-center {
  margin: 0 140px;
}

.campaign-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1f2c73;
  margin-left: 28px;
  margin-bottom: 16px;
}

.campaign-input-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  margin-bottom: 8px;
}

.campaign-setting {
  width: 49%;
}

.reset-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: #34bd91;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

.campaign-input {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  background-color: white;
  border: none;
  height: 24px;
  margin: auto 0px;
  padding-left: 0px;
}

.campaign-input:focus-visible {
  border: none;
  outline: none;
}

.phone-input-btn-reset {
  border: 1px solid #adb5bd;
  padding: 15px 12px;
  border-radius: 6px;
}

.shortlink-input {
  height: 35.99px;
  width: 100% !important;
}

.btns-block {
  width: 250px;
}

.additional-text {
  font-size: 14px;
  line-height: 20px;
  color: rgba(90, 108, 144, 0.9);
  margin-top: 6px;
}

/* dealership end */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

/* adaptation */

@media screen and (max-width: 850px) {
  .tasks-button {
    width: 100%;
    margin-top: 26px;
  }
  .tasks-button-direction {
    flex-direction: column;
  }
  .center-task-button {
    margin-right: 0px;
    margin-left: 0px;
  }
  .dealership-create-block {
    flex-direction: column;
  }
  .dealership-setting {
    margin-left: 10px;
    margin-bottom: 25px;
  }
  .campaign-selects-block {
    justify-content: space-around !important;
    flex-direction: column !important;
  }
  .campaign-select {
    align-items: center;
  }
  .switch-label {
    margin-bottom: 15px;
  }
  .dealership-information {
    width: 100%;
  }
  .campaign-settings-block {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .campaign-setting {
    margin-bottom: 15px;
    width: 100%;
  }
  .campaign-title {
    margin-left: 0px;
  }
  .btns-block {
    justify-content: space-around !important;
    width: 100%;
    margin-top: 10px;
  }
  .sheet-link-input {
    flex-direction: column !important;
  }
}

@media screen and (max-width: 900px) {
  .auth-btn {
    margin-right: 10%;
  }
  .header-logo {
    margin-left: 10%;
  }
  .landing-main-text {
    margin-top: 150px;
    font-size: 54px;
  }
  .landing-secondary-text {
    font-size: 16px;
  }
  .langing-button {
    width: 30%;
  }
}

@media screen and (max-width: 550px) {
  .buttons {
    flex-direction: column !important;
    justify-content: space-around !important;
    margin-top: 25px;
  }
  .langing-button {
    width: 75%;
    margin: 25px auto 0 auto;
  }
  .white-bg {
    top: 65%;
  }
}

/* adaptation end */
