.personal-data-agreement {
    position: fixed;
    width: 100%;
    bottom: 0;
    margin-bottom: -500px;
    background-color: #f2f2f2;
    z-index: 1000;
    -webkit-box-shadow: 0 10px 25px black;
    box-shadow: 0 10px 25px black;
}

.personal-data-agreement.visible {
    -webkit-transition: margin 1s;
    transition: margin 1s;
    margin-bottom: 0;
}

.personal-data-agreement .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .personal-data-agreement .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.personal-data-agreement .wrapper {
    padding: 20px 0 30px;
}

.personal-data-agreement .text {
    width: 64%;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .personal-data-agreement .text {
        width: 100%;
    }
}

.personal-data-agreement .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 35%;
    padding-top: 20px;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .personal-data-agreement .buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .personal-data-agreement .buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 100%;
    }
}

.personal-data-agreement .btn:last-child {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .personal-data-agreement .btn:last-child {
        margin: 20px 0;
    }
}

.personal-data-agreement .btn.cancel {
    color: #362b2b;
    background: transparent;
    border: 1px solid #362b2b;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.personal-data-agreement .btn.cancel:hover {
    -webkit-box-shadow: inset 0 0 5px 0px grey;
    box-shadow: inset 0 0 5px 0px grey;
}

.button {
    width: 180px;
    height: 40px;
    min-height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #f2f2f2;
    background: linear-gradient(90deg, #282696 .43%, #09abe4 112.43%);
    border-width: 0;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
}

.button:focus {
    outline: none;
    -webkit-box-shadow: 0 0 2px 2px rgb(47, 119, 202);
    box-shadow: 0 0 2px 2px rgb(47, 119, 202);
}

.button.paid {
    background-color: #6DCB71;
}

.button.debt,
.button.danger {
    background-color: #E25048;
}

.button:hover:not(:disabled) {
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.button:disabled {
    background-color: #aeaeae;
    cursor: default;
}

.button.reciept_pay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}