﻿header .logo {
    display: block;
    float: left;
    padding: 22px 0 15px 0;
}

label {
    color: white;
}

header.det {
    opacity: 0.8;
    position: absolute;
    width: 100%;
    z-index: 6;
}

h1, h2, h3, h4, h5 {
    color: white;
}

@media (min-width: 1376px) {
    .container {
        max-width: 1376px !important;
    }
}

header {
    background: #000;
    height: 100px;
    display: block;
}

.pbt30 {
    padding-bottom: 80px;
    padding-top: 104px;
}

footer.det {
    position: fixed;
    bottom: 0;
}

body {
    padding-top: 0 !important;
}

footer {
    background: #000;
    min-height: 62px;
    display: block;
    bottom: 0;
    width: 100%;
    bottom: 0;
    position: fixed;
}

.footer {
    border-top: 1px solid #fff;
    margin-top: 12px;
    padding: 15px 0 0 0;
    font-size: 12px;
}

    .footer .links ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: inline-block;
    }

    .footer a {
        color: #fff !important;
    }

a {
    text-decoration: none !important;
}

.footer .links ul li {
    float: left;
    padding: 0 12px;
    border-right: 1px solid #fff !important;
}

    .footer .links ul li:last-child {
        border: none !important;
    }


.containerRadioBtn {
    display: initial;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 10px;
}

    /* Hide the browser's default radio button */
    .containerRadioBtn input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
    .containerRadioBtn .checkmark {
        position: absolute;
        top: 3px;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #ffffff;
        border-radius: 50%;
    }

/* On mouse-over, add a grey background color */
.containerRadioBtn:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerRadioBtn input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
    .containerRadioBtn .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

/* Show the indicator (dot/circle) when checked */
.containerRadioBtn input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.containerRadioBtn .checkmark:after {
    top: 5px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}


/* The containerCheckBox */
.containerCheckBox {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .containerCheckBox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom checkbox */
    .containerCheckBox .checkmark {
        position: absolute;
        top: 2px;
        left: 0;
        height: 15px;
        width: 15px;
        background-color: #fff;
    }

    /* On mouse-over, add a grey background color */
    .containerCheckBox:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .containerCheckBox input:checked ~ .checkmark {
        background-color: #2196F3;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .containerCheckBox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .containerCheckBox input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .containerCheckBox .checkmark:after {
        left: 5px;
        top: 0px;
        width: 7px;
        height: 12px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }