body, html {
    display: none;  
}

p {
    font-family: 'AkrobatRegular';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'AkrobatBold';
}

.theme-btn-color-base {
    width: 100%;
    color: #fff;
    border-radius: 0px;
    background-color: #C71441;
    font-family: 'AkrobatRegular';
}

.theme-btn-color-base:hover {
    color: #fff;
    background-color: #a21236;
    font-family: 'AkrobatRegular';
}

.theme-btn-color-base-wauto {
    width: auto;
    color: #fff;
    border-radius: 0px;
    background-color: #C71441;
    font-family: 'AkrobatRegular';
}

.theme-btn-color-base-wauto:hover {
    color: #fff;
    background-color: #a21236;
    font-family: 'AkrobatRegular';
}

.theme-form-label {
    font-family: 'AkrobatRegular';
    font-size: 18px;
}
.custom-control-label:before{
    background-color:red;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background-color:black;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='red' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-control-input:active~.custom-control-label::before{
    background-color:green;
}

/** focus shadow pinkish **/
.custom-checkbox .custom-control-input:focus~.custom-control-label::before{
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 247, 0.25); 
}