/**
* ~GC Modul~
* 
* Module for Prestashop E-Commerce Software
*
* @author    Markus Engel <info@onlineshop-module.de>
* @copyright Copyright (c) 2019, Onlineshop-Module.de
* @license   commercial, see licence.txt
*/

label.gc-mandatory-field {
	position: relative;
}

label.gc-mandatory-field::after {
	content: '*';
	color: #F00;
}

.custom-checkbox input[type="checkbox"]+span.gc-mandatory-checkbox {
	position: relative;
}

.custom-checkbox input[type="checkbox"]+span.gc-mandatory-checkbox::after {
	content: '*';
    color: #F00;
    position: absolute;
    left: auto;
    top: -5px;
    right: -10px;
}

body#checkout .custom-checkbox > label {
	padding-left: 2rem;
}