.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .logo .text {
  display: inline;
  margin-left: 20px;
  margin-top: 5px;
}

.header .logo .text span {
  font-size: 37px;
  line-height: 41px;
  font-weight: bold;
}

.header .account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .account .avatar {
  width: 54px;
  height: 54px;
  /*background-color: #f482fa;*/
  margin-right: 20px;
  border-radius: 14px;
}

.header .account .text {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 15px;
  font-size: 12px;
}

.header .account .text--name {
  font-size: 14px;
  font-weight: 500;
}

.header .account .text--reset-account {
  font-weight: 600;
  margin-top:20px;
}

.content__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.content__container .first-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}

.content__container .live-toggle {
  margin-bottom: 30px;
}

.content__container .live-toggle .toggle-text {
 /* vertical-align: super;*/
  margin-right: 20px;
}

.content__container .live-toggle .toggle-btn {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 26px;
  vertical-align:middle;
}

.content__container .live-toggle .toggle-btn input[type="checkbox"] {
  display: none;
}

.content__container .live-toggle .toggle-btn input[type="checkbox"]:checked + .slider {
  background-color: #f482fa;
}

.content__container .live-toggle .toggle-btn input[type="checkbox"]:checked + .slider .text.off {
  opacity: 0;
}

.content__container .live-toggle .toggle-btn input[type="checkbox"]:checked + .slider .text.on {
  opacity: 1;
}

.content__container .live-toggle .toggle-btn input[type="checkbox"]:checked + .slider::before {
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  background-color: #f9f9f9;
  content: "";
}

.content__container .live-toggle .toggle-btn .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f9f9f9;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border-radius: 13px;
}

.content__container .live-toggle .toggle-btn .slider .text {
  position: absolute;
  top: 8px;
  color: #012138;
  font-size: 10px;
  line-height: 11px;
  font-weight: 500;
}

.content__container .live-toggle .toggle-btn .slider .text.on {
  left: 10px;
  opacity: 0;
}

.content__container .live-toggle .toggle-btn .slider .text.off {
  right: 10px;
}

.content__container .live-toggle .toggle-btn .slider::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 3px;
  background-color: #f482fa;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.content__container .button {
  padding: 10px 25px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #f482fa;
  font-family: Inter;
  font-size: 12px;
  line-height: 15px;
}

.content__container .button-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
  cursor:pointer;
}

.content__container .button--secondary {
  margin-right: 20px;
  color: #fff;
  border-color: #fff;
}

.content__container .quick-access-section {
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #012138;
  padding: 0 25px;
  text-align: left;
  border: 2px solid #f0f0f0;
}

.content__container .quick-access-section .heading {
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}

.content__container .quick-access-section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content__container .quick-access-section .options .icon-container {
  padding: 30px 40px;
}

.content__container .quick-access-section .options .icon-container:not(:last-child) {
  border-right: 2px solid #f0f0f0;
}

.content__container .quick-access-section .options .icon-container:first-child {
  padding-left: 15px;
}

.content__container .quick-access-section .options .icon-container:last-child {
  padding-right: 15px;
}

.content__container .quick-access-section .options .icon {
  text-align: center;
  margin-bottom: 30px;
}

.content__container .quick-access-section .options .text {
  font-size: 12px;
  font-family: Inter;
  line-height: 15px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 15px;
}
/*# sourceMappingURL=home.css.map */