.acceptment {
    position: fixed;
    bottom: 25px;
    right: 90px;
    max-width: 450px;
    height: 200px;
    line-height: normal;
    font-size: 14px;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #fff;
    padding: 16px;
    color: #fff;
    background-color: #102139;
}

@media (max-width: 768px) {
    .acceptment {
        right: 50%;
        height: auto;
        transform: translateX(50%);
        width: calc(100% - 32px);
    }

}

.acceptment .item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acceptment .item p {
    line-height: 1.2;
}

.acceptment .item .cookie-btn {
    background-color: green;
    border-radius: 8px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    padding: 8px 4px;
}

.acceptment .item .cookie-btn:hover {
    background-color: #1e6115;
    color: white;
}

@media (max-width: 768px) {
    .acceptment .item .cookie-btn {
        margin-top: 16px;
    }
}