.custom-checkbox{
	margin-right: 12px;
    appearance: none;
    -webkit-appearance: none;
    width: 19px;
    height: 19px;
    background: var(--white-color);
    border:1px solid var(--main-color);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-checkbox::after{
	font-family: "Font Awesome 5 Free";
    content: "\2714";
    color: var(--white-color);
    font-size: 12px;
    display: none;
}
.custom-checkbox:checked{
	background: var(--main-color);
}
.custom-checkbox:checked::after{
	display: block;
}


/* billing info page checkbox */
.container-billing-info .check-conditions {
    display: flex;
}
.container-billing-info .custom-checkbox:checked::after{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}


