/*   VARIT   */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: clip;
}

html { scroll-behavior: smooth; }

body {
   font-family: "Rubik", sans-serif;
   font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    /*background:#268574;*/
    font-size:1rem;
    line-height:1.45;
    color:#171c1a;
}

.hero {
    position: relative;
	margin: 0;
	padding: 0;
    height: 100vh;
    background-image: url('../images/background0.jpg');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;       
  outline: none;      
  margin: 0;         
  padding: 0;        
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.bg-hero {
    position: relative;
	margin: 0;
	padding: 0;
    min-height: 100vh;
	overflow: hidden;
}
/*
.bg-zoom {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/background0.jpg');
    background-position: center top;
    background-size: cover;
    transform-origin: center center;
    animation: zoomIn 15s ease-in forwards;
    z-index: -1;
}

  @keyframes zoomIn {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.2);
    }
  }
*/

.bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background0.jpg');
    background-position: center top;
    background-size: cover;
    transform-origin: center center;
    animation: zoomLoop 50s ease-in-out infinite;
	-webkit-animation: zoomLoop 50s ease-in-out infinite;
    z-index: -1;
    will-change: transform;
}

@keyframes zoomLoop {

    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.2);
    }
    65% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
 
.luminance {
  background: 50% 100% / 50% 50% no-repeat radial-gradient(ellipse at bottom, #ffffff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  font-weight: inherit;
  letter-spacing: -0.03em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  filter: brightness(0.9);

  animation:
    reveal 1800ms ease-in-out forwards 200ms,
    textGlow 6000ms ease-in-out infinite 2000ms;
}

@keyframes reveal {
  100% {
    background-size: 300% 300%;
    letter-spacing: -0.03em;
    filter: brightness(1);
  }
}

@keyframes textGlow {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.55); }
  100% { filter: brightness(1); }
}


.logo-luminance img {
  opacity: 0;
  transform: scale(0.9);
  animation:
    imgReveal 1800ms ease-out forwards,
    imgGlow 6000ms ease-in-out infinite 1800ms;
}

@keyframes imgReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes imgGlow {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.55);
  }
  100% {
    filter: brightness(1);
  }
}


.px-2 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.offcanvas {
    position: fixed;
    top: 150px;
    width: 300px;
    background: #fff;
    right: -300px;
    transition: right .3s ease;
    z-index: 1050;
    box-shadow: -3px 0 10px rgba(0,0,0,0.15);
}

.offcanvas.show {
    right: 0;
}

.offcanvas-header,
.offcanvas-footer {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.offcanvas-body {
    padding: 15px;
    overflow-y: auto;
}

.cart-badge {
    position: absolute;
    top: 1px;
    right: 6px;
    display: inline-block;
    background: #4AA851;
    color: #fff;
    font-size: 10px;
    font-weight: normal;
    padding: 3px 5px;
    border-radius: 50%;
    line-height: 1;
	z-index:1;
}


.floating-box-wrapper {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-30%);
  z-index: 9999;
}

.floating-box-wrapper {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.floating-box-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}

.floating-box {
  background-color: #65727a;
  padding: 15px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-size: 0.9em;
  letter-spacing: -0.015em;
  max-width: 250px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.floating-box:hover {
  background-color: #505559;
  text-decoration: none;
}

.close-btn2 {
  position: absolute;
  top: 10px;
  left: -10px;
  margin-right: 0px; 
  width: 30px;
  height: 30px;
  background-color: #6c757d;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
  z-index: 10000;
}

.close-btn2:hover {
  background-color: #5a6268;
}

.vihrea-tausta {
    /* background:#1D7868; */
	background:#3a98e2;
    color:#F2EDE9;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


@media (max-width: 479px) {
	#section1 {
		padding-bottom: 65px !important;
	}
}

/* SCENES */

/* Sticky left menu */

/* Sections must scroll normally */
#section2,
#section3,
#section4,
#section5 {
    position: relative;
    min-height: 250vh;
}

/* Sentinel must scroll */
.section-sentinel {
    width: 100%;
    height: 0px;
}

/* Sidemenu fade-in */
.scroll-menu-container {
    position: fixed;
    top: 40%;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-menu-container.active {
    opacity: 1;
    transform: translateX(0);
}

/* Highlight */
.scroll-menu-item-link.active {
    color: #fff;
}


.scroll-menu {
	max-width: 200px;
}

.scroll-menu-items {
	display: flex;
	flex-direction: column;
	margin: 0 0 120px 0;
	padding: 0;
	list-style-type: none;
}

.scroll-menu-item {
	margin-bottom: 30px;
}

.scroll-menu-item-link {
	color: #fff;
	transition: 0.3s;
	text-decoration: none;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.scroll-menu-item-link.active {
	font-size: 1.5rem;
	color: #fff;
	transition: 0.3s;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;

}


.scene-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  z-index: 99999;
}

.arrow-top {
  top: 20px;
}

.arrow-bottom {
  bottom: 20px;
}


/* Scene container */
.scene {
	position: relative;
    min-height: 250vh;  
}

.sticky {
    position: sticky;
    top: 0;
    height: 100vh;
}

.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 800px;  
    width: 100%;        
    margin: 0 auto;    
}

.split-left {
    flex: 1;
}

.split-right {
    flex: 2;
}

.split-text {
    margin: 0 0 12px 0;
}

