.terms-container {
    color: #222;
    position: fixed;
    width: 100%;
    bottom: 2rem;
    z-index: 9999;
    display: none;
}

.terms-content {
    box-shadow: 0 0 8px rgba(0,0,0,0.25);
    background: white;
    max-width: 80%;
    border-radius: 8px;
    padding: 10px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.terms-text {
    width: 65%;
    font-size: 16px!important;
	font-weight: 400;
}

.group-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.group-buttons .terms-save {
    background: rgb(34, 35, 43);
    color: #fff;
}

.terms-content button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    width: 160px;
    font-weight: 500;
    font-size: 16px;
}

.terms-content button:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

@media(max-width: 1350px) {
    .terms-text {
        width: 100%;
        font-size: 14px;
    }
}