﻿.checkbox-group {
    border: 2px solid #cccccc;
    padding: 5px 15px 0;
    float: left;
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}

    .checkbox-group .checkbox-inlined {
        margin-right: 18px;
    }

        .checkbox-group .checkbox-inlined:last-child {
            margin: 0;
        }

.checkbox-inlined {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: normal;
    line-height: 1.3;
     
    margin-bottom: 5px;
    /* Hide the browser's default checkbox */
}

    .checkbox-inlined input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
         
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 1px solid #999999;
     
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-inlined:hover input ~ .checkmark {
    border-color: #ccc;
    transition: all ease-in-out .3s;
}

/* When the checkbox is checked, add a blue background */
.checkbox-inlined input:checked ~ .checkmark {

    transition: all ease-in-out .3s;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    transition: all ease-in-out .3s;
}

/* Show the checkmark when checked */
.checkbox-inlined input:checked ~ .checkmark:after {
    display: block;
    transition: all ease-in-out .3s;
}

/* Style the checkmark/indicator */
.checkbox-inlined .checkmark:after {
    left: 6px;
    top: -5px;
    width: 8px;
    height: 18px;
    border: solid #27ae60;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(48deg);
    transform: rotate(48deg);
     
    border-radius: 3px;
}

.checkbox-inlined input:disabled ~ .checkmark:after {
    border-color: #999999;
}

.ok-btn {
    float: right;
    background: #0e6286 !important;
    color: #fdfdfd;
    padding: 5px 30px;
    font-weight: bold;
    text-decoration: none;
}

#cookie-alert {
    padding: 15px 20px 25px;
}

    #cookie-alert p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 1800px;
        text-align: justify;
    }

#formAllowCookies {
    width: 100%;
    /*max-width: 400px;*/
    justify-content:space-between;
    align-items:center;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.popover-cookie {
    position: fixed;
    top: 0;
    /*bottom: 0; */
    /*width: 100%;*/
    z-index: 999999;
    /*-webkit-transform: translateY(188px);
    transform: translateY(188px);
    -ms-transform: translateY(188px);
    -webkit-animation: slideUp 1s 1.0s 1 ease forwards;
    animation: slideUp 1s 1.0s 1 ease forwards;
  height: =auto;
  transition: 1s all ease-in-out;*/
    left: 0;
    right: 0;
    text-align: center;
}

.popover-hide {
    bottom: -188px;
    /*transition: 1s all ease-in-out;*/
}

a.hanger {
    position: absolute;
    top: -50px;
    display: block;
    padding: 15px 20px;
    left: 20px;
    line-height: 1;
    height: 50px;
    z-index: 999999999999;
    box-sizing: border-box;
    border: 1px solid #ccc;
    color: #ffffff;
    border-bottom: none;
    border-top-left-radius: 10px;
    background: #4f4f4f;
    border-top-right-radius: 10px;
    font-size: 16px;
    font-weight: bold;
}

    a.hanger:active,
    a.hanger:hover,
    a.hanger:focus {
        color: white;
    }


@keyframes slideUp {
    0% {
        -webkit-transform: translateY(188px);
        -ms-transform: translateY(188px);
        transform: translateY(188px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideOut {
    0% {
        -webkit-transform: translateY(188px);
        -ms-transform: translateY(188px);
        transform: translateY(188px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideOut {
    0% {
        -webkit-transform: translateY(188px);
        -ms-transform: translateY(188px);
        transform: translateY(188px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}



div#cookie-alert {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #fdfdfd;
    /*border-top-right-radius: 8px;
    border-top-left-radius: 8px;*/
    -webkit-box-shadow: 0px -3px 21px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px -3px 21px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px -3px 21px 0px rgba(50, 50, 50, 0.1);
    text-align: left;
}