@media (max-width: 900px) {
    .split {
        flex-direction: column;
        max-width: 100%;
    }

    .split-left,
    .split-right {
        max-width: 100%;
    }
}


/* SCENE 1 */


canvas {
  position: sticky;
  top: 0;
  max-width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

#hero-sequence {
    position: absolute;
    top: 25%;
    left: 0;
	max-width: 100%;
    width: 450px;
    height: 450px;
    z-index: 1;
    opacity: 0;
    transform: translateY(60px);
    pointer-events: none;
}


.scene-1-bg,
.scene-1-content {
    z-index: 2;
}

.scene-1-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
}

.scene-1-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background1.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.scene-1-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	padding-top: 0px;
	padding-right: 2rem;
	padding-bottom: 0px;
	padding-left: 2rem;
}


.scene-1-title,
.scene-1-text {
	max-width: 450px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.scene-1-title,
.scene-1-text p {
	color: white;
}



/* SCENE 2 */
.scene-2-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.scene-2-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.scene-2-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background2.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.scene-2-layer {
    z-index: 2;
}

/* Initial states */

.scene-2-title,
.scene-2-text,
.split-title,
.split-text {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
	max-width: 450px;
	color: white;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.scene-2-title,
.scene-2-text p {
	color: white;
}


/* SCENE 3 */
.scene-3-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
}

.scene-3-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.scene-3-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}


