/* reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

figure {
  line-height: 0;
  font-size: 0;
}

/* basic */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #000;
    background-color: #fff;
}

h1 {
    font-size: 8rem;
    line-height: 1;
}

h2 {
    font-size: 3.8rem;
}

h3 {}

h4 {}

h5 {}

h6 {}

/* shell */

.shell {
    margin: 0 auto;
    max-width: 114rem;
    width: 114rem;
}

/* header */

.header {
    position: fixed;
    width: 100%;
    padding: 1.3rem 0;
    z-index: 12;
    top: 0;
    left: 0;
    background-color: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.header--main {
    background-color: transparent;
    transition: background-color 0.3s;
}

.header.header--main nav a {
    color: #fff;
    transition: color 0.3s;
}

.header.header--main.scrolled {
    background-color: #fff;
}

.header.header--main.scrolled nav a {
    color: #000;
}

.header.header--main.scrolled .nav__acc {
    color: #fff;
}

/* logo */

.logo {
    display: block;
    height: 4.5rem;
}

.logo img {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
}

/* nav */

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav ul li {
    display: inline-block;
}

.nav ul li + li {
    margin-left: 1.5rem;
}

.nav ul li:last-child {
    margin-left: 2.5rem;
}

.nav ul li a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.nav .nav__acc {
    position: relative;
    background-color: #3bb1f6;
    /* font-weight: 700; */
    padding: 1.2rem 4rem;
    line-height: 1;
    margin-left: 2.5rem;
    border-radius: 2rem;
    color: #fff;
    overflow: hidden;
    display: block;
    transition: background-color 0.5s, background-image 0.5s;
}

.nav .nav__acc::before {
    content: "";
    position: absolute;
    background-color: #ffc71f;
    height: 3.2rem;
    width: 3.2rem;
    border-radius: 50%;
    top: -0.3rem;
    left: -0.3rem;
    transition: transform 0.5s;
}

.nav .nav__acc:hover::before {
    transform: translateX(-3rem);
}

.nav .nav__acc:hover {
    background-image: 
    radial-gradient(rgb(118, 89, 34) 10%, transparent 10%),
    radial-gradient(rgb(118, 89, 34) 10%, transparent 10%);
    background-position: 0 0rem, 0.6rem 0.6rem;
    background-size: 1.4rem 1.4rem;
    background-color: rgb(19, 19, 72);
}

.nav .nav__moon {
    content: "";
    position: absolute;
    background-color: #b6b6b6;
    height: 3.2rem;
    width: 3.2rem;
    border-radius: 50%;
    top: -0.3rem;
    left: -3.3rem;
    transition: transform 0.5s;
}

.nav .nav__moon::before {
    content: "";
    position: absolute;
    background-color: #dcdcdc;
    height: 2.8rem;
    width: 2.8rem;
    border-radius: 50%;
    top: 0rem;
    left: 0rem;
}

.nav .nav__acc:hover .nav__moon {
    transform: translateX(3rem);
}

.nav .nav__solar {
    position: absolute;
    right: -0.5rem;
    bottom: 0.4rem;
    height: 50%;
}

.nav .nav__solar img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav .nav__img {
    height: 4.5rem;
    border-radius: 50%;
    cursor: pointer;
    border: 0.2rem solid #c7fac8;
}

.nav .nav__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

/* .nav .nav__battery {
    position: absolute;
    right: 0.6rem;
    bottom: 0.4rem;
    height: 60%;
}

.nav .nav__battery img {
    height: 100%;
    width: auto;
    object-fit: contain;
} */

/* hero */

.hero {
    position: relative;
    height: calc(100vh);
    border-bottom: 0.1rem solid #aaa;
}

.hero .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .hero__bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero .hero__content h1 {
    margin-bottom: 1rem;
    color: #fff;
}

.hero .hero__content h1 span {
    color: #257328;
}

.hero .hero__content small {
    font-size: 2rem;
    color: #32B221;
    font-weight: 700;
}

/* section-cards */

.section-cards {
    padding: 9rem 0 7rem;
}

.section-cards .section__card {
    position: relative;
    padding: 4rem 3rem 3.5rem;
    background-color: #e3fae4;
    border-radius: 3rem;
}

.section-cards .section__cardB h4 {
    margin-bottom: 0.5em;
}

.section-cards .section__cardI {
    position: absolute;
    top: -3rem;
    left: -1rem;
    background-color: #32B221;
    height: 6rem;
    width: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-cards .section__cardI img {
    height: 75%;
    width: auto;
    object-fit: contain;
}

/* section */

.section-flip {
    display: flex;
    background-color: #2F5A2F;
    color: #fff;
    border-left: 1rem solid #fff;
    border-right: 1rem solid #fff;
}

.section-flip .section__split {
    flex: 0 0 50%;
    text-align: center;
    padding: 4rem 10rem;
}

.section-flip .section__img {
    transition: transform 0.3s;
}

.section-flip .section__split:hover .section__img {
    transform: scaleX(-1);
}

.section-flip .section__split h3 {
    font-size: 3rem;
    margin-bottom: 0.7rem;
}

.section-flip .section__split:nth-child(1) {
    background-color: #548e54;
}

.section-flip .section__split:nth-child(2) {
    background-color: #254725;
}

/* section-split */

.section-split {
    padding: 8rem 0;
}

.section-split h2 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.section-split p:last-of-type {
    margin-bottom: 2rem;
}

.section-split p + p {
    margin-top: 1rem;
}

.section-split ul {
    list-style: none;
    width: 30rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.3rem;
    margin-bottom: 3rem;
}

.section-split ul li {
    display: inline-block;
}

.section-split ul h6 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2F5A2F;
    margin-bottom: 0rem;
}

.section-split ul small {
    font-size: 1.4rem;
}

.section-split .section__grid {
    align-items: center;
}

.section-split .section__image {
    height: 100%;
    width: 100%;
}

.section-split .section__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
}

