@charset "UTF-8";

/*
??
??	Misschien vind je hier nog wat geheimpjes?
??
*/

*,*:after,*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.shade { text-shadow: 0px 2px 5px #54afb7, 0px 0px 20px #a5e0e6; }
.upper { text-transform: uppercase; }
.op70 { opacity: 0.7; }
.mt-0 { margin-top: 0px !important; }
.mt-1 { margin-top: 5px !important; } .mt-2 { margin-top: 10px !important; } .mt-3 { margin-top: 15px !important; } .mt-4 { margin-top: 20px !important; } .mt-5 { margin-top: 25px !important; }
.mt-6 { margin-top: 30px !important; } .mt-7 { margin-top: 35px !important; } .mt-8 { margin-top: 40px !important; } .mt-9 { margin-top: 45px !important; } .mt-10 { margin-top: 50px !important; }
.mt-11 { margin-top: 55px !important; } .mt-12 { margin-top: 60px !important; } .mt-13 { margin-top: 65px !important; } .mt-14 { margin-top: 70px !important; } .mt-15 { margin-top: 75px !important; }
.mb-0 { margin-bottom: 0px !important; }
.mb-1 { margin-bottom: 5px !important; } .mb-2 { margin-bottom: 10px !important; } .mb-3 { margin-bottom: 15px !important; } .mb-4 { margin-bottom: 20px !important; } .mb-5 { margin-bottom: 25px !important; } 
.mb-6 { margin-bottom: 30px !important; } .mb-7 { margin-bottom: 35px !important; } .mb-8 { margin-bottom: 40px !important; } .mb-9 { margin-bottom: 45px !important; } .mb-10 { margin-bottom: 50px !important; }
.mb-11 { margin-bottom: 55px !important; } .mb-12 { margin-bottom: 60px !important; } .mb-13 { margin-bottom: 65px !important; } .mb-14 { margin-bottom: 70px !important; } .mb-15 { margin-bottom: 75px !important; }
.fs18 { font-size: 18px; } .fs19 { font-size: 19px; } .fs20 { font-size: 20px; } .fs21 { font-size: 21px; } .fs22 { font-size: 22px; } .fs23 { font-size: 23px; } .fs24 { font-size: 24px; }
.fs25 { font-size: 25px; } .fs26 { font-size: 26px; } .fs27 { font-size: 27px; } .fs28 { font-size: 28px; } .fs29 { font-size: 29px; } .fs30 { font-size: 30px; } .fs32 { font-size: 32px; }

html {
	margin: 0px;
	padding: 0px;
	min-height: 100%;
	height: 100%;
}
body {
	margin: 0px;
	padding: 0px;
	color: #fff;
	background-color: #000;
	min-height: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
	font-family: "Knockout";
	font-size: 18px;
}
main {
	background-image: url('../img/background_dots.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 100%;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
.container {
	max-width: 1440px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 20px;
}
@media (min-width: 960px)
{
	.container {
		padding: 0px 40px;
	}
}
h1, h2, h3, h4 {
	font-family: "Knockout";
}
h2, h3, h4 {
	font-weight: 400;
}
h2 {
	font-size: 1.8em;
    line-height: 120%;
}
h2.shade + h2.shade {
	text-shadow: none;
}
.logo {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.logo .logoimg {
	background-image: url('../img/demol_bottle.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 137%;
}
.logo.landing {
	width: 100%;
	max-width: 200px;
	padding-bottom: 10px;
	padding-top: 30px;
}
.logo.small {
	width: 75px;
	padding-top: 15px;
}

input[type="text"] {
	border: 1px solid #26585c;
    border-radius: 30px;
    padding: 15px 15px;
    background: #01090a;
    color: #fff;
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-family: 'Knockout';
    font-size: 21px;
    letter-spacing: 1px;
}
input[type="submit"], .btn {
	padding: 15px 55px;
	height: 56px;
    border-radius: 30px;
	color: #fff;
    font-family: 'Knockout';
    text-transform: uppercase;
    font-size: 24px;
    border: 0px;
	transition: 0.7s;
	background: #10393c;
	background-size: 200% auto;
    background-image: linear-gradient(to right, #54afb7 0%, #206268 51%, #10393c 100%);
	cursor: pointer;
}
input[type="submit"]:hover, .btn:hover {
	background-position: right center;
}
input[type="submit"].small {
	padding: 10px 45px;
	height: 46px;
}
.btn {
	display: inline-block;
	text-decoration: none;
}

#countdown .countdown-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	font-family: 'Knockout';
}
#countdown .countdown-amount {
	display: block;
	flex: 1;
	font-size: 42px;
}
#countdown .countdown-period {
	display: block;
	flex: 1;
	text-transform: uppercase;
	font-size: 21px;
}
.grid {
	display: grid;
	grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
}
.grid .grid-item {
	display: flex;
	gap: 20px;
	color: #fff;
	text-decoration: none;
}
.user-avatar {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.user-avatar.avatar-pre {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: relative;
}
.user-avatar.avatar-pre.avatar-small {
	width: 40px;
	height: 40px;
}
.user-avatar.avatar-pre .dot {
	position: absolute;
    right: -3px;
    top: -3px;
    width: 18px;
    height: 18px;
    background: #5fbb39;
    border: 2px solid #fff;
    border-radius: 50%;
}
.user-name {
	font-size: 24px;
    line-height: 26px;
    margin-top: 0px;
}
.user-active {
	opacity: 0.7;
	line-height: 16px;
}
.stat_row {
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	justify-content: space-between;
	font-size: 20px;
}
.stat_row strong {
	text-transform: uppercase;
}
.active-users {
	position: relative;
	height: 60px;
	margin-top: 40px;
}
.active-users .user-avatar {
	height: 54px;
	width: 54px;
	border: 2px solid #fff;
	position: absolute;
	left: 50%;
	transition: margin-left 250ms ease;
}
.active-users .user-avatar .name {
	position: absolute;
	top: 57px;
	background: #fff;
	border-radius: 30px;
	padding: 4px 10px;
	color: #000;
	white-space: nowrap;
	left: 50%;
	transform: translate(-50%, 0);
	display: none;
	font-size: 18px;
	line-height: 26px;
}
.active-users .user-avatar:hover .name {
	display: block;
}
.active-users .user-avatar.avatar-pre .dot {
	right: 0px;
    top: -2px;
    width: 14px;
    height: 14px;
}
.active-users .user-avatar.avatar-sum {
	border-radius: 50%;
	background: #fff;
	text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #000;
}
.info-message {
    margin: 40px auto 0px;
    max-width: 400px;
    text-align: center;
    background: rgba(14,51,54,0.72);
    padding: 15px;
    border-radius: 30px;
    font-size: 19px;
}
.videoplayer-container {
	width: 400px;
	max-width: 100%;
	margin: 0px auto;
	border-radius: 30px;
}
.videoplayer-container.big {
	width: 1000px;
}
.videoplayer {
	padding-top: 56.25%;
	position: relative;
	border-radius: 30px;
}
.videoplayer video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	border-radius: 30px;
}
.expander {
	overflow: hidden;
	padding: 0px;
	height: 0px;
	transition: all .5s ease-in-out;
}
.expander.shown {
	padding: 0px 0px 50px;
	height: 106px;
}
.expander.shown.noheight {
	height: auto;
	padding: 0px;
}
.answers {
	display: grid;
	grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
	align-items: start;
	margin-bottom: 40px;
}
.answers .answer {
	display: flex;
	gap: 20px;
	color: #fff;
	text-decoration: none;
}
.answers .answer .radio {
	margin: 0.5rem;
	cursor: pointer;
}
.answers .answer .radio label {
	cursor: pointer;
	font-size: 21px;
	letter-spacing: 0.5px;
}
.answers .answer .radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.answers .answer .radio input[type="radio"] + .radio-label:before {
	content: '';
	background: transparent;
	border-radius: 100%;
	border: 1px solid #54aeb6;
	display: inline-block;
	width: 24px;
	height: 24px;
	position: relative;
	top: -0.05em;
	margin-right: 1em; 
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
.answers .answer .radio input[type="radio"]:checked + .radio-label {
	color: #54aeb6;
}
.answers .answer .radio input[type="radio"]:checked + .radio-label:before {
	background-color: #54aeb6;
	box-shadow: inset 0 0 0 4px #000;
}
.answers .answer .radio input[type="radio"]:focus + .radio-label:before {
	outline: none;
	border-color: #54aeb6;
}
.answers .answer .radio input[type="radio"] + .radio-label:empty:before {
	margin-right: 0;
}
.header {
	display: flex;
    justify-content: space-between;
	padding-top: 15px;
}
.header .logo {
	margin-left: 0px;
	margin-right: 0px;
	padding-top: 0px;
}
.header .header-right {
	display: flex;
	gap: 15px;
}
.molboekje {
	background: rgba(17,65,45,0.68);
	padding: 10px 30px;
    border-radius: 15px;
}
.molboekje img {
	margin-top: 12px;
	display: block;
	cursor: pointer;
}
.suikerbonen {
	display: flex;
    background: rgba(14,51,54,0.72);
    padding: 10px 25px;
    border-radius: 15px;
	min-width: 400px;
}
.suikerbonen a {
	color: #7bacb0;
}
.suikerbonen .suikerbonen_stat {
	margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #1b3a3d;
}
.suikerbonen .suikerbonen_stat .title {
	font-size: 24px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 8px;
}
.suikerbonen .suikerbonen_stat .number {
	font-size: 21px;
    color: #80b1b5;
}
.suikerbonen .suikerbonen_stat .number span {
	font-size: 32px;
    margin-right: 5px;
    color: #448e95;
}
.suikerbonen_list {
	background: rgba(14,51,54,0.72);
    padding: 10px 25px;
    border-radius: 15px;
	min-width: 400px;
	margin-top: 15px;
	margin-bottom: 30px;
}
.suikerbonen_list h3 {
	margin-top: 10px;
    text-transform: uppercase;
    font-size: 24px;
}
.suikerbonen_list .suikerbonen_user {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.suikerbonen_list .suikerbonen_user:last-child {
	border-bottom: 0px;
	padding-bottom: 0px;
}
.puzzle {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	width: 600px;
	height: 600px;
	max-width: 600px;
	position: relative;
	margin-left: auto;
}
.puzzle .puzzle_piece {
	position: absolute;
}
.puzzle_piece.piece_1_1 { left: 0px; top: 0px; width: 600px; height: 53px; }
.puzzle_piece.piece_1_2 { left: 0px; top: 53px; width: 541px; height: 75px; }
.puzzle_piece.piece_1_3 { left: 541px; top: 53px; width: 59px; height: 274px; }
.puzzle_piece.piece_1_4 { left: 0px; top: 128px; width: 156px; height: 236px; }
.puzzle_piece.piece_1_5 { left: 156px; top: 128px; width: 106px; height: 56px; }
.puzzle_piece.piece_1_6 { left: 262px; top: 128px; width: 168px; height: 124px; }
.puzzle_piece.piece_1_7 { left: 430px; top: 128px; width: 111px; height: 236px; }
.puzzle_piece.piece_1_8 { left: 156px; top: 184px; width: 106px; height: 68px; }
.puzzle_piece.piece_1_9 { left: 156px; top: 252px; width: 106px; height: 38px; }
.puzzle_piece.piece_1_10 { left: 262px; top: 252px; width: 168px; height: 48px; }
.puzzle_piece.piece_1_11 { left: 156px; top: 290px; width: 106px; height: 74px; }
.puzzle_piece.piece_1_12 { left: 262px; top: 300px; width: 168px; height: 64px; }
.puzzle_piece.piece_1_13 { left: 541px; top: 327px; width: 59px; height: 273px; }
.puzzle_piece.piece_1_14 { left: 0px; top: 364px; width: 156px; height: 148px; }
.puzzle_piece.piece_1_15 { left: 156px; top: 364px; width: 274px; height: 49px; }
.puzzle_piece.piece_1_16 { left: 430px; top: 364px; width: 111px; height: 102px; }
.puzzle_piece.piece_1_17 { left: 156px; top: 413px; width: 122px; height: 99px; }
.puzzle_piece.piece_1_18 { left: 278px; top: 413px; width: 152px; height: 99px; }
.puzzle_piece.piece_1_19 { left: 430px; top: 466px; width: 111px; height: 134px; }
.puzzle_piece.piece_1_20 { left: 0px; top: 512px; width: 430px; height: 88px; }
.puzzle_piece.piece_2_1 { left: 0px; top: 0px; width: 166px; height: 240px; }
.puzzle_piece.piece_2_2 { left: 166px; top: 0px; width: 214px; height: 143px; }
.puzzle_piece.piece_2_3 { left: 380px; top: 0px; width: 220px; height: 190px; }
.puzzle_piece.piece_2_4 { left: 166px; top: 143px; width: 214px; height: 97px; }
.puzzle_piece.piece_2_5 { left: 380px; top: 190px; width: 110px; height: 202px; }
.puzzle_piece.piece_2_6 { left: 490px; top: 190px; width: 110px; height: 202px; }
.puzzle_piece.piece_2_7 { left: 0px; top: 240px; width: 166px; height: 105px; }
.puzzle_piece.piece_2_8 { left: 166px; top: 240px; width: 214px; height: 74px; }
.puzzle_piece.piece_2_9 { left: 166px; top: 314px; width: 214px; height: 31px; }
.puzzle_piece.piece_2_10 { left: 0px; top: 345px; width: 166px; height: 107px; }
.puzzle_piece.piece_2_11 { left: 166px; top: 345px; width: 113px; height: 47px; }
.puzzle_piece.piece_2_12 { left: 279px; top: 345px; width: 101px; height: 47px; }
.puzzle_piece.piece_2_13 { left: 166px; top: 392px; width: 214px; height: 42px; }
.puzzle_piece.piece_2_14 { left: 380px; top: 392px; width: 120px; height: 91px; }
.puzzle_piece.piece_2_15 { left: 500px; top: 392px; width: 110px; height: 208px; }
.puzzle_piece.piece_2_16 { left: 166px; top: 434px; width: 214px; height: 49px; }
.puzzle_piece.piece_2_17 { left: 0px; top: 452px; width: 166px; height: 148px; }
.puzzle_piece.piece_2_18 { left: 166px; top: 483px; width: 113px; height: 117px; }
.puzzle_piece.piece_2_19 { left: 279px; top: 483px; width: 101px; height: 117px; }
.puzzle_piece.piece_2_20 { left: 380px; top: 483px; width: 120px; height: 117px; }

.gauge_contain {
	text-align: center;
	width: 370px;
	margin: 0px auto;
}
.gauge_contain .gauge {
	position: relative;
	padding-top: 15px;
	background-image: url('../img/gauge/gauge_bg.png');
	background-repeat: no-repeat;
	background-position: top center;
}
.gauge_contain .gauge > img {
	position: relative;
	z-index: 5;
}
.gauge_contain .gauge .genders {
	padding: 8px 20px;
	position: absolute;
	display: flex;
	justify-content: space-between;
	color: #fff;
	font-size: 24px;
    text-transform: uppercase;
	width: 100%;
	bottom: 4px;
	left: 0px;
	background: #448e95;
    border-radius: 8px;
    z-index: 1;
}
.gauge-info {
	background: rgba(111,111,111,0.7);
    padding: 10px 15px;
    border-radius: 8px;
}

.letters_contain {
	text-align: center;
	width: 370px;
	margin: 0px auto;
}
.letters_contain .letters_box {
	display: flex;
	gap: 13px;
	justify-content: center;
    flex-wrap: wrap;
}
.letters_contain .letters_box .letter {
	border-bottom: 1px solid #656565;
	padding: 10px;
	font-size: 26px;
}
.letters-info {
	background: rgba(111,111,111,0.7);
    padding: 10px 15px;
    border-radius: 8px;
}
.tips .tip {
	font-size: 20px;
	margin-bottom: 8px;
}
.tips .tip span {
	display: inline-block;
    width: 30px;
    height: 30px;
    background: #448e95;
    border-radius: 8px;
    line-height: 30px;
    vertical-align: middle;
    margin-right: 15px;
}
.tips .tip.wrong span {
	background: #954444;
}

#molboekje_text {
	width: 100%;
    border-radius: 8px;
    height: 300px;
    background: #f9f9f9;
    border: 1px solid #c9c9c9;
	padding: 20px;
}
#molboekje_saved {
	margin-left: 50px;
	font-size: 21px;
	display: none;
	color: #0ea50e;
}
.popup {
	display: none;
	position: fixed;
	z-index: 200;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0,0,0,0.4);
	animation-name: animatepopupbg;
	animation-duration: 0.4s;
	color: #222;
}
@keyframes animatepopupbg {
  from {background: rgba(0,0,0,0)}
  to {background: rgba(0,0,0,0.4)}
}
.popup .popup-box {
	position: relative;
	background: #fff;
	margin: 100px auto 0px;
	padding: 0px;
	border-radius: 8px;
	width: 100%;
	max-width: 800px;
	max-height: calc(100% - 150px);
	overflow-y: auto;
	box-shadow: rgba(0,0,0,0.30) 0px 8px 28px !important;
	animation-name: animatepopup;
	animation-duration: 0.4s
}
@keyframes animatepopup {
  from {top: 300px; opacity: 0}
  to {top: 0; opacity: 1}
}
@media (max-width: 719px)
{
	.popup .popup-box {
		margin: 0px;
		max-width: 100%;
		width: 100%;
		height: calc(100% - 40px) !important;
		max-height: calc(100% - 40px) !important;
		margin-top: 40px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}
.popup .popup-header {
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.popup .popup-header h3 {
	margin-bottom: 0px;
    flex-grow: 1;
    font-size: 21px;
	text-transform: uppercase;
}
.popup .popup-header h3.bigger {
	font-size: 30px;
	margin-top: 2px;
}
.popup .popup-close {
	display: inline-block;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 18px;
	transition: color 400ms ease;
}
.popup .popup-close:hover {
	color: #000;
}
.popup .popup-body {
	padding: 25px;
	position: relative;
}
.popup .popup-body .popup-close {
	position: absolute;
	right: 20px;
	top: 20px;
}
.popup .popup-body h3.larger {
	font-size: 21px;
	margin-top: -7px;
}
.popup .popup-footer {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 20px;
    border-top: 1px solid #eee;
}
.candidate-slider {
	opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
.candidate-slider.slick-initialized {
    visibility: visible;
    opacity: 1;    
}
.candidate-slider .candidate {
	text-align: center;
}
.candidate-slider .candidate .img {
	border-radius: 8px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
	margin-left: auto;
    margin-right: auto;
}
.candidate-slider > .slick-prev, .candidate-slider > .slick-next {
	position: absolute;
    top: 50%;
    left: -30px;
	background: #000;
    width: 35px;
    height: 35px;
    border: 0px;
    border-radius: 50%;
    color: #377f85;
	border: 1px solid #377f85;
    cursor: pointer;
    margin-top: -25px;
    transition: opacity 0.25s ease, background-color 0.25s ease;
	z-index: 5;
}
.candidate-slider > .slick-prev:hover, .candidate-slider > .slick-next:hover {
	background: #377f85;
	color: #000;
}
.candidate-slider > .slick-prev.slick-disabled, .candidate-slider > .slick-next.slick-disabled {
	opacity: 0;
}
.candidate-slider > .slick-next {
	left: auto;
	right: -30px;
}
@media (max-width: 959px)
{
	.candidate-slider > .slick-prev {
		left: -15px;
	}
	.candidate-slider > .slick-next {
		right: -15px;
	}
	.puzzle {
		margin-top: 40px;
		margin-left: 0px;
	}
}
.candidate-slider > .slick-prev svg, .candidate-slider > .slick-next svg {
	margin: 0px auto;
}

.slick-list,.slick-slider,.slick-track{position:relative;display:block}
.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:0}
.slick-list.dragging{cursor:pointer;cursor:hand}
.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}
.slick-track:after,.slick-track:before{display:table;content:''}
.slick-track:after{clear:both}
.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left;height:100%;min-height:1px}
.candidate-slider .slick-slide{margin:0 10px}
.slick-initialized .slick-slide,.slick-slide img{display:block}
.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}
.slick-slide.dragging img{pointer-events:none}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}

