﻿body {
}


/* ============================= */
/*        Breadcrumb             */
/* ============================= */

.header-top > .container > .breadcrumb {
    position: absolute;
}

.breadcrumb {
    font-size: 12px;
}

.breadcrumb:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    font-size: 12px;
    content: '\f015';
    color: white;
}

    .breadcrumb li + li:before {
        padding: 0 7px 0 6px;
        content: '/';
        color: white;
        font-size: 10px;
    }

.breadcrumb > .active {
    color: white;
}

/* Override theme */
.breadcrumb li a {
    color: white;
}


/* ============================= */

/* ============================= */
/*          Footer               */
/* ============================= */

.footer {
    background-color: #f6f6fa;
    border-top: 1px solid #ddd;
    color: #777;
}

.footer a {
    color: #555;
}

.footer > .container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 15px;
}

.footer .contact-item i {
    padding-right: 15px;
}

.footer .col-logo img {
    max-height: 100px;
}

/* Social */

.footer .locations + .social-icons {
    margin-top: 25px;
}

.footer .social-icons .social-icon {
    font-size: 16px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #2196F3;
    margin-left: 0;
    color: #fff;
}

/* Twitter */

    .footer .tweet > p {
        position: relative;
        border: solid 1px #444;
        border-color: #00aab8;
        background-color: #00aab8;
        padding: 15px;
        color: white;
    }

        .footer .tweet > p a {
            color: white;
            text-decoration: underline;
        }

        .footer .tweet > p a:hover {
            opacity: .9;
            text-decoration: none;
        }

        .footer .tweet > p:after, .footer .tweet > p:before {
            top: 100%;
            left: 25px;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
        }

        .footer .tweet > p:after {
            border-color: rgba(238, 238, 238, 0);
            border-top-color: #00aab8;
            border-width: 10px;
            margin-left: -10px;
        }

.footer .tweet > p:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: rgba(255,255,255,0.15);
    border-width: 12px;
    margin-left: -12px;
}

.footer .tweet + .tweet {
    margin-top: 25px;
}

.footer .tweet small:before {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 900;
    font-size: 14px;
    content: '\f099';
    padding-right: 10px;
    margin-left: 15px;
}

/* Widgets */

.footer .widget {
    position: relative;
}

.footer .widget .widget-title {
    color: #333;
    font-weight: 600;
}

/* Bottom */

.footer-bottom {
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
}

.footer-bottom a,
.footer-bottom .copyright a {
    color: #fff;
}

.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-bottom .copyright a:hover,
.footer-bottom .copyright a:focus {
    color: #fff !important;
    opacity: .8 !important;
}

@media (min-width: 992px) {
    .footer .col-logo {
        padding-top: 150px;
    }

    .footer .col-logo img {
        float: right;
    }
}

/* ============================= */


/* =============================== */
/*           Panels                */
/* =============================== */

.relative {
    position: relative;
}

.bg,
.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg:before,
.bg:after {
    display: table;
    content: " ";
}

.bg:after {
    clear: both;
}

/* =============================== */


/* =============================== */
/*           Forms                 */
/* =============================== */

.field-validation-error {
    color: #b94a48;
}

.form-control,
.input-group .input-group-addon {
    border-color: #ccc;
}

.form-container {
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.modal-dialog .form-group {
    margin-bottom: 10px;
}

.form-submit {
    margin-top: 35px;
}

.btn.disabled, .btn[disabled] {
    opacity: .4;
}

.btn-primary.disabled,
.btn-primary[disabled] {
    opacity: .4;
    background-color: #666 !important;
    border-color: #666 !important;
}

legend {
    font-size: 16px;
}

.used-btns .input-list-container {
    width: 100%;
}

.used-btns .input-list-container .btn {
    width: 50%;
}

/* Menu form */
.form-menu {
    background-color: #aaa;
    padding: 10px;
}

/*.form-menu .form-control {
    background-color: #e1e1e1;
    border-color: #e1e1e1;
}*/
/* Custom checkboxes */
.custom-checks input[type="checkbox"], .custom-checks input[type="radio"] {
    position: absolute;
    right: 9000px;
}

.inline .custom-checks .form-check {
    display: inline-block;
}

.inline .custom-checks .form-check label {
    margin-right: 25px;
}

/*Check box*/

.custom-checks label {
    cursor: pointer;
}

.custom-checks input[type="checkbox"] + .label-text,
.custom-checks input[type="radio"] + .label-text {
    font-weight: normal;
}

.custom-checks input[type="checkbox"] + .label-text:before {
    content: "\f096";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-size: 18px;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
    color: #aaa;
}

.custom-checks input[type="checkbox"]:checked + .label-text {
    color: inherit;
}

.custom-checks input[type="checkbox"]:checked + .label-text:before {
    content: "\f14a";
    color: #2980b9;
    animation: effect 250ms ease-in;
}

.custom-checks input[type="checkbox"]:disabled + .label-text {
    color: #aaa;
}

.custom-checks input[type="checkbox"]:disabled + .label-text:before {
    content: "\f0c8";
    color: #aaa;
}

/*Radio box*/

.custom-checks input[type="radio"] + .label-text:before {
    content: "\f10c";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    font-size: 18px;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
    color: #ccc;
}

.custom-checks input[type="radio"]:checked + .label-text:before {
    content: "\f192";
    color: #2980b9;
    animation: effect 250ms ease-in;
}

.custom-checks input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

.custom-checks input[type="radio"]:disabled + .label-text:before {
    content: "\f111";
    color: #ccc;
}

/*Radio Toggle*/

.custom-checks .toggle input[type="radio"] + .label-text:before {
    content: "\f204";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 10px;
}

.custom-checks .toggle input[type="radio"]:checked + .label-text:before {
    content: "\f205";
    color: #16a085;
    animation: effect 250ms ease-in;
}

.custom-checks .toggle input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

.custom-checks .toggle input[type="radio"]:disabled + .label-text:before {
    content: "\f204";
    color: #ccc;
}

@media (max-width: 767px) {
    .btn-block-xs {
        width: 100%;
    }
}


@keyframes effect {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(1.3);
    }

    75% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
} 

/* =============================== */