/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#cookie-bar{
	width: 100%;
	position: fixed;
	bottom: 0;
	background-color: #333333;
	background-color: rgba(51, 51, 51, 0.95);
	color: #FFFFFF;
	z-index: 1500000000;
	padding: 0 0;
	display: none;
}
#cookie-bar #cookie-notification .cookie-notification-wrap{
    line-height: 20px;
}
#cookie-bar #cookie-notification a{
    color: #FFFFFF; 
    text-decoration: underline;
}
#cookie-bar #cookie-notification p{
    margin: 1em 0;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    display: inline;
}
#cookie-bar #cookie-notification .btn{
    background-color: #8dc416;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
#cookie-bar #cookie-notification .btn:hover,
#cookie-bar #cookie-notification .btn:focus{
    background-color: white;
    color: #8dc416;
    outline: none;
}
#cookie-bar #cookie-notification .close-cookie-bar{
    background-color: #FFFFFF;
    color: #333333;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
#cookie-bar #cookie-notification .close-cookie-bar .close-icon{
    margin-right: 10px;
    background-image: url(../images/close-icon.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-bottom: -4px;
}
.cookie-bar-plugin .close-popup{
	cursor: pointer;
	width: 30px;
	height: 25px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	line-height: 25px;
	font-size: 25px;
	transition: all .3s ease-in-out;
	background: none;
	border: none;
	float: right;
	padding: 0;
	display: inline-block;
}
.cookie-bar-plugin .close-popup:hover {
    transform: rotate(15deg);
}
#cookie-bar .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.cookie-bar-plugin .btn {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-shadow: none;
    box-shadow: none;
}
.cookie-bar-plugin * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#cookie-modal-popup.cookie-modal #cookie-toggles {
    display: block;
}
#cookie-toggles {
    display: none;
}
#cookie-toggles ul {
    -webkit-padding-start: 40px;
    margin: 0;
}
#cookie-toggles > ul {
    margin: 0;
    padding: 0;
}
#cookie-toggles > ul li {
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
}
#cookie-toggles > ul li li {
    list-style: disc;
    list-style-position: outside;
    margin-bottom: 5px;
}
#cookie-toggles > ul li p {
    margin-top: 5px;
    margin-bottom: 0;
}
#cookie-toggles .input-toggle {
    position: relative;
    display: inline-block;
    width: 100%;
    /* Hide default HTML checkbox */
    /* The slider */
}
#cookie-toggles .input-toggle input {
    display: none !important;
}
#cookie-toggles .input-toggle .slider {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 18px;
    padding: 3px;
    height: 24px;
    width: 42px;
    margin-right: 10px;
    float: left;
}
#cookie-toggles .input-toggle .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
#cookie-toggles input:checked + .slider,
#cookie-toggles input:focus + .slider {
    background-color: #8dc416;
}
#cookie-toggles input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}
#cookie-toggles input:disabled + .slider {
    opacity: 0.8;
    background-color: #8dc416;
}
#cookie-toggles input:disabled:hover + .slider:before {
    animation: shakeIt 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(18px, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
#cookie-toggles .input-toggle .slider-label {
    line-height: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}
#cookie-toggles .input-toggle .slider-label .slider-sub-label {
    background: #8dc416;
    color: #FFFFFF;
    border-radius: 3px;
    padding: 7px;
    margin-left: 10px;
    font-weight: 300;
}
#cookie-toggles footer p {
    margin-bottom: 0;
}
#cookie-toggles footer .save-cookie-settings {
    background-color: #8dc416;
    margin-left: 0;
    margin-top: 20px;
    padding: 15px 20px;
    text-decoration: none !important;
    color: #FFFFFF;
    transition: background-color .2s,border-color .2s,color .2s,opacity .2s;
}
#cookie-toggles footer .save-cookie-settings:hover {
    background-color: #7fb014;
}
@keyframes shakeIt {
    10%, 90% {
        transform: translate3d(17px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(20px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(14px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(22px, 0, 0);
    }
}
@media (max-width: 767px) {
    #cookie-bar .container {
        width: 100%;
    }
}

/**
 * Modal styles
 */

/* Body modal css */
.cookie-modal-open {
    overflow: hidden;
}
.cookie-modal-open #cookie-modal-popup.cookie-modal {
    overflow-x: hidden;
    overflow-y: auto;
}
body.cookie-modal-open #cookie-modal-popup.cookie-modal .modal-dialog {
    margin: auto;
    padding: 15px;
}
body.cookie-modal-open #cookie-modal-popup.cookie-modal {
    display: flex!important;
    height: 100%;
}
.cookie-modal-open #cookie-modal-popup.cookie-modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.loading {
    margin: 40px auto;
    width: 32px;
    height: 32px;
    display: block;
    background-image: url(../images/ajax-loader.gif);
}

