/*  */
/* This software/source code is the property of SOLIDSTUDIO Sp. z o.o. Its use, including copying, */
/* dissemination and modification, may be done only on the basis of and within the limits of a license granted */
/* by SOLIDSTUDIO Sp. z o.o. Any use of the software/the source code outside of the license, including by an */
/* unauthorised entity, shall constitute an infringement of SOLIDSTUDIO Sp. z o.o. rights. */
/*  */
body {
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 46px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #141414;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #141414;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 100px 25px;
    display: flex;
    justify-content: space-between;
}

.admin-header {
    max-width: 1200px;
    padding: 80px 100px 40px 100px;
    margin: 0 auto;
}

.admin-header h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.imgSection {
    background: linear-gradient(180deg, #ffff 50%, #f5f6fe 50%);
    display: flex;
    justify-content: center;
}

.imgSection img {
    object-fit: contain;
    width: 100%;
    max-width: 1380px;
}

.footer {
    background: #f5f6fe;
}

.rightSide img {
    margin-bottom: 24px;
}

.contactSection {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 50px 100px 10px 100px;
}

.contactSection p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #141414;
    margin-bottom: 0;
    margin-top: 6px;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 100px;
    padding-left: 100px;
}

.copyright p {
    border-top: 1px solid #d9e4e8;
    margin-bottom: 0;
    padding-top: 32px;
    padding-bottom: 83px;
    opacity: 0.6;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}

.chargePointHeader {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 100px 10px 100px;
}

.chargePointHeader h1 {
    margin-bottom: 100px
}

.chargePointSection {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px 100px 100px;
    display: flex;
}

.pointImg {
    width: 33%;
}

.pointButtons {
    width: 66%;
    display: flex;
}

.mainActions {
    width: 50%;
}

.technicalActions {
    width: 50%;
}

.pinInput {
    width: 50px;
    padding: 20px;
    margin-left: 20px;
    font-size: 16px;
}

.dataInput {
    width: 50px;
    padding: 20px;
    margin-left: 20px;
    font-size: 16px;
}

.border {
    box-shadow: 0 0 40px 0 rgba(26, 41, 109, 0.1);
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 22px;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    width: 245px;
    align-items: center;
    display: flex;
    transition: color 0.5s;
}

button {
    box-shadow: 0 0 40px 0 rgba(26, 41, 109, 0.1);
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    width: 245px;
    height: 69px;
    margin: 31px 0 29px 0;
    padding: 23px 19px 22.2px 39px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.5s;
}

button:focus {
    outline: none;
}

.normal {
    opacity: 0.8;
    color: #141414;
}

.borderless {
    box-shadow: none;
}

.normal:hover {
    transition: color 0.5s;
    opacity: 1;
    color: #002aea;
}

.chargePointImage img{
    transition: all 1s;
    opacity: 0;
}
.hide{
    display: none;
}

.animated {
    -webkit-animation-name: shake;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

@media screen and (max-width: 1000px) {
    .chargePointSection {
        flex-direction: column;
        align-items: center;
    }

    .pointButtons {
        width: 100%;
        margin-top: 40px;
    }
}