/**
 * Leut theme
 * @author Sjonic
 */

/* Font Calibri */
 @font-face {
	font-family:'Calibri-Regular';
	src: url('../fonts/Calibri/Calibri_gdi.eot');
	src: url('../fonts/Calibri/Calibri_gdi.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Calibri/Calibri_gdi.woff') format('woff'),
		url('../fonts/Calibri/Calibri_gdi.ttf') format('truetype'),
		url('../fonts/Calibri/Calibri_gdi.svg#Calibri-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+000D-25CA;
}

/* Body */
body {
	font-family: 'Calibri-Regular',sans-serif;
}
/* Links */
a {color: #ba906b;text-decoration: underline; }
a:hover {color: #FFF;text-decoration: underline;}
/* Headers */
h1 {color: #fff;}
h1.brown { color: #ba906b; }

/* Btn Yellow */
.btn {
	height: auto;
	padding: 15px 30px;
	border: none;
	background-image: url('../img/button.svg');
	background-size: 100% 100%;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none!important;
	outline: none !important;
}

/* Btn Green */
.btn-green:hover,
.btn-green {
	background-image: url('../img/button_green.svg')!important;
	color: #FFF;
}
.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
	background-color: transparent;
	border-color: transparent;
}
.btn-primary:hover { background-color: transparent !important; }
.btn:focus {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}
.btn:active {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}
.btn.active {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}
.input[type="submit"]:focus {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}
.input[type="submit"]:active {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}
.input[type="submit"].active {background-color: transparent!important;background-image: url('../img/button_black.svg')!important;color: #FFF!important;outline:none;}

.hamburger {padding:0!important;}
.label-default { background-color: #ff0000 !important; }
/* Form fields */
.form-control {
	border: 1px solid #8d8b8b;
	color: #FFF;
	background-color: #000;
	border-radius: 3px;
	font-size: 16px;
	height: 40px;
	outline: none!important;
	-webkit-appearance: none;
}
::-webkit-input-placeholder {color:    #FFF;}
:-moz-placeholder {color:    #FFF;opacity:  1;}
::-moz-placeholder {color:    #FFF;opacity:  1;}
:-ms-input-placeholder {color:    #FFF;}

.form-control:focus {
	border: 2px solid #ba906b;
	outline: none;
	-webkit-box-shadow:0 0 0 50px #000 inset;
}
/* Autofill */
input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #000 inset;
    -webkit-text-fill-color: #FFF;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #ba906b;
    text-align: center;
    background-color: #000;
    border: 1px solid #8d8b8b;
    border-radius: 4px;
}
.form-group select {
	background-image: url('../img/select.svg');
	background-size: 13px;
	background-position: right 10px center;
	background-repeat: no-repeat;
	outline: none;
}


/* Aanmelden deel 2 coupon veld button */
.input-group-addon .btn {
    height: 20px;
    margin: 0;
    padding: 0;
    margin-top: -10px;
    border: 0;
    font-size: 22px;
    color: #FFF;
    background: none;
}

/* Disabled field */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color: rgba(255,255,255,.3);
}

/* Products */
.products {
	margin-bottom: 20px;
}

.animate {
	font-size: 600%;
    display: inline-block;
    transform-origin: 50% 50%;
    animation-name: rotateHalf;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-name: rotateHalf;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: rotateHalf;
    -moz-animation-duration: 0.5s;
    -moz-animation-fill-mode: forwards;

}

.page-closed h1 {
	margin-top: 0;
	font-size: 400%;
}

@keyframes rotateHalf {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(90deg);  }
}
@-webkit-keyframes rotateHalf {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(90deg);  }
}
@-moz-keyframes rotateHalf {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(90deg);  }
}

.adjust-me .btn {
    min-width: 110px;
    font-weight: bold;
}