/* section-partners */

.section-partners {
    padding: 4rem 0;
    background-color: #fafafa;
}

.section-partners ul.section__content {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-partners li + li {
    margin-left: 5rem;
}

.section-partners .section__img {
    height: 5.5rem;
}

.section-partners .section__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.95);
}

.section-partners .section__img--width {
    height: 2.8rem;
}

/* section-faq */

.section-faq {
    padding: 8rem 0;
}

.section-faq .section__head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-faq .section__shell {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
}

.section-faq .section__head small {
    font-size: 1.6rem;
    font-weight: 500;
    color: #257328;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    justify-content: center;
}

.section-faq .section__head small:before {
    content: "";
    display: inline-block;
    background: url("../images/sun.png") no-repeat center;
    background-size: 100% 100%;
    height: 1.8rem;
    width: 1.8rem;
}

.section-faq .section__group {
    position: relative;
    overflow: hidden;
    transition: height 0.3s;
}

.section-faq .section__group--active {
    
}

.section-faq .section__group.section__group--active .section__groupB {
    position: relative;
    top: 0;
}

.section-faq .section__groupH {
    position: relative;
    padding: 1.5rem 6rem 1.5rem 2rem;
    border-style: solid;
    border-width: 0.1rem;
    border-color: #b1e3b3 transparent #b1e3b3 transparent;
    cursor: pointer;
    background-color: #fff;
}

.section-faq .section__groupH:after {
    content: "";
    position: absolute;
    height: 1.7rem;
    width: 1.7rem;
    border-style: solid;
    border-width: 0.15rem;
    border-color: #69a76b #69a76b transparent transparent;
    transform: translateY(-10%) rotate(-45deg);
    top: 50%;
    right: 2.5rem;
    transition: transform 0.3s;
}

.section-faq .section__group--active .section__groupH:after {
    transform: translateY(-75%) rotate(135deg);
}

.section-faq .section__groupB {
    padding: 2rem 2rem;
    position: absolute;
    z-index: -10;
    top: -10rem;
    left: 0;
    transition: top 0.3s;
}

.section-faq .section__groupB p + p {
    margin-top: 1rem;
}

/* section-signup */

.section-signup {
    margin-top: 7.1rem;
    position: relative;
    height: calc(100vh - 13.1rem);
}

.section-signup .section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: none;
}

.section-signup .section__bg img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section-signup .section__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-signup .section__sign {
    /* background-color: #e3fae4; */
    border-radius: 2rem;
    padding: 2rem 3rem;
}

.section-signup .section__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-signup .section__actions p {
    margin-top: 0.7rem;
    cursor: pointer;
}

.section-signup .section__head {
    text-align: center;
    margin-bottom: 1rem;
}

