.callback-policy-group {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
}
.callback-policy-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.callback-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #009982; 
}
.callback-policy-error {
  display: none;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}
.error-checkbox + .callback-policy-text {
  color: #e74c3c;
}



#cookie_notification {
    font-weight: 500;
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 5px;
    left: 50%;
    width: 900px;
    max-width: 85vw;
    transform: translateX(-50%);
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 5px;
    border: 1px solid white;
    box-shadow: 2px 3px 10px rgb(0 0 0 / 40%);
    font-size: 12px;
    z-index: 999
}

#cookie_notification p {
    font-size: 13px;
    margin: 0;
    color: #555;
    line-height: 1.4;
	font-weight: 500;
}

#cookie_notification p a {
    color: #009982;
    text-decoration: underline;
}

#cookie_notification p a:hover {
    text-decoration: none;
}

#cookie_notification .cookie_accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #009982;
    border: 0;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 7px;
    max-width: 100%;
    transition: all .1s linear;
    margin: 0 0 0 25px;
    font-size: 15px;
	font-weight:700;
}

#cookie_notification.show {
    display: flex !important;
}

@media (max-width: 792px) {
    #cookie_notification.show {
        display: block !important;
        text-align: center
    }

    #cookie_notification .cookie_accept {
        margin: 20px 0 0 0;
        font-size: 13px;
    }
}