.scene-3-title,
.scene-3-text {
	max-width: 450px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.scene-3-title,
.scene-3-text p {
	color: white;
}




/* SCENE 4 */
.scene-4-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.scene-4-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.scene-4-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background4.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.scene-4-layer {
    z-index: 2;
}

/* Initial states */
.scene-4-title,
.scene-4-text,
.split-title,
.split-text {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
	max-width: 450px;
	color: white;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.scene-4-title,
.scene-4-text p {
	color: white;
}


.section-overlay {
    position: relative;
}
.section-overlay::before {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index:1;
}
.section-overlay > * {
    position:relative;
    z-index:2;
}

#bs-gdpr-cookies-modal-message, #bs-gdpr-cookies-modal-more-link {
color:#171c1a;
}

.modal-close i {
	border-radius: 50%;
	cursor: pointer;
	font-size: 17px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	right: -9px;
	text-align: center;
	top: -9px;
	width: 30px;
	color: #fff;
	background-color: #dc3545;
}

.modal-content p {
color:#171c1a;
}

.references_modal {
max-width: 70%; 
max-height: 70vh; 
width: auto;
}

.ref-text p {
font-size:12px;
}

.bg-dark {
   background-color: #343a40 !important;
}

.bg-light {
    background:#fff !important;
}

.bg-editor {
    background:#ffffff !important;
	color:#000000 !important;
}

.text-white, .text-white p {
	font-family: "Rubik", sans-serif;
    color:#ffffff !important;
    font-size: 100%;
	max-width: 650px;
	text-align: center;
	margin-top: 1;
	margin-right: auto;
	margin-bottom: 1;
	margin-left: auto;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.kiosk_heading {
	margin-top: 30px; 
	color: #fff; 
	text-shadow:1px 1px 2px #001f4d,0 0 25px #001f4d,0 0 5px #001f4d;
}

.kiosk_text p {
	font-family: "Rubik", sans-serif;
    color:#ffffff !important;
    font-size: 18px;
	max-width: 650px;
	text-align: center;
	margin-top: 1;
	margin-right: auto;
	margin-bottom: 1;
	margin-left: auto;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5 {
	font-family: "Rubik", sans-serif;
    color:#ffffff !important;
}

  .front {
    padding-top: 130px;
  }
  
  .kiosk {
    padding-top: 110px;
  }
  
  .front-logo {
     width:200px;
  }
  
  .kiosk_logo {
     width:200px;
  }
  
 
  
/* Apply padding only if browser height is OVER 700px */
@media (min-height: 900px) {
  .front {
    padding-top: 220px;
  }
  .kiosk {
    padding-top: 150px;
  }
  .front-logo {
     width:300px;
  }
}

@media (max-width: 479px) {
  .front-logo {
     width:150px;
  }
}

	
.front-text, .front-text p {
color:#ffffff !important;
text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.reference-image {
    width: 100%;        
    height: 200px;       
    background-size: cover;  
    background-repeat: no-repeat;
    background-position: center;
}

.card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border-top: 0px;
	border-right: 1px solid rgba(0,0,0,.125);
	border-left: 1px solid rgba(0,0,0,.125);
	border-bottom: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
}

.preview-card {
  position: relative;
}

.preview-card::before {
  content: "";
  position: absolute;
  top: 580px;        
  left: 0;
  width: 100%;
  height: 1px;        
  background-color: red;
  z-index: 10;     
}


hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid #fff;
}

.text-gray {
    color:#ccc;
}

.container {
  max-width: 960px;
}

section {
    padding:3rem 0;
}

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: inherit;
	line-height: 28px;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


/* contact form */ 

	.iti--allow-dropdown input, .iti--allow-dropdown input[type="text"], .iti--allow-dropdown input[type="tel"], .iti--separate-dial-code input, .iti--separate-dial-code input[type="text"], .iti--separate-dial-code input[type="tel"] {
	  padding-right: 36px;
	  padding-left: 0px;
	  margin-left: 0;
	}     
    .iti {
        width: 100%;
    }
    .autocomplete-dropdown {
        position: absolute;
        z-index: 1000;
        background: #fff;
        border: 1px solid #ddd;
        width: 100%;
        display: none;
        max-height: 150px;
        overflow-y: auto;
    }
    .autocomplete-item {
        padding: 8px;
        cursor: pointer;
    }
    .autocomplete-item:hover {
        background: #f1f1f1;
    }
	
	.form-label-group {
	  position: relative;
	  margin-bottom: 1.5rem;
	}

	.form-label-group input {
	  height: 3.125rem;
	  padding: 1rem .75rem;
	}

	.form-label-group label {
	  position: absolute;
	  top: 0;
	  left: 0;
	  padding: .75rem;
	  transition: all .1s ease-in-out;
	  color: #6c757d;
	}

	.form-label-group input:not(:placeholder-shown) ~ label,
	.form-label-group input:focus ~ label {
	  font-size: 12px;
	  transform: translateY(-70%);
	  background: white;
	  padding: 0 5px;
	}
	
	#validationMessage {
		display: none;
	}

@media (min-width:768px) {
    section {
        padding:5rem 0;
    }
    
    .d-md-flex {
        display: -webkit-box !important;      /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box !important;         /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox !important;      /* TWEENER - IE 10 */
        display: -webkit-flex !important;     /* Chrome */
        display: flex !important; 
    }
}

@media (min-width:1024px) {
    section {
        padding:7rem 0;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        max-width: 400px;
    }
    .footer {
        text-align: center;
    }
}

@media (min-width: 576px) {
    .gallery-grid {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        max-width: 1140px;
    }
}

@media (min-width:768px) {

    .kansikuva {
        padding-top:9%;
        padding-bottom:9%;
    }

    footer {
        padding:4rem 0;
    }
}

/* TYPOGRAPHY */ 

a {
    color:#007bff;
}
a:hover, .btn-link:hover {
    color: #343a40;
    text-decoration: none;
}


.footer a {
    color:#f2ede9 !important
}
.footer a:hover {
    color:#007bff !important;
    text-decoration: none;
}

.somelinkki:hover {
    color:#343a40 !important;
    transition: all 0.5s ease;
}
/*
a {
    color:#1D7868;
}
a:hover, .btn-link:hover {
    color: #343a40;
    text-decoration: none;
}


.footer a {
    color:#f2ede9 !important
}
.footer a:hover {
    color:#1D7868 !important;
    text-decoration: none;
}

.somelinkki:hover {
    color:#1D7868 !important;
    transition: all 0.5s ease;
}
*/
.footer p {
    margin-bottom: 1.3em;
    font-size:1rem;
	color:#fff;
}

p {
    margin-bottom: 1.3em;
    font-size:1rem;
	color:#171c1a;
}

h1, h2, h3, h4, h5 {
  font-family: "Rubik", sans-serif;
  margin: 1.414em 0 0.5em;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color:#171c1a;
}

@media (min-width:768px) {

h1, h2, h3, h4, h5 {
  font-family: "Rubik", sans-serif;
  margin: 1.414em 0 0.5em;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #171c1a;
}

small, .font_small {font-size: 0.75em;}
    
}

.background-overlay {
	background-color: transparent;
	background-image: linear-gradient(180deg, #171C1A80 80%, #171C1A 96%);
	opacity: 1;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.background-overlay2 {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: #171C1A;
	opacity: 0.8;
	mix-blend-mode: multiply;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/*
    FORM
*/

.text-info {
    color:#007bff !important;
}

.btn-primary {
    background:#3a98e2;
    color:#fff;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}

.btn-primary.red {
    background:#dc3545;
    color:#fff;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}

.btn-primary.red:hover {
    background:transparent;
    color:#fff;
    background: #c82333;
}

/*
.btn-primary.green {
    background:#1D7868;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}
.btn-primary.green:hover {
    color:#F2EDE9;
    background:#268574;
    border:1px solid rgba(255,255,255,.2);
}
.btn-secondary {
    background:#1D7868;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}
.btn-secondary:hover {
    color:#F2EDE9;
    background:#268574;
    border:1px solid rgba(255,255,255,.2);
}
.btn-secondary:not([disabled]):not(.disabled).active,
.btn-secondary:not([disabled]):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color:#F2EDE9;
    background:#164F47;
    border:1px solid rgba(255,255,255,.2);
}
*/
.btn {
    white-space: normal !important;
    word-wrap: break-word;
}
.btn-primary.green {
    background:#4AA851;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}
.btn-primary.green:hover {
    color:#F2EDE9;
    background:#367A3C;
    border:1px solid rgba(255,255,255,.2);
}
.btn-primary.purple {
    background:#923688;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}
.btn-primary.purple:hover {
    color:#fff;
    background:#7A2D70;
    border:1px solid rgba(255,255,255,.2);
}
.btn-secondary {
    background:#4AA851;
    transition: all 0.35s ease-in;
    border:1px solid transparent;
}
.btn-secondary:hover {
    color:#F2EDE9;
    background:#367A3C;
    border:1px solid rgba(255,255,255,.2);
}
.btn-outline-primary {
	color: #343a40;
	background-color: transparent;
	background-image: none;
	border-color: #C2946B;
}

.btn-outline-primary:hover {
  color: #1d2124;
  background-color:#C7A599;
  border-color:#C7A599
}

.btn-outline-secondary {
	color: #1d2124;
	background-color: transparent;
	background-image: none;
	border-color: #C7A599;
}

.btn-outline-secondary:hover {
  color: #1d2124;
  background-color:#C7A599;
  border-color:#C7A599
}

.btn-secondary:not([disabled]):not(.disabled).active,
.btn-secondary:not([disabled]):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color:#F2EDE9;
    background:#367A3C;
    border:1px solid rgba(255,255,255,.2);
}
.btn-primary.brown {
    background:#343a40;
	color: #fff !important;
    transition: all 0.35s ease-in;
	border:1px solid #C2946B;
}
.btn-primary.brown.focus,
.btn-primary.brown:focus { 
 box-shadow:0 0 0 .2rem rgba(52,58,64,.5)
}

.btn-primary.brown:hover {
  color:#fff;
  background-color:#23272b;
  border-color:#1d2124
}

.btn-dark {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: .75rem 1.75rem;
	border:1px solid #C2946B;
}


.btn-primary {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom:0.25rem;
    padding: .75rem 1.75rem;
    position:relative;
    font-family: inherit;
}

.btn-outline-primary {
    padding: .5rem 1.25rem;
    border: 1px solid #1D7868;
}

.btn-link {
    color:#1D7868;
}

.btn-sm {
    font-size: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-outline-light {
    font-family: inherit;
}

.input-group-text {
	padding: .375rem .75rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #C7A599;
	border: 1px solid #C7A599;
	border-radius: .25rem;
}

.btn .material-icons {
    position: absolute;
    top:.75rem;
    right:4px;
    font-size:18px;
    color:#484848;
}

/* Custom default button */

.btn-primary, .btn-warning, .btn-success, .btn-dark, .btn-info, .btn-secondary {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom:0.25rem;
	padding: .75rem 1.75rem;
	position: relative;
	font-family: inherit;
}


/*
 * Custom translucent site header
 */

.logo {
    opacity:1;
    height:20px;
	position:relative; 
	top: 7px;
	-webkit-filter: drop-shadow(5px 5px 5px #0056b3);filter: drop-shadow(5px 5px 5px #0056b3);
}

.logo2 {
    max-height:70px;
    opacity:1;
}

.scrolled .logo, .scrolled .logo2 {
    opacity:1;
	position:relative; 
	top:22px;
	height: 20px;
	-webkit-filter: drop-shadow(5px 5px 5px #222);filter: drop-shadow(5px 5px 5px #222);
}

.navbar-nav {
	margin-top: 50px !important;
}

.scrolled .navbar-nav {
	margin-top: 0px !important;
}
	
.nav-item {
	margin-top: 10px !important;
}
	
.scrolled .nav-item {
	margin-top: 25px !important;
}

#header {
    transition: top 0.2s ease-in-out;
}

.nav-up {
    top: -180px;
}

header a {
    color:#F2EDE9;
    font-family: "Rubik", sans-serif;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
	text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
}

.noshadow {
    color:#F2EDE9;
    font-family: "Rubik", sans-serif;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
	text-shadow: none;
}

nav a:hover {
  border-bottom: 1px solid #F2EDE9;
  text-decoration: none;
    color:#F2EDE9;
}

nav .active a {
  border-bottom: 1px solid #F2EDE9;
  text-decoration: none;
    color:#F2EDE9;
}

.dropdown-menu {
	font-size:0.875rem;
	color: #212529;
	text-align: left;
	list-style: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529 !important;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: 0px;
}

.nav-link {
	color: #495057;
	background-color: #f6f6f6;
	border: 1px solid #ddd !important;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	display: block;
}

#header {
    width:100%;
    display:block;
    padding: 0.5rem 0;
    transition: all 0.5s ease-in-out;
    font-size: 0.905rem;
	height:70px;
} 

@media (min-width 768px) {
    #header {
        padding: 1.6rem;
    }
}

.header-wrapper[data-emergence=hidden] header {
    padding-top: inherit;
    padding-bottom: inherit;
}

section[data-emergence=hidden], div[data-emergence=hidden] {
    opacity: 0;
    transition: opacity 1.5s ease;
}

section[data-emergence=visible], div[data-emergence=visible] {
    opacity: 1;
}

.scrolled #header {
    padding: 0.1rem;
    font-size:0.875rem;
    background:#171c1ad6;
}

.navbar-toggler {
    padding: .25rem;
    border-radius:0;
    position: absolute;
    top:0;
    right:0;
    z-index:9999;
}

.otsikko {
margin-top: 2rem !important;
}


@media (max-width: 768px) {

	.otsikko {
	margin-top: 5rem !important;
	}

	.front {
	padding-top:0px;
	}
	
	#mobile_logo {
	width:70% !important;
	margin-top:50px;
	}
	
	.references_modal {
	max-width: 100%; 
	max-height: 70vh; 
	width: auto;
	}
    .navbar-collapse {
        position: absolute;
        top:0;
        left:0;
        width:100%;
        background:#171c1ad6;
		padding-bottom: 1em;
    }
    .navbar-collapse a {
        color: #fff;
    }
    .navbar-collapse a:hover {
        color: #fff;
    }
    
    .navbar-collapse .active a {
        color: #fff;
    }
   
    .nav-item {
	width:100%;
    padding-top: .5rem!important;
    padding-bottom: .5rem!important;
	margin-left: auto;
	margin-right: auto;
    }
	
	.navbar-nav {
	margin-top: 0px !important;
	text-align: center;
	}
	
	.logo {
	position: relative;
	top:20px;
	padding-bottom: 30px;
	}
}

.dropdown-item.active, .dropdown-item:active {
	color: #212529;
	text-decoration: none;
	background-color: #F2EDE9;
}    

/*
 * Extra utilities
 */

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.flex-equal > * {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}

.overflow-hidden { overflow: hidden; }


/*==========================================================*/
/* Shop
/*==========================================================*/



.item-title { 
  font-size: 1.1em;
  margin-top:15px;
  margin-bottom:15px;
  margin-bottom:0px;
  text-transform: uppercase;
}

.item-ingress { 
  font-size: 12px;
  margin-top: 2px;
}

.item-description {
  font-size: 0.9rem;
}

.category-item {
	display: block;
	width: 100%;
	padding: .6rem 1.5rem;
	margin-bottom: .25rem;
	clear: both;
	font-weight: 400;
	color: #222;
	text-align: inherit;
	white-space: wrap;
	background-color: transparent;
	border: 1px solid #C2946B;
	font-size: 14px;
	text-transform: uppercase;
}

.category-item.active, .category-item:active, .category-item:hover  {
	color: #fff;
	text-decoration: none;
	background-color: #343a40;
	border: 1px solid #C2946B;
}  

.sub-category-item {
	display: block;
	width: 100%;
	padding: .5rem 2rem;
	margin-bottom: .25rem;
	clear: both;
	font-weight: 400;
	color: #222;
	text-align: inherit;
	white-space: wrap;
	background-color: transparent;
    border: 1px solid #C2946B;
	font-size: 14px;
	text-transform: uppercase;
}

ul .sub-category li a:before{
    font-family: FontAwesome;
    content: "\f105";
    display: inline-block;
    padding-left: 0px;
    padding-right: 10px;
}

.sub-category-item.active, .sub-category-item:active, .sub-category-item:hover  {
	color: #fff;
	text-decoration: none;
	background-color: #343a40;
	border: 1px solid #C2946B;
}   

.zoom:hover {
transform: scale(1.03); 
transition: all 0.1s ease-in-out;
}



/*==========================================================*/
/* Datatable
/*==========================================================*/ 

 .btn-group > .btn {
  margin-left: 2px;
  margin-right: 2px;
}
 
 table.dataTable th, table.dataTable td {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color:#171c1a;
}

 table.dataTable {
	border-collapse: collapse !important;
}


.dt-buttons{
float:right;
margin-top: 4px;
}

.dt-buttons .btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: inherit;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	color:#fff;
    background: #171c1ad6;
	border:1px solid #171c1ad6;
    transition: all 0.35s ease-in;
    line-height: 1.6;
}

.dt-buttons .btn:hover {
    color:#f8f8f8;
    background:#222;
    border:1px solid rgba(255,255,255,.2);
}
      
.dt-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination {
float:right;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 0px !important;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_filter label,
div.dataTables_wrapper div.dataTables_length label {
	margin-bottom: 0px !important;
}

.custom-select {
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	display: block;
	width: 100%;
	line-height: 1.5;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	margin-right: 5px;
	margin-top: 0px;
	padding: 3px 10px !important;
	height: 42px !important;
	color: #495057 !important;
}


.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover  {
background-color: #2bb8c2;
border-color: #2bb8c2;
}

ul.dt-button-collection.dropdown-menu > * {
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
    font-size:inherit;
}

.page-item.active .page-link {
	z-index: 1;
	color: #484848;
	background-color: #c3e6cb;
	border-color: #dee2e6;
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #484848;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	color: #484848;
}

.page-item.active:hover {
	z-index: 1;
	color: #484848;
	background-color: #c3e6cb;
	border-color: #dee2e6;
}


/*==========================================================*/
/* Slider
/*==========================================================*/


.carousel-indicators {
    bottom: 0px;
}

.carousel-indicators .active {
    background-color: #2980b9;
}

.carousel-control.left,
.carousel-control.right {
	opacity: 1;
	filter: alpha(opacity=100);
	background-image: none;
	background-repeat: no-repeat;
	text-shadow: none;
	position: absolute;
	top: 45%;
	z-index: 5;
	display: inline-block;
}

.carousel-control.left {
	left: 0px;
}

.carousel-control.right {
	right: 0px;
}

/* Carousel Header Styles */
.header-text {
    position: absolute;
    top: 20%;
    width: 96.66666666666666%;  
}
  
.header-text h1 {
    font-size: 44px;
    color: #fff;
    margin-bottom:20px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.header-text p  {
  font-size: 18px;
	color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5); 
}


.carousel-indicators-thumbs {
position: absolute;
left: 2px;
bottom: -140px;
width: 100%;
padding: 0px;
text-align: center;
list-style: none;
z-index: 15;
}

.carousel-indicators-thumbs li {
display: inline-block;
border: 1px solid #ddd;
width: 59px;
height: 59px;
margin:1px;
}

.carousel-indicators-thumbs li:hover {
display: inline-block;
opacity: 0.5;
}

.carousel-indicators {
position: absolute;
left:0px;
bottom: 0px;
padding: 0px;
text-align: center;
list-style: none;
z-index: 15;
}



.img-prod {
	max-width: 100%;
}
	

.carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	right:-40px;
}

.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -40px;
}

.img-carousel {
	width: 59px;
	height: 59px;
}

@media (max-width:768px) {

	.img-prod {
	  height: 300px;
	  width: 300px;
	}

	.carousel-indicators-thumbs {
	position: absolute;
	left: 10px;
	bottom: -60px;
	width: 100%;
	padding: 0px;
	text-align: center;
	list-style: none;
	z-index: 15;
	}

	.carousel-indicators-thumbs li {
	display: inline-block;
	border: 1px solid #ddd;
	width: 39px;
	height: 39px;
	margin: 0px;
	}
	
	.img-carousel {
		width: 39px;
		height: 39px;
	}
		
	.carousel-control-next {
		position: absolute;
		top: 0;
		bottom: 0;
		right:-10px;
	}

	.carousel-control-prev {
		position: absolute;
		top: 0;
		bottom: 0;
		left: -10px;
	}

	model-viewer{
	width: 300px;
	height: 300px;
	margin:0 auto;
	}

	.product-data {
		padding-left: 30px;
		padding-right: 30px;
	}
	
.table td, .table th {
  padding: .25rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

}

@media (min-width:769px) {
  
	.img-prod {
	  height: 400px !important;
	  width: 400px !important;
	}
	
	model-viewer{
	width: 400px;
	height: 400px;
	margin:0 auto;
	}

}



#bs-gdpr-cookies-modal-advanced-types  li {
list-style-type: none;
}

.cke_button__source_label {
    display: none !important;
}

/*==================================================
=            Validation                             =
==================================================*/
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color:#dc3545;
}
.was-validated .form-control:invalid {
  border-color:#dc3545;
  box-shadow:0 0 0 .2rem rgba(220,53,69,.25);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #ced4da;
}
 .was-validated .form-control:valid {
   box-shadow: none; 
   border-color: #ced4da;
}

.tooltip-inner {
    max-width: 350px;
    width: 350px; 
}


.form-group .form-control {
    padding-right: 2.375rem;
}

.form-group .form-control-icon {
    position: absolute;
	right: 20px;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #C7A599;
}

.form-group .form-control-icon {
    position: absolute;
	right: 20px;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #C7A599;
}

.form-group .form-control-icon2 {
    position: absolute;
	right: 20px;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    color: #C7A599;
}

.form-send-icon {
    position: absolute;
	left: 120px;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #C7A599;
}


/*==================================================
=            CKEditor                             =
==================================================*/


.cke_editable {
    background: #fff;
}

.cke_editable p {
    font-size: 1.1em;
	color: #000;
}

.cke_editable a {
    text-decoration: underline;
	color: #000;
}

.cke_editable h1, .cke_editable h2 {
    margin: 0em 0 0.5em;
    font-weight: inherit;
    line-height: 1.2;
    font-family: "Rubik", sans-serif;
    letter-spacing: -0.03em;
    color: #171c1a;
}


.cke_editable h3, .cke_editable h4 {
    margin: 1.414em 0 0.5em;
    font-weight: inherit;
    line-height: 1.2;
    font-family: "Rubik", sans-serif;
    letter-spacing: -0.03em;
    color: #171c1a;
}

.cke_editable h5 {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-top: 0em;
  margin-right: 0px;
  margin-bottom: 0em;
  margin-left: 0px;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color:#171c1a;
}


/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

/* Large desktops and laptops */
@media (min-width: 1200px) {

  .toplink {
    text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
  } 

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

  .toplink {
    text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
  }   
  
    
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .toplink {
    text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
  }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

  .toplink {
    text-shadow: 1px 1px 2px #001f4d, 0 0 25px #001f4d, 0 0 5px #001f4d;
  }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
    
  .nav-item  {
      padding-bottom: .5rem !important;
      padding-top: .5rem !important;
  }
   
}




/* DATATABLE */
.page-item.active .page-link {
	z-index: 1;
	color: #484848;
	background-color: rgba(0,0,0,.05);
	border-color: #dee2e6;
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #484848;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	color: #484848;
}

@font-face{
font-family:'Glyphicons Halflings';
src:url('../fonts/glyphicons-halflings-regular.eot');
src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
url('../fonts/glyphicons-halflings-regular.ttf') 
format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}
.glyphicon{
position:relative;top:1px;display:inline-block;
font-family:'Glyphicons Halflings';
font-style:normal;
font-weight:normal;
line-height:1;
-webkit-font-smoothing:antialiased;
}
.glyphicon-asterisk:before{content:"\2a";}
.glyphicon-plus:before{content:"\2b";}
.glyphicon-euro:before{content:"\20ac";}
.glyphicon-minus:before{content:"\2212";}
.glyphicon-cloud:before{content:"\2601";}
.glyphicon-envelope:before{content:"\2709";}
.glyphicon-pencil:before{content:"\270f";}
.glyphicon-glass:before{content:"\e001";}
.glyphicon-music:before{content:"\e002";}
.glyphicon-search:before{content:"\e003";}
.glyphicon-heart:before{content:"\e005";}
.glyphicon-star:before{content:"\e006";}
.glyphicon-star-empty:before{content:"\e007";}
.glyphicon-user:before{content:"\e008";}
.glyphicon-film:before{content:"\e009";}
.glyphicon-th-large:before{content:"\e010";}
.glyphicon-th:before{content:"\e011";}
.glyphicon-th-list:before{content:"\e012";}
/* kommentoitu ettei näy formeissa .glyphicon-ok:before{content:"\e013";} */
.glyphicon-remove:before{content:"\e014";}
.glyphicon-zoom-in:before{content:"\e015";}
.glyphicon-zoom-out:before{content:"\e016";}
.glyphicon-off:before{content:"\e017";}
.glyphicon-signal:before{content:"\e018";}
.glyphicon-cog:before{content:"\e019";}
.glyphicon-trash:before{content:"\e020";}
.glyphicon-home:before{content:"\e021";}
.glyphicon-file:before{content:"\e022";}
.glyphicon-time:before{content:"\e023";}
.glyphicon-road:before{content:"\e024";}
.glyphicon-download-alt:before{content:"\e025";}
.glyphicon-download:before{content:"\e026";}
.glyphicon-upload:before{content:"\e027";}
.glyphicon-inbox:before{content:"\e028";}
.glyphicon-play-circle:before{content:"\e029";}
.glyphicon-repeat:before{content:"\e030";}
.glyphicon-refresh:before{content:"\e031";}
.glyphicon-list-alt:before{content:"\e032";}
.glyphicon-flag:before{content:"\e034";}
.glyphicon-headphones:before{content:"\e035";}
.glyphicon-volume-off:before{content:"\e036";}
.glyphicon-volume-down:before{content:"\e037";}
.glyphicon-volume-up:before{content:"\e038";}
.glyphicon-qrcode:before{content:"\e039";}
.glyphicon-barcode:before{content:"\e040";}
.glyphicon-tag:before{content:"\e041";}
.glyphicon-tags:before{content:"\e042";}
.glyphicon-book:before{content:"\e043";}
.glyphicon-print:before{content:"\e045";}
.glyphicon-font:before{content:"\e047";}
.glyphicon-bold:before{content:"\e048";}
.glyphicon-italic:before{content:"\e049";}
.glyphicon-text-height:before{content:"\e050";}
.glyphicon-text-width:before{content:"\e051";}
.glyphicon-align-left:before{content:"\e052";}
.glyphicon-align-center:before{content:"\e053";}
.glyphicon-align-right:before{content:"\e054";}
.glyphicon-align-justify:before{content:"\e055";}
.glyphicon-list:before{content:"\e056";}
.glyphicon-indent-left:before{content:"\e057";}
.glyphicon-indent-right:before{content:"\e058";}
.glyphicon-facetime-video:before{content:"\e059";}
.glyphicon-picture:before{content:"\e060";}
.glyphicon-map-marker:before{content:"\e062";}
.glyphicon-adjust:before{content:"\e063";}
.glyphicon-tint:before{content:"\e064";}
.glyphicon-edit:before{content:"\e065";}
.glyphicon-share:before{content:"\e066";}
.glyphicon-check:before{content:"\e067";}
.glyphicon-move:before{content:"\e068";}
.glyphicon-step-backward:before{content:"\e069";}
.glyphicon-fast-backward:before{content:"\e070";}
.glyphicon-backward:before{content:"\e071";}
.glyphicon-play:before{content:"\e072";}
.glyphicon-pause:before{content:"\e073";}
.glyphicon-stop:before{content:"\e074";}
.glyphicon-forward:before{content:"\e075";}
.glyphicon-fast-forward:before{content:"\e076";}
.glyphicon-step-forward:before{content:"\e077";}
.glyphicon-eject:before{content:"\e078";}
.glyphicon-chevron-left:before{content:"\e079";}
.glyphicon-chevron-right:before{content:"\e080";}
.glyphicon-plus-sign:before{content:"\e081";}
.glyphicon-minus-sign:before{content:"\e082";}
.glyphicon-remove-sign:before{content:"\e083";}
.glyphicon-ok-sign:before{content:"\e084";}
.glyphicon-question-sign:before{content:"\e085";}
.glyphicon-info-sign:before{content:"\e086";}
.glyphicon-screenshot:before{content:"\e087";}
.glyphicon-remove-circle:before{content:"\e088";}
.glyphicon-ok-circle:before{content:"\e089";}
.glyphicon-ban-circle:before{content:"\e090";}
.glyphicon-arrow-left:before{content:"\e091";}
.glyphicon-arrow-right:before{content:"\e092";}
.glyphicon-arrow-up:before{content:"\e093";}
.glyphicon-arrow-down:before{content:"\e094";}
.glyphicon-share-alt:before{content:"\e095";}
.glyphicon-resize-full:before{content:"\e096";}
.glyphicon-resize-small:before{content:"\e097";}
.glyphicon-exclamation-sign:before{content:"\e101";}
.glyphicon-gift:before{content:"\e102";}
.glyphicon-leaf:before{content:"\e103";}
.glyphicon-eye-open:before{content:"\e105";}
.glyphicon-eye-close:before{content:"\e106";}
.glyphicon-warning-sign:before{content:"\e107";}
.glyphicon-plane:before{content:"\e108";}
.glyphicon-random:before{content:"\e110";}
.glyphicon-comment:before{content:"\e111";}
.glyphicon-magnet:before{content:"\e112";}
.glyphicon-chevron-up:before{content:"\e113";}
.glyphicon-chevron-down:before{content:"\e114";}
.glyphicon-retweet:before{content:"\e115";}
.glyphicon-shopping-cart:before{content:"\e116";}
.glyphicon-folder-close:before{content:"\e117";}
.glyphicon-folder-open:before{content:"\e118";}
.glyphicon-resize-vertical:before{content:"\e119";}
.glyphicon-resize-horizontal:before{content:"\e120";}
.glyphicon-hdd:before{content:"\e121";}
.glyphicon-bullhorn:before{content:"\e122";}
.glyphicon-certificate:before{content:"\e124";}
.glyphicon-thumbs-up:before{content:"\e125";}
.glyphicon-thumbs-down:before{content:"\e126";}
.glyphicon-hand-right:before{content:"\e127";}
.glyphicon-hand-left:before{content:"\e128";}
.glyphicon-hand-up:before{content:"\e129";}
.glyphicon-hand-down:before{content:"\e130";}
.glyphicon-circle-arrow-right:before{content:"\e131";}
.glyphicon-circle-arrow-left:before{content:"\e132";}
.glyphicon-circle-arrow-up:before{content:"\e133";}
.glyphicon-circle-arrow-down:before{content:"\e134";}
.glyphicon-globe:before{content:"\e135";}
.glyphicon-tasks:before{content:"\e137";}
.glyphicon-filter:before{content:"\e138";}
.glyphicon-fullscreen:before{content:"\e140";}
.glyphicon-dashboard:before{content:"\e141";}
.glyphicon-heart-empty:before{content:"\e143";}
.glyphicon-link:before{content:"\e144";}
.glyphicon-phone:before{content:"\e145";}
.glyphicon-usd:before{content:"\e148";}
.glyphicon-gbp:before{content:"\e149";}
.glyphicon-sort:before{content:"\e150";}
.glyphicon-sort-by-alphabet:before{content:"\e151";}
.glyphicon-sort-by-alphabet-alt:before{content:"\e152";}
.glyphicon-sort-by-order:before{content:"\e153";}
.glyphicon-sort-by-order-alt:before{content:"\e154";}
.glyphicon-sort-by-attributes:before{content:"\e155";}
.glyphicon-sort-by-attributes-alt:before{content:"\e156";}
.glyphicon-unchecked:before{content:"\e157";}
.glyphicon-expand:before{content:"\e158";}
.glyphicon-collapse-down:before{content:"\e159";}
.glyphicon-collapse-up:before{content:"\e160";}
.glyphicon-log-in:before{content:"\e161";}
.glyphicon-flash:before{content:"\e162";}
.glyphicon-log-out:before{content:"\e163";}
.glyphicon-new-window:before{content:"\e164";}
.glyphicon-record:before{content:"\e165";}
.glyphicon-save:before{content:"\e166";}
.glyphicon-open:before{content:"\e167";}
.glyphicon-saved:before{content:"\e168";}
.glyphicon-import:before{content:"\e169";}
.glyphicon-export:before{content:"\e170";}
.glyphicon-send:before{content:"\e171";}
.glyphicon-floppy-disk:before{content:"\e172";}
.glyphicon-floppy-saved:before{content:"\e173";}
.glyphicon-floppy-remove:before{content:"\e174";}
.glyphicon-floppy-save:before{content:"\e175";}
.glyphicon-floppy-open:before{content:"\e176";}
.glyphicon-credit-card:before{content:"\e177";}
.glyphicon-transfer:before{content:"\e178";}
.glyphicon-cutlery:before{content:"\e179";}
.glyphicon-header:before{content:"\e180";}
.glyphicon-compressed:before{content:"\e181";}
.glyphicon-earphone:before{content:"\e182";}
.glyphicon-phone-alt:before{content:"\e183";}
.glyphicon-tower:before{content:"\e184";}
.glyphicon-stats:before{content:"\e185";}
.glyphicon-sd-video:before{content:"\e186";}
.glyphicon-hd-video:before{content:"\e187";}
.glyphicon-subtitles:before{content:"\e188";}
.glyphicon-sound-stereo:before{content:"\e189";}
.glyphicon-sound-dolby:before{content:"\e190";}
.glyphicon-sound-5-1:before{content:"\e191";}
.glyphicon-sound-6-1:before{content:"\e192";}
.glyphicon-sound-7-1:before{content:"\e193";}
.glyphicon-copyright-mark:before{content:"\e194";}
.glyphicon-registration-mark:before{content:"\e195";}
.glyphicon-cloud-download:before{content:"\e197";}
.glyphicon-cloud-upload:before{content:"\e198";}
.glyphicon-tree-conifer:before{content:"\e199";}
.glyphicon-tree-deciduous:before{content:"\e200";}
.glyphicon-briefcase:before{content:"\1f4bc";}
.glyphicon-calendar:before{content:"\1f4c5";}
.glyphicon-pushpin:before{content:"\1f4cc";}
.glyphicon-paperclip:before{content:"\1f4ce";}
.glyphicon-camera:before{content:"\1f4f7";}
.glyphicon-lock:before{content:"\1f512";}
.glyphicon-bell:before{content:"\1f514";}
.glyphicon-bookmark:before{content:"\1f516";}
.glyphicon-fire:before{content:"\1f525";}
.glyphicon-wrench:before{content:"\1f527";}