.section-signup .section__sign label {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
    color: #474747;
    padding-left: 1rem;
}

.section-signup .section__sign .section__body {
    width: 45rem;
}

.section-signup .section__signIn {
    
}

.section-signup .section__signIn .section__body {
    width: 32rem;
}

.section-signup .section__signIn .section__input + .section__input {
    margin-top: 1.2rem;
}

.section-signup .section__signUp {
    display: none;
}

.section-signup .grid {
    row-gap: 0;
    padding: 0 0.6rem;
}

.section-signup .grid .grid__col {
    padding: 0 0.6rem;
}

.section-signup .section__sign .grid__row + .grid__row {
    margin-top: 1rem;
}

.section-signup .section__input {
    width: 100%;
}

.section-signup .section__input.section__radio {
    position: relative;
    margin-bottom: 0;
}

.section-signup .section__input.section__radio label:before,
.section-signup .section__input.section__radio label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.section-signup .section__input.section__radio label:before {
    left: 0;
    height: 1.5rem;
    width: 1.5rem;
    background-color: #c2eec4;
}

.section-signup .section__input.section__radio label:after {
    left: 0.35rem;
    height: 0.8rem;
    width: 0.8rem;
    background-color: #65be68;
    opacity: 0;
    transition: opacity 0.3s;
}

.section-signup .section__input.section__radio input:checked + label:after {
    opacity: 1;
}


.section-signup .section__input.section__radio label {
    padding-left: 2.3rem;
    position: relative;
}

.section-signup .section__input.section__radio input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.section-signup .section__company,
.section-signup .section__person {
    margin-top: 0.8rem;
}

.section-signup .section__person {
    display: none;
}

.section-signup .section__input.section__radio input {
    display: block;
}

.section-signup .section__platform {
    border-radius: 2rem;
    padding: 2rem 3rem;
    display: none;
}

.section-signup .section__platform .section__pList {
    padding: 2.1rem 2rem;
    width: 25rem;
    margin: 2rem auto 0;
    border: 0.1rem solid #347735;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #f5fff5;
    position: relative;
    transition: padding 0.3s;
    overflow: hidden;
}

.section-signup .section__platform .section__pList.section__pList--open {
    padding: 2.1rem 2rem 16.1rem;
}

.section-signup .section__platform .section__pList:after {
    content: "";
    position: absolute;
    top: 3rem;
    right: 2rem;
    height: 1.2rem;
    width: 1.2rem;
    border-style: solid;
    border-width: 0.2rem;
    border-color: #254725 #254725 transparent transparent;
    transform: translateY(-25%) rotate(-45deg);
    transition: transform 0.3s;
}

.section-signup .section__platform .section__pList.section__pList--open:after {
    transform: translateY(-75%) rotate(135deg);
}

.section-signup .section__platform .section__pList p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}

.section-signup .section__platform .section__pList ul {
    position: absolute;
    top: 6rem;
    list-style: none;
}

.section-signup .section__pOpt {
    padding: 1.2rem 1.2rem;
    width: 23rem;
    margin: 2rem auto 0;
    border: 0.1rem solid #347735;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #f9fff9;
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    column-gap: 1.1rem;
    color: #000;
    text-decoration: none;
}

.section-signup .section__pOpt:hover {
    box-shadow: 0rem 0rem 0.7rem #c7edc7;
}

.section-signup .section__pImg {
    height: 4rem;
}

.section-signup .section__pImg img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* section-connect */

.section-connect {
    margin-top: 7.1rem;
    position: relative;
    height: calc(100vh - 13.1rem);
}

.section-connect .section__platform {
    border-radius: 2rem;
    padding: 2rem 3rem;
}

.section-connect .section__head {
    text-align: center;
    margin-bottom: 1rem;
}

.section-connect .section__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-connect .section__pImg {
    height: 4rem;
}

.section-connect .section__pImg img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

.section-connect .section__pOpt {
    padding: 1.2rem 1.2rem;
    width: 23rem;
    margin: 2rem auto 0;
    border: 0.1rem solid #347735;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #f9fff9;
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    column-gap: 1.1rem;
    color: #000;
    text-decoration: none;
}

.section-connect .section__pOpt:hover {
    box-shadow: 0rem 0rem 0.7rem #c7edc7;
}

/* section-pricings */

