Icons are a simple and effective way to draw users into the content of your website. They can help you structure content and separate different sections of the page. The primary goal of using icons should be to help the user find information on the page.
Icons
With icons you can quickly sum up what your text is about. Use an icon that encapsulates the point you are trying to get across in your paragraph. This will make the text more accessible to your readers.
Create an icon
example of a simple icon
You can place icons just about anywhere using simple markup. We are going to use an inline HTML element such as <span> and add appropriate classes to it. These are required classes: ic and the icon's name prefixed with ic-, for example ic-star. Here's an example of the code which will add a star icon:
<span class="ic ic-star"></span> example of a simple icon
If you change the font-size of the icon's container, the icon gets bigger. Same things goes for color, drop shadow, and anything else that gets inherited using CSS.
Icon size
ic-lg
ic-2x
ic-3x
ic-4x
To increase icon size relative to the font-size of the icon's container, use the following classes: ic-lg (increases the size of the icon by 33%), ic-2x, ic-3x, ic-4x, ic-5x, ic-6x, ic-7x or ic-8x.
If your icons are getting chopped off on top and bottom, make sure you have sufficient line-height.
Inline styles
Now you can start having more fun with icons. By default all icons have the same color as text, but if you want to change the color of selected icon, you can do it with inline CSS styles. Add the style attribute to the icon element and specify the color.
You can add inline styles to icons the same way as to any other HTML elements in a HTML document. The style attribute can contain any CSS property, such as color, font-size, text-shadow etc.
To display an icon inside a box with background color (we call it an iconbox), add the ib class to the icon element. With the optional class ib-hover, the color of the iconbox will change on mouse hover over the iconbox.
Background color will be automatically added to the icon element. Make sure to leave the <span> tag empty – otherwise the contents of the tag will be displayed together with the icon and any additional space can dislocate the icon.
<span class="ic ic-star ib ib-hover"></span> example of an iconbox
The default background color and color of the icon can be configured in the admin panel: Theme Design > Colors > Iconbox
Iconbox size
To increase iconbox size, use the following classes: ib-size-l, ib-size-xl, ib-size-xxl, ib-size-xxxl.
The icon size is independent of the iconbox size and can be increased with classes which were described earlier. For example, add class ic-lg to make the icon a little bit bigger.
To add eye-catching hover effects to the iconbox, use one of the following combinations of classes. Note that in each case the combination consists of two classes:
Icons can help you structure content and separate different sections of the page. The primary goal of using icons should be to help the user find information on the page and with icons you can quickly sum up what your text is about. For example, when you build lists, instead of using standard bullets, you can use icons to draw attention to paragraphs and other blocks of content.
Simple block with icon
Heading Example
This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks. Icons are an effective way to...
To create a simple block of text with an icon, wrap your text inside a <div> element with the feature class. Here's a minimal example:
<div class="feature">
<span class="left ic ic-star ic-2x" style="color: #5bd2ec;"></span>
<h4>Heading Example</h4>
<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks. Icons are an effective way to...</p>
</div>
If you add left or right class to the icon, the icon will be taken from the normal flow and placed along the left or right side of its container, and text will wrap around it.
Indented block
Heading Example
This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.
To display a block with indentation on the left side, add the indent class to the block element:
To increase the size of the indentation, use the following classes together with the indent class: indent-size-l, indent-size-xl, indent-size-xxl, indent-size-xxxl.
<div class="feature feature-icon-hover indent">
<span class="left ic ic-star ic-2x" style="color: #de2666;"></span>
<h4>Heading Example</h4>
<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
Block with iconbox and hover effect
Heading Example
This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.
To change the background color of the iconbox on mouse hover over the entire block, add the feature-icon-hover class to the block element.
If you increase the iconbox size (by adding a class such as ib-size-xl), you will also need to add corresponding class (in this case: indent-size-xl) to the block element. It will adjust the size of the indentation.
<div class="feature feature-icon-hover indent indent-size-xl">
<span class="left ic ic-star ic-lg ib ib-size-xl"></span>
<h4>Heading Example</h4>
<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
The default background color and color of the icon can be configured in the admin panel: Theme Design > Colors > Iconbox
More complex example
Above heading
Heading Example
Text below heading
This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.
1
Lorem ipsum dolor sit, consectetur adipiscing elit.
2
Lid est laborum et dolorum fuga et harum quidem.
3
Seq et perspser iciatis unde omnis iste nautis.
Example of another text paragraph inside a block. Icons are an effective way to draw users into the content of your store.
Here's another, more complex example with additional headings and nested blocks. To change the background color of the iconbox you can use inline styles. Add the style attribute to the iconbox element and specify the background color.
<div class="feature indent indent-size-xl">
<span class="left ic ic-home ic-lg ib ib-size-xl" style="background-color: #ffb13e;"></span>
<h6 class="above-heading">Above heading</h6>
<h4>Heading Example</h4>
<h6 class="below-heading">Text below heading</h6>
<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
<div class="feature feature-icon-hover indent">
<span class="ic ic-char ib">1</span>
<p>Lorem ipsum dolor sit, consectetur adipiscing elit.</p>
</div>
<div class="feature feature-icon-hover indent">
<span class="ic ic-char ib">2</span>
<p>Lid est laborum et dolorum fuga et harum quidem.</p>
</div>
<div class="feature feature-icon-hover indent">
<span class="ic ic-char ib">3</span>
<p>Seq et perspser iciatis unde omnis iste nautis.</p>
</div>
<p>Example of another text paragraph inside a block. Icons are an effective way to draw users into the content of your store.</p>
<a href="#">Read more...</a>
</div>
Centered block
Heading Example
This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.
To align elements of the block to the center, use the centered class.
<div class="feature centered">
<span class="ic ic-lightbulb ic-2x ib ib-size-xl" style="background-color: #bf78dd;"></span>
<h4>Heading Example</h4>
<p>This is a paragraph of sample text. Using this markup you can quickly build all kinds of blocks.</p>
</div>
Font Awesome icons
Font Awesome is a font and icon toolkit based on CSS. It offers a collection of more than 600 vector icons which can be easily customized (the same as other font icons available in the theme).
Basic Font Awesome icons
Use the fa class and the icon's name with an inline HTML element span. Here's an example of the code which will create a flag icon:
This is a short paragraph of sample text inside a block.
You can use Font Awesome icons together with other icon classes described in this document. Here's an example of an iconbox element (the ib class) with Font Awesome icon inside a block
<div class="feature feature-icon-hover indent indent-size-l">
<span class="ic ic-2x ib ib-size-l left fa fa-flag" style="background-color: #71d1b3;"></span>
<h4>Heading Example</h4>
<p>This is a short paragraph of sample text inside a block.</p>
</div>
Examples of block with icon
Unlimited Colors
You have never seen so many options! Change colors of dozens of elements, apply textures, upload background images...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur quidquid latine dictum sit etiam neque velit, blandit sed scelerisque solare de equis...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus. Lorem ipsum dolor sit consectetur...
Block with headings, iconboxes and nested paragraphs
The Secondary Heading
Feature Title Example
Text below heading
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Sinlgle line of text, short paragraph.
1
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis, nullam ornare.
2
Lid est laborum et dolorum fuga. Et harum quidem rerum facilis est et expeditasi distinctio nam libero eligendi.
3
Sed ut perspser iciatis unde omnis iste natus error sit voluptatem accusantium doloremque laste dolores sadips.
4
Et harum quidem rerum facilis est et expeditasi distinctio. Nam libero tempore, nobis est optio cumque
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
The Secondary Heading
Feature Title Example
Text below heading
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Sinlgle line of text, short paragraph.
1
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis, nullam ornare.
2
Lid est laborum et dolorum fuga. Et harum quidem rerum facilis est et expeditasi distinctio nam libero eligendi.
3
Sed ut perspser iciatis unde omnis iste natus error sit voluptatem accusantium doloremque laste dolores sadips.
4
Et harum quidem rerum facilis est et expeditasi distinctio. Nam libero tempore, nobis est optio cumque
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Blocks - separated with border
The Secondary Heading
Feature Title Example
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque quis. Nullam ornare enim nec justo bibendum lobortis. In eget metus. Lorem ipsum dolor sit consectetur, adipiscing elit
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Lorem ipsum dolor sit, consectetur adipiscing elit. Etiam neque velit, blandit sed scelerisque solare de equis. Nullam ornare enim nec justo biben lobortis. In eget metus...
Този уебсайт използва политика за поверителност и когато го използвате се съгласявате с нея. В случай, че не желаете може да използвате бутон Х на вашия браузър. Вижте повече
В качеството си на администратор на лични данни, "КЕРАТОН " ООД има задължение да Ви информира за личните данни, които събира, целите за които се обработват данните, мерките и гаранциите за защита на обработваните данни, какво да очаквате, когато обработваме Вашите лични данни, правата Ви и начина, по който може да ги упражните, в съответствие с изиксванията на Регламент /ЕС/2016/679 на ЕС и приложимите актове на Република България.
Цели и основания за обработване на лични данни, категории обработвани лични данни
"КЕРАТОН " ООД събира и обработва лични данни на основания, позволени от българското и европейското законодателство при осъществяване на своята дейност.
Информацията, която може да съдържа Ваши лични данни, се обработва за следните цели :
- Човешки ресурси
- Контрагенти/клиент, доставчик, дистрибутор и т.н./
- за преддоговорни отношения
- видеонаблюдение
- жалби, сигнали, запитвания и други искания
- уведомления за нарушения за сигурността на данните
- изпълнение на други функции, определени от закона
При събирането и обработването на личните данни Дружеството се съобразява с основните принципи при обработването им, регламентирани в чл. 5 на Регламент /ЕС/2016/679 на ЕС („Принципи, свързани с обработването на личните данни“), като: добросъветна и прозрачна обработка при спазване изискванията на закона и обработване по начин, който гарантира необходимото ниво на сигурност; точност на данните и свеждането им до минимум; съхраняване във форма, която позволява идентифициране на субекта на личните данни за период, не по-дълъг от необходимото за целите, за които същите се обработват.
Човешки ресурси
За целите на управлението на човешки ресурси се обработват лични данни на кандидати за работа, настоящи и бивши служители на дружеството, като събраните данни се използват само за целта и се предоставят на трети лица само в случаите, когато това е предвидено в закон и при спазване на подходящите мерки за защита на личните данни.
В хода на дейностите по управление на човешки ресурси се обработват данни за идентификация на физическите лица, данни за образование и квалификация, данни за здравето, данни за контакт, както и други данни, изискуеми по силата на специалните закони, които регламентират трудовите и служебни правоотношения, данъчно-осигурителните правоотношения, счетоводното отчитане на дейността, безопасните и здравословни условия на труд, както и социалните въпроси.
Във връзка с изпълнението на трудови или служебни правоотношения се обработват само изискуемите от закона лични данни, които се съхраняват в определените от трудовото и осигурително законодателство срокове.
Дейностите по осигуряване на здравословни и безопасни условия на труд се уреждат по договор със служба по трудова медицина по реда на Наредбата за условията и реда за осъществяване дейността на службите по трудова медицина.
Контрагенти
В изпълнение на своите дейности "КЕРАТОН" ООД обработва лични данни на физически и юридически лица за изпълнение на договорите, които сключва.
Доколкото във връзка с изпълнението на тези договори се обработват лични данни на отделни физически лица, за тях се обработва информация в минимален обем, достатъчна само за точното изпълнение на задълженията по съответния договор. Достъп до тази информация не се предоставя на трети лица само, освен ако е налице законово основание за получаване на данните или те не са общодостъпни поради включването им в публичен регистър.
Преддоговорни отношения
В изпълнение на дейност по преддоговорни отношения събирането на лични данни е в минимален обем, достатъчен само за извършване на необходимите дейности.
Видеонаблюдение
В "КЕРАТОН" ООД се извършва видеонаблюдение с охранителна цел. Достъп до записите имат определени служители в рамките на изпълняваните от тях служебни задължения.
Жалби, сигнали и други искания
Жалби, сигнали и други искания във връзка с дейността на "КЕРАТОН" ООД, следва да бъдат подписани и се подават писмено до адреса на дружеството или по електронен път на посочетаната по -горе електронна поща, което изпращане следва да бъде документирано.
При обработването на информацията, съдържаща се в жалбите, сигналите и другите искания, изпратени до " КЕРАТОН" ООД се обработват само лични данни, относими към конкретния случай. Данните от тях, могат да бъдат предоставени на трети лица, само ако е предвидено в закон.
Уведомления за нарушения за сигурността на данните
„КЕРАТОН“ ООД изпраща надлежно уведомление до физическите лица, когато има вероятност нарушението на сигурността на личните данни да породи висок риск за правата и свободите на засегнатите лица .В случай, че нарушението на сигурността на данни обхваща голям брой субекти на данни и е невъзможно изпращането на индивидуално уведомление се прави публично съобщение или се предприема друга подобна мярка за еднаква степен на ефективна информиранност.
Предаване на лични данни и съгласие
"КЕРАТОН" ООД не разкрива лични данни на трети страни и получатели, освен ако не е налице законово основание за получаване на данните, сключен договор, изрично съгласие или данните не са общодостъпни поради включването им в публичен регистър.
Когато дружеството обработва данни въз основа на съгласие на субекта, личните данни се обработват само ако лицата свободно, конкретно, информирано и недвусмислено са изразили своето съгласие за обработването.
Срок за съхранение на данните
"КЕРАТОН" ООД, като администратор на лични данни обработва данните за период с минимална продължителност, съгласно целите за обработка и предвиденото в действащото законодателство, в съответствие с принципа за ограничение на съхранението.
За срок от 50 години се съхраняват данните, свързани с трудовоправни и осигурителни отношения. Останалите данни се съхраняват за срок между 2 месеца и 5 години, според вида на данните, определящи законовото задължение за обработването, включително съхраняването им, както и според вътрешен правилник за организацията и мерките за защита на личните данни.
Права на физическите лица субекти на данни
- Право на достъп/информация;
- Право на коригиране на неточни или непълни данни;
- Право на изтриване (правото да бъдеш забравен);
- Право на ограничение на обработването;
- Право на преносимост на данните;
- Право на възражение срещу обработка, ако са налице условията на чл. 21 от РЕГЛАМЕНТ 2016/679.
- Право на оттегляне на съгласието по всяко време.
Горните права може да упражните чрез отправено писмено искане по електронната поща посочена по-горе или по поща на адрес гр.София, ул.Оборище 131-135 , "КЕРАТОН" ООД. Искането следва да бъде подписано и да съдържа : име и фамилия и адрес за кореспонденция, телефонен номер, описание на искането, дата на искането, подпис на лицето.Срокът за отговор е 1 /един/ месец.
Право на жалба
В случай, че субектът на данни установи, че "КЕРАТОН" ООД нарушава нормативна уредба, той има право да осъществи контакт с дружеството за изясняване на въпроса, както и право да подаде жалба пред Комисията за защита на личните данни и пред друг регулаторен орган.
Мерки за защита на личните данни
С Вътрешен правилник за организацията и мерките за защита на личните данни в "КЕРАТОН" ООД са въведени мерки за ефективна защита на обработваните лични данни и възможност за упражняване правата на субектите на данни, предвидени в Регламент /ЕС/2016/679.
"КЕРАТОН "ООД си запазва правото да актуализира настоящата Политика за поверителност с цел прилагане на най-актуални политики и спазване на действащото законодателство.