.row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; margin: 0px -15px; }
.row > div { padding: 0px 15px; }
.row.thin { margin: 0px -5px; }
.row.thin > div { padding: 0px 5px; }
.col-1 { width:8.33333%; }
.col-2 { width:16.66667%; }
.col-24 { width:20%; }
.col-3 { width:25%; }
.col-4 { width:33.33333%; }
.col-5 { width:41.66667%; }
.col-6 { width:50%; }
.col-7 { width:58.33333%; }
.col-8 { width:66.66667%; }
.col-9 { width:75%; }
.col-10 { width:83.33333%; }
.col-11 { width:91.66667%; }
.col-12 { width:100%; }
@media (min-width:320px)
{
    .col-1-xxs { width:8.33333%; }
    .col-2-xxs { width:16.66667%; }
    .col-24-xxs { width:20%; }
    .col-3-xxs { width:25%; }
    .col-4-xxs { width:33.33333%; }
    .col-5-xxs { width:41.66667%; }
    .col-6-xxs { width:50%; }
    .col-7-xxs { width:58.33333%; }
    .col-8-xxs { width:66.66667%; }
    .col-9-xxs { width:75%; }
    .col-10-xxs { width:83.33333%; }
    .col-11-xxs { width:91.66667%; }
    .col-12-xxs { width:100%; }
	.hidden-xxs{display: none;}.visible-xxs{display: inherit;}
	.mt-0-xxs{margin-top: 0px !important;}.mb-0-xxs{margin-bottom: 0px !important;}
	.mt-1-xxs{margin-top: 5px !important;}.mt-2-xxs{margin-top: 10px !important;}.mt-3-xxs{margin-top: 15px !important;}.mt-4-xxs{margin-top: 20px !important;}
	.mt-5-xxs{margin-top: 25px !important;}.mt-6-xxs{margin-top: 30px !important;}.mt-7-xxs{margin-top: 35px !important;}.mt-8-xxs{margin-top: 40px !important;}
	.mb-1-xxs{margin-bottom: 5px !important;}.mb-2-xxs{margin-bottom: 10px !important;}.mb-3-xxs{margin-bottom: 15px !important;}.mb-4-xxs{margin-bottom: 20px !important;}
	.mb-5-xxs{margin-bottom: 25px !important;}.mb-6-xxs{margin-bottom: 30px !important;}.mb-7-xxs{margin-bottom: 35px !important;}.mb-8-xxs{margin-bottom: 40px !important;}
}
@media (min-width:640px){
    .col-1-xs { width:8.33333%; }
    .col-2-xs { width:16.66667%; }
    .col-24-xs { width:20%; }
    .col-3-xs { width:25%; }
    .col-4-xs { width:33.33333%; }
    .col-5-xs { width:41.66667%; }
    .col-6-xs { width:50%; }
    .col-7-xs { width:58.33333%; }
    .col-8-xs { width:66.66667%; }
    .col-9-xs { width:75%; }
    .col-10-xs { width:83.33333%; }
    .col-11-xs { width:91.66667%; }
    .col-12-xs { width:100%; }
	.hidden-xs{display: none;}.visible-xs{display: inherit;}
	.mt-0-xs{margin-top: 0px !important;}.mb-0-xs{margin-bottom: 0px !important;}
	.mt-1-xs{margin-top: 5px !important;}.mt-2-xs{margin-top: 10px !important;}.mt-3-xs{margin-top: 15px !important;}.mt-4-xs{margin-top: 20px !important;}
	.mt-5-xs{margin-top: 25px !important;}.mt-6-xs{margin-top: 30px !important;}.mt-7-xs{margin-top: 35px !important;}.mt-8-xs{margin-top: 40px !important;}
	.mb-1-xs{margin-bottom: 5px !important;}.mb-2-xs{margin-bottom: 10px !important;}.mb-3-xs{margin-bottom: 15px !important;}.mb-4-xs{margin-bottom: 20px !important;}
	.mb-5-xs{margin-bottom: 25px !important;}.mb-6-xs{margin-bottom: 30px !important;}.mb-7-xs{margin-bottom: 35px !important;}.mb-8-xs{margin-bottom: 40px !important;}
}
@media (min-width:800px){
    .col-1-sm { width:8.33333%; }
    .col-2-sm { width:16.66667%; }
    .col-24-sm { width:20%; }
	.col-26-sm { width:22.22222%; }
    .col-3-sm { width:25%; }
    .col-4-sm { width:33.33333%; }
    .col-5-sm { width:41.66667%; }
    .col-6-sm { width:50%; }
    .col-7-sm { width:58.33333%; }
    .col-8-sm { width:66.66667%; }
    .col-9-sm { width:75%; }
    .col-10-sm { width:83.33333%; }
    .col-11-sm { width:91.66667%; }
    .col-12-sm { width:100%; }
	.hidden-sm{display: none;}.visible-sm{display: inherit;}
	.mt-0-sm{margin-top: 0px !important;}.mb-0-sm{margin-bottom: 0px !important;}
	.mt-1-sm{margin-top: 5px !important;}.mt-2-sm{margin-top: 10px !important;}.mt-3-sm{margin-top: 15px !important;}.mt-4-sm{margin-top: 20px !important;}
	.mt-5-sm{margin-top: 25px !important;}.mt-6-sm{margin-top: 30px !important;}.mt-7-sm{margin-top: 35px !important;}.mt-8-sm{margin-top: 40px !important;}
	.mb-1-sm{margin-bottom: 5px !important;}.mb-2-sm{margin-bottom: 10px !important;}.mb-3-sm{margin-bottom: 15px !important;}.mb-4-sm{margin-bottom: 20px;}
	.mb-5-sm{margin-bottom: 25px !important;}.mb-6-sm{margin-bottom: 30px !important;}.mb-7-sm{margin-bottom: 35px !important;}.mb-8-sm{margin-bottom: 40px !important;}
}
@media (min-width:960px){
    .col-1-md { width:8.33333%; }
    .col-2-md { width:16.66667%; }
    .col-24-md { width:20%; }
	.col-26-md { width:22.22222%; }
    .col-3-md { width:25%; }
    .col-4-md { width:33.33333%; }
    .col-5-md { width:41.66667%; }
    .col-6-md { width:50%; }
    .col-7-md { width:58.33333%; }
    .col-8-md { width:66.66667%; }
    .col-9-md { width:75%; }
    .col-10-md { width:83.33333%; }
    .col-11-md { width:91.66667%; }
    .col-12-md { width:100%; }
	.hidden-md{display: none;}.visible-md{display: inherit;}
	.mt-0-md{margin-top: 0px !important;}.mb-0-md{margin-bottom: 0px !important;}
	.mt-1-md{margin-top: 5px !important;}.mt-2-md{margin-top: 10px !important;}.mt-3-md{margin-top: 15px !important;}.mt-4-md{margin-top: 20px !important;}
	.mt-5-md{margin-top: 25px !important;}.mt-6-md{margin-top: 30px !important;}.mt-7-md{margin-top: 35px !important;}.mt-8-md{margin-top: 40px !important;}
	.mb-1-md{margin-bottom: 5px !important;}.mb-2-md{margin-bottom: 10px !important;}.mb-3-md{margin-bottom: 15px !important;}.mb-4-md{margin-bottom: 20px !important;}
	.mb-5-md{margin-bottom: 25px !important;}.mb-6-md{margin-bottom: 30px !important;}.mb-7-md{margin-bottom: 35px !important;}.mb-8-md{margin-bottom: 40px !important;}
}
@media (min-width:1120px){
    .col-1-lg { width:8.33333%; }
    .col-2-lg { width:16.66667%; }
    .col-24-lg { width:20%; }
	.col-26-lg { width:22.22222%; }
    .col-3-lg { width:25%; }
    .col-4-lg { width:33.33333%; }
    .col-5-lg { width:41.66667%; }
    .col-6-lg { width:50%; }
    .col-7-lg { width:58.33333%; }
    .col-8-lg { width:66.66667%; }
    .col-9-lg { width:75%; }
    .col-10-lg { width:83.33333%; }
    .col-11-lg { width:91.66667%; }
    .col-12-lg { width:100%; }
	.hidden-lg{display: none;}.visible-lg{display: inherit;}
	.mt-0-lg{margin-top: 0px !important;}.mb-0-lg{margin-bottom: 0px !important;}
	.mt-1-lg{margin-top: 5px !important;}.mt-2-lg{margin-top: 10px !important;}.mt-3-lg{margin-top: 15px !important;}.mt-4-lg{margin-top: 20px !important;}
	.mt-5-lg{margin-top: 25px !important;}.mt-6-lg{margin-top: 30px !important;}.mt-7-lg{margin-top: 35px !important;}.mt-8-lg{margin-top: 40px !important;}
	.mb-1-lg{margin-bottom: 5px !important;}.mb-2-lg{margin-bottom: 10px !important;}.mb-3-lg{margin-bottom: 15px !important;}.mb-4-lg{margin-bottom: 20px !important;}
	.mb-5-lg{margin-bottom: 25px !important;}.mb-6-lg{margin-bottom: 30px !important;}.mb-7-lg{margin-bottom: 35px !important;}.mb-8-lg{margin-bottom: 40px !important;}
}
@media (min-width:1280px){
    .col-1-xl { width:8.33333%; padding:0 20px }
    .col-2-xl { width:16.66667%; }
    .col-24-xl { width:20%; }
	.col-26-xl { width:22.22222%; }
    .col-3-xl { width:25%; }
    .col-4-xl { width:33.33333%; }
    .col-5-xl { width:41.66667%; }
    .col-6-xl { width:50%; }
    .col-7-xl { width:58.33333%; }
    .col-8-xl { width:66.66667%; }
    .col-9-xl { width:75%; }
    .col-10-xl { width:83.33333%; }
    .col-11-xl { width:91.66667%; }
    .col-12-xl { width:100%; }
	.hidden-xl{display: none;}.visible-xl{display: inherit;}
	.mt-0-xl{margin-top: 0px !important;}.mb-0-xl{margin-bottom: 0px !important;}
	.mt-1-xl{margin-top: 5px !important;}.mt-2-xl{margin-top: 10px !important;}.mt-3-xl{margin-top: 15px !important;}.mt-4-xl{margin-top: 20px !important;}
	.mt-5-xl{margin-top: 25px !important;}.mt-6-xl{margin-top: 30px !important;}.mt-7-xl{margin-top: 35px !important;}.mt-8-xl{margin-top: 40px !important;}
	.mb-1-xl{margin-bottom: 5px !important;}.mb-2-xl{margin-bottom: 10px !important;}.mb-3-xl{margin-bottom: 15px !important;}.mb-4-xl{margin-bottom: 20px !important;}
	.mb-5-xl{margin-bottom: 25px !important;}.mb-6-xl{margin-bottom: 30px !important;}.mb-7-xl{margin-bottom: 35px !important;}.mb-8-xl{margin-bottom: 40px !important;}
}
@media (min-width:1440px){
    .col-1-xxl { width:8.33333%; }
    .col-2-xxl { width:16.66667%; }
    .col-24-xxl { width:20%; }
	.col-26-xxl { width:22.22222%; }
    .col-3-xxl { width:25%; }
    .col-4-xxl { width:33.33333%; }
    .col-5-xxl { width:41.66667%; }
    .col-6-xxl { width:50%; }
    .col-7-xxl { width:58.33333%; }
    .col-8-xxl { width:66.66667%; }
    .col-9-xxl { width:75%; }
    .col-10-xxl { width:83.33333%; }
    .col-11-xxl { width:91.66667%; }
    .col-12-xxl { width:100%; }
	.hidden-xxl{display: none;}.visible-xxl{display: inherit;}
	.mt-0-xxl{margin-top: 0px !important;}.mb-0-xxl{margin-bottom: 0px !important;}
	.mt-1-xxl{margin-top: 5px !important;}.mt-2-xxl{margin-top: 10px !important;}.mt-3-xxl{margin-top: 15px !important;}.mt-4-xxl{margin-top: 20px !important;}
	.mt-5-xxl{margin-top: 25px !important;}.mt-6-xxl{margin-top: 30px !important;}.mt-7-xxl{margin-top: 35px !important;}.mt-8-xxl{margin-top: 40px !important;}
	.mb-1-xxl{margin-bottom: 5px !important;}.mb-2-xxl{margin-bottom: 10px !important;}.mb-3-xxl{margin-bottom: 15px !important;}.mb-4-xxl{margin-bottom: 20px !important;}
	.mb-5-xxl{margin-bottom: 25px !important;}.mb-6-xxl{margin-bottom: 30px !important;}.mb-7-xxl{margin-bottom: 35px !important;}.mb-8-xxl{margin-bottom: 40px !important;}
}