.section-pricings {
    margin-top: 7.1rem;
    position: relative;
    height: calc(100vh - 13.1rem);
}

.section-pricings ul.section__cards {
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.section-pricings .section__card {
    position: relative;
    padding: 4rem 3rem 3.5rem;
    min-width: 20rem;
    background-color: #fff;
    border-radius: 3rem;
    margin: 0 1.5rem;
    display: inline-block;
    box-shadow: #D2F5D3 0px 5px 15px;
}

.section-pricings li + li {
    margin-left: 3rem;
}

/* section-admin */

.section-admin {
    margin-top: 7.1rem;
    position: relative;
    min-height: calc(100vh - 13.1rem);
    padding: 2rem 0 5rem;
}

.section-admin h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.section-admin .section__data {
    width: 90rem;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.section-admin .section__cover {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
}

.section-admin .section__lock {
    text-align: center;
    display: block;
    font-size: 16rem;
    margin-bottom: 2rem;
    color: #474747;
    position: relative;
}

.section-admin .section__lock:after {
    content: "";
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 2.2rem;
    height: 4rem;
    border-radius: 1.1rem;
}

.section-admin .section__cover-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.section-admin .section__head {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.section-admin .section__switch {
    display: flex;
    border-radius: 1.8rem;
    overflow: hidden;
}

.section-admin .section__switchP {
    background-color: #437546;
    padding: 1rem 1.8rem;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
}

.section-admin .section__select {
    margin: 0 auto;
    width: 30rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.section-admin .section__select input::placeholder {
    color: #254725;
}

.section-admin .section__select-search {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: #254725;
}

.section-admin .section__switchP.section__switchP--active {
    background-color: #fdd661;
    color: #000;
}

.section-admin .section__switchP + .section__switchP {
    margin-left: 0.3rem;
}

.section-admin .section__chart {
    width: 100%;
    height: 39rem;
    margin: 3.5rem auto 1rem;
    padding-bottom: 4rem;
}

.section-admin .section__chartT {
    height: 100%;
    width: 100%;
}

.section-admin .section__switchC {
    margin-bottom: 1rem;
}

.section-admin .section__switchCpart {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #83c185;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
}

.section-admin .section__switchCpart--active {
    background-color: #006905;
}

.section-admin .section__switchC {
    display: flex;
    justify-content: center;
}

.section__switchCwrap {
    border-radius: 3rem;
    overflow: hidden;
}

.section-admin .section__table table {
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.section-admin .section__device {
    margin-bottom: 3rem;
    width: 100%;
}

.section-admin .section__health {
    background-color: #35bd1a;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__fault {
    background-color: #ffb414;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__disconn {
    background-color: #a1a1a1;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__on {
    background-color: #35bd1a;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__off {
    background-color: #d81f18;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__standby {
    background-color: #ffb414;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 1.1rem;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
}

.section-admin .section__device table {
    width: 100%;
    border-collapse: collapse;
}

.section-admin .section__chart {

}

.section-admin .section__summary {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    column-gap: 2rem;
}

.section-admin .section__total {
    padding: 2.5rem 2.5rem 2.2rem;
    flex: 0 0 calc((100% - 4rem) / 3);
    font-weight: 400;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
}

.section-admin .section__icon {
    font-size: 2rem;
    background-color: #ffcc24;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.section-admin .section__icon:after {
    content: "";
    filter: blur(0.5rem);
    position: absolute;
    z-index: -1;
    background-color: #ffcc24;
    height: 4.5rem;
    width: 4.5rem;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.section-admin .section__total small {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.2rem;
}

.section-admin .section__total:nth-child(1) {
    background-color: #f4f7fe;
}

.section-admin .section__total:nth-child(1) .section__icon {
    font-size: 2rem;
    background-color: #4965df;
    color: #fff;
}

.section-admin .section__total:nth-child(1) .section__icon:after {
    background-color: #4965df;
}

.section-admin .section__total:nth-child(2) {
    background-color: #f4fef4;
}

.section-admin .section__total:nth-child(2) .section__icon {
    font-size: 2rem;
    background-color: #248d2d;
    color: #fff;
}

.section-admin .section__total:nth-child(2) .section__icon:after {
    background-color: #248d2d;
}

.section-admin .section__total:nth-child(3) {
    background-color: #fffbf0;
}

.section-admin .section__total:nth-child(3) .section__icon {
    font-size: 2rem;
    background-color: #ffcc24;
    color: #fff;
}

.section-admin .section__total:nth-child(3) .section__icon:after {
    background-color: #ffcc24;
}

.section-admin .section__total span {
    font-size: 2.2rem;
}

.section-admin .section__choose {
    cursor: pointer;
}

.section-admin table {
    width: 100%;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
    overflow: hidden;
}

.section-admin table tr:first-child {
    background-color: #1e721e;
    color: #fff;
}

.section-admin table tr:first-child th {
    background-color: #1e721e;
    color: #fff;
}

.section-admin table tr:first-child th,
.section-admin .section__table table tr:nth-child(2) th {
    font-weight: 500;
    background-color: #63b763;
    color: #fff;
}

.section-admin .section__table table tr:nth-child(2) th {
    border-top: 0.1rem solid #fff;
}

.section-admin table th {
    border: 0.1rem solid #fff;
}
.section-admin th,
.section-admin td {
    padding: 1rem;
    text-align: center;
}

.section-admin .section__device tr td:nth-child(5) {
    position: relative;
}

.section-admin table tr:nth-child(even) {
    background-color: #f6f6f6;
}

.section-admin .section__stop {
    position: relative;
}

.section-admin .section__stop label {
    width: 3.5rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    background-color: #7ad283;
    display: block;
    position: relative;
    transition: background-color 0.5s;
    margin: 0 auto;
}

.section-admin .section__stop label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 1.3rem;
    height: 1.5rem;
    width: 2.2rem;
    border-radius: 0.75rem;
    background-color: #fff;
    transition: left 0.3s;
}

.section-admin .section__stop input:checked + label {
    background-color: #db5959;
}

.section-admin .section__stop input:checked + label:after {
    left: 0;
}

.section-admin .section__battery h3,
.section-admin .section__inverter h3,
.section-admin .section__control h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.section-admin .section__cbody .section__input {
    width: 25rem;
    margin-right: 2rem;
}

.section-admin .section__cbody {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 9rem;
}

.section-admin .section__cbody label {
    position: absolute;
    width: 6rem;
    height: 3rem;
    background-color: #7dd86d;
    border-radius: 1.5rem;
    margin-left: 1rem;
    transition: background-color 0.3s;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.section-admin .section__cbody label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3rem;
    width: 3.5rem;
    border-radius: 1.5rem;
    background-color: #f7f7f7;
    transform: translateX(2.5rem);
    transition: transform 0.3s;
}

.section-admin .section__cbody input[type = "checkbox"]:checked ~ label {
    background-color: #dc4141;
}

.section-admin .section__cbody input[type = "checkbox"]:checked ~ .section__input input {
    background-color: #b5b5b5;
    pointer-events: none;
}

.section-admin .section__cbody input[type = "checkbox"]:checked ~ .btn:after {
    background-color: #969696;
}

.section-admin .section__cbody input[type = "checkbox"]:checked ~ .btn {
    pointer-events: none;
}

.section-admin .section__cbody input[type = "checkbox"]:checked ~ label:before {
    transform: translateX(0);
}

.section-admin .section__inverter {
    margin-bottom: 3rem;
}

.section-admin .section__battery {
    margin-bottom: 3rem;
}

/* section-profile */

.section-profile {
    margin-top: 7.1rem;
    position: relative;
    min-height: calc(100vh - 13.1rem);
    padding: 4rem 0 0;
}

.section-profile .section__head {
    margin-bottom: 2rem;
}

.section-profile .section__data {
    padding-top: 1.2rem;
}

.section-profile .section__input label {
    padding-left: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
}

.section-profile .section__input .area {
    flex: 1;
    margin-right: 1.5rem;
}

.section-profile .section__input + .section__input {
    margin-top: 1.5rem;
}

.section-profile .section__pass {
    margin-top: 1.5rem;
    display: flex;
    column-gap: 1rem;
}

.section-profile .section__person {
    display: none;
}

.section-profile .grid__row + .grid__row {
    margin-top: 1rem;
}

.section-profile .section__company,
.section-profile .section__person {
    width: 100%;
}

.section-profile .section__shell {
    width: 80rem;
    max-width: 80rem;
    margin: 0 auto;
}

.section-profile .section__head {
    text-align: center;
}

.section-profile .btn {
    margin: 0 auto;
}

/* section-logger */

.section-logger {
    margin-top: 7.1rem;
    position: relative;
    min-height: calc(100vh - 13.1rem);
    padding: 3rem 0 4rem;
}

.section-logger .section__shell {
    max-width: 80rem;
    width: 80rem;
    margin: 0 auto;
}

.section-logger .section__head {
    margin-bottom: 2rem;
}

.section-logger .section__head h2 {
    text-align: center;
}

.section-logger .section__log {
    list-style: none;
}

.section-logger li {
    display: flex;
    background-color: #e7ffe7;
    padding: 1.2rem 2rem;
    border-left: 0.4rem solid #25992b;
    column-gap: 1.2rem;
    font-weight: 500;
}

.section-logger li.section__log--green {
    background-color: #e7ffe7;
    border-left: 0.4rem solid #25992b;
}

.section-logger li.section__log--red {
    background-color: #ffe7e7;
    border-left: 0.4rem solid #d31010;
}

.section-logger li.section__log--yellow {
    background-color: #fff9e7;
    border-left: 0.4rem solid #ffb700;
}

.section-logger li + li {
    margin-top: 1rem;
}

.section-logger .section__pdate {
    flex: 0 0 19%;
}

.section-logger .section__pname {
    flex: 0 0 22%;
}

.section-logger .section__paction {
    flex: 1;
}

.section-logger .section__pwho {
    flex: 0 0 15%;
}

.section-logger .section__filter {
    display: flex;
    column-gap: 1.2rem;
    margin-bottom: 0.6rem;
    padding: 0 2rem;
}

.section-logger .fa-filter {
    position: relative;
    padding-right: 2rem;
}

.section-logger .section__filter .section__pdate,
.section-logger .section__filter .section__pname,
.section-logger .section__filter .section__paction,
.section-logger .section__filter .section__pwho {
    position: relative;
}

.section-logger .section__filter input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.section-logger label {
    cursor: pointer;
}

.section-logger label:before,
.section-logger label:after {
    content: "";
    position: absolute;
    top: 0;
}

.section-logger label:after {
    left: 3rem;
    width: 0.2rem;
    height: 1.7rem;
    background-color: #115320;
}

.section-logger label:before {
    left: 2.6rem;
    width: 0.6rem;
    height: 0.6rem;
    border-style: solid;
    border-width: 0.2rem;
    border-color: transparent transparent #115320 #115320;
    transform: translateY(0.6rem) rotate(-45deg);
    transition: transform 0.3s;
}

.section-logger input:checked + label:before {
    transform: translateY(0.1rem) rotate(135deg);
}

.section-logger .section__search {
    margin: 0 auto;
    width: 30rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-logger .section__search input::placeholder {
    color: #254725;
}

.section-logger .section__search-search {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: #254725;
}

/* section-pickplant */

.section-pickplant {
    margin-top: 7.1rem;
    position: relative;
    min-height: calc(100vh - 13.1rem);
    padding: 7rem 0 4rem;
}

.section-pickplant .section__head {
    margin-bottom: 2rem;
}

.section-pickplant .section__head h2 {
    font-size: 2.8rem;
    text-align: center;
}

.section-pickplant .section__content {
    margin: 0 auto;
    width: 40rem;
}

.section-pickplant .section__select {
    margin: 0 auto;
    width: 30rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-pickplant .section__select input::placeholder {
    color: #254725;
}

.section-pickplant .section__select-search {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: #254725;
}

.section-pickplant ul {
    list-style: none;
}

.section-pickplant li {
    border: 0.1rem solid #509454;
    border-radius: 0.5rem;
}

.section-pickplant li + li {
    margin-top: 0.5rem;
}

.section-pickplant .section__check {
    padding: 1.8rem 2rem;
    display: flex;
    display: flex;
    align-items: center;
    position: relative;
}

.section-pickplant .section__check label {
    padding-left: 3.5rem;
    position: relative;
    font-weight: 500;
}

.section-pickplant .section__check label:before,
.section-pickplant .section__check label:after {
    content: "";
    position: absolute;
    top: 50%;
}

.section-pickplant .section__check label:before {
    left: 0rem;
    height: 2rem;
    width: 2rem;
    background-color: #a5e2a7;
    border-radius: 0.3rem;
    transform: translateY(-50%);
}

.section-pickplant .section__check label:after {
    left: 0.5rem;
    height: 0.4rem;
    width: 0.7rem;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
    transform: translateY(-75%) rotate(135deg);
    transition: opacity 0.3s;
    opacity: 0;
}

.section-pickplant .section__check input:checked + label:after {
    opacity: 1;
}

/* checkbox */

.checkbox {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* area */

.area {
    width: 100%;
    height: 4rem;
    border-radius: 2rem;
    background-color: #e3fae4;
    border: none;
    padding: 0 1.8rem;
    color: #254725
}

input:focus {
    outline: none;
    border: none;
}

.area::placeholder {
    color: #708a70;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* btn */

.btn {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 1.4rem 3rem;
    line-height: 1;
    border-radius: 2rem;
    color: #fff;
    overflow: hidden;
    transition: color 0.5s;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    z-index: 3;
}

.btn:hover {
    color: #000;
}

.btn::before {
    content: "";
    position: absolute;
    background-color: #ffc71f;
    padding-bottom: 100%;
    width: 130%;
    top: -2rem;
    left: 50%;
    transform: translate(-50%, 7rem);
    border-radius: 50%;
    z-index: -1;
    cursor: pointer;
    transition: transform 0.5s;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #254725;
    z-index: -2;
}

.btn:hover::before {
    transform: translate(-50%, 0);
}

.btn .btn__arrow {
    position: relative;
    height: 1.2rem;
    width: 1.2rem;
    border-width: 0.15rem;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
    margin-left: 0.7rem;
    transition: border-color 0.3s;
}

.btn:hover .btn__arrow {
    border-color: #000 #000 transparent transparent;
}

.btn .btn__arrow:after {
    content: "";
    position: absolute;
    height: 1.6rem;
    width: 0.15rem;
    background-color: #fff;
    right: 0;
    top: -0.25rem;
    transform: translateX(-0.40rem)  rotate(45deg);
    transition: background-color 0.3s;
}

.btn:hover .btn__arrow:after {
    background-color: #000;
}

/* grid */

.grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
    width: 100%;
}

.grid .grid__row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.grid .grid__col {
    padding: 0 1rem;
}

.grid .grid__col--full {
    flex: 0 0 100%;
    max-width: 100%;
}

.grid .grid__col--fill {
    flex: 1;
}

.grid .grid__col--1of2 {
    flex: 0 0 50%;
    max-width: 50%;
}

.grid .grid__col--1of3 {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}

.grid .grid__col--1of4 {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
}

.grid .grid__col--custom1 {
    flex: 0 0 35%;
    max-width: 32%;
}

/* footer */

.footer {
    padding: 2rem 0;
    background-color: #e3fae4;
    text-align: center;
}

.footer span {
    font-weight: 700;
    color: #2F5A2F;
}

/* goTop */

.goTop {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    border-radius: 50%;
    border: 0.5rem solid #ffc71f;
    height: 5rem;
    width: 5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.goTop .goTop__luch {
    position: absolute;
    height: 7.8rem;
    left: 50%;
    top: 50%;
}

.goTop .goTop__luch:before,
.goTop .goTop__luch:after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 1rem;
    background-color: #ffc71f;
    border-radius: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
}

.goTop.goTop--blur {
    pointer-events: none;
    transition: filter 0.3s, transform 0.3s;

}

.goTop.goTop--blur:hover {
    filter: blur(0.2rem);
    transform: rotate(22.5deg);
}

.goTop .goTop__luch:after {
    content: "";
    position: absolute;
    bottom: 0;
}

.goTop.goTop--arrow:before,
.goTop.goTop--arrow:after {
    content: "";
    position: absolute;
}

.goTop.goTop--arrow:after {
    width: 0.2rem;
    height: 1.5rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffc71f;
}

.goTop.goTop--arrow:before {
    border-width: 0.2rem;
    border-style: solid;
    border-color: transparent transparent #ffc71f #ffc71f;
    height: 1rem;
    width: 1rem;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
}

.goTop .goTop__luch:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.goTop .goTop__luch:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.goTop .goTop__luch:nth-child(3) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.goTop .goTop__luch:nth-child(4) {
    transform: translate(-50%, -50%) rotate(135deg);
}

.goTop.scrolled {
    opacity: 1;
}

.goTop.scrolled.goTop--blur {
    pointer-events: auto;
}