.buttonBlue {
    height: 40px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: white;
    background: linear-gradient(to right, #6162f3, #75cbf9);
    color: white;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    font-weight: 600;
}

.buttonBlue:hover {
    color: white;
    text-decoration: underline;
}

.buttonBlue:any-link {
    color: white;
}

.buttonWhite {
    height: 40px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #6162f3;
    color: #6162f3;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    font-weight: 600;
}

.buttonWhite:hover {
    color: #6162f3;
    text-decoration: underline;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #6162f3;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #6162f3;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

input[type=checkbox] {
    filter: hue-rotate(30deg);
    transform: scale(1.5);
    margin: 4px 4px 0 !important;
}

/* LOADER */
.loader-bg {
    background-color: #00000030;
    width: 50px;
    height: 50px;
    margin: auto;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 49%;
}

.loader {
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 40px;
    height: 40px;
    margin: 5px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.loader-bg-text {
    background-color: #00000030;
    width: 200px;
    height: 50px;
    margin: auto;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 49%;
}

.loader-text {
    width: 200px;
    padding: 15px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.error-mini {
    font-size: 12px;
    color: red;
    font-weight: lighter;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}