/* Modal popup css */
#cookie-modal-popup.cookie-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000000000;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    width: auto;
    background: none;
    margin: 0;
}
#cookie-modal-popup.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
#cookie-modal-popup.fade.in {
    opacity: 1;
}
#cookie-modal-popup.cookie-modal button.close {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1500000000;
    opacity: .8;
    border: 0;
    cursor: pointer;
	transition: all .3s ease-in-out;
	margin: 0;
	background: none;
    width: 44px;
    height: 44px;
    padding: 10px;
}
#cookie-modal-popup.cookie-modal button.close:hover, 
#cookie-modal-popup.cookie-modal button.close:focus {
    opacity: 1;
    background: none;
    outline: none;
}
#cookie-modal-popup.cookie-modal button.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
#cookie-modal-popup.cookie-modal h2{
    margin-top: 10px;
    margin-bottom: 20px;
}
#cookie-modal-popup .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
#cookie-modal-popup.cookie-modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}
@media screen and (prefers-reduced-motion: reduce) {
    #cookie-modal-popup.cookie-modal.fade .modal-dialog {
        transition: none;
    }
}
#cookie-modal-popup.cookie-modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
#cookie-modal-popup .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
            box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
#cookie-modal-popup .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    max-height: none;
}
#cookie-modal-popup .modal-body a{
    text-decoration: underline;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
#cookie-modal-popup.cookie-modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
         -o-transition:      -o-transform .3s ease-out;
            transition:         transform .3s ease-out;
     -webkit-transform: translate(0, -25%);
         -ms-transform: translate(0, -25%);
          -o-transform: translate(0, -25%);
             transform: translate(0, -25%);
}
#cookie-modal-popup.cookie-modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
}
#cookie-modal-popup .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
#cookie-modal-popup .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media (max-width: 767px) {
    #cookie-notification p{
        margin-bottom: 0;
    }
	#cookie-bar .container{
    	width: 100%;
    }
    #cookie-notification {
        padding: 10px 0;
    }
	#cookie-bar #cookie-notification .btn{
    	width: 100%;
    	margin: 10px 0 10px 0;
    	padding: 6px 12px;
	}
}
@media (min-width: 576px) {
    .cookie-modal .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
@media (min-width: 768px) {
    #cookie-modal-popup .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    #cookie-modal-popup .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
                box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }
    #cookie-bar .container {
        width: 750px;
    }    
    #cookie-notification {
        display: table;
        width: 100%;
    }
    #cookie-notification .cookie-notification-wrap,
    #cookie-notification .allow-cookie-wrap{
        display: table-cell;
        vertical-align: middle;
        padding: 10px 0;
    }
    #cookie-notification .allow-cookie-wrap{
    }    
}
@media (min-width: 992px){
    #cookie-bar .container {
        width: 970px;
    }
}
@media (min-width: 1200px){
    #cookie-bar .container {
        width: 1170px;
    }    
}

/* Backdrop CSS */
.cookie-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1750000000;
    background-color: #000000;
}
.cookie-modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.cookie-modal-backdrop.fade.in {
    filter: alpha(opacity=50);
    opacity: .5;
}