/* The work below, CSSBox, is released under the Creative Commons
   Attribution-ShareAlike 4.0 license and is available on
   https://github.com/TheLastProject/CSSBox. You are not required to add
   additional credit to your website, just leave the above text in this file */
	/*
  	Flaticon icon font: Flaticon
  	Creation date: 20/03/2020 12:51
  	*/

@font-face {
  font-family: "Flaticon";
  src: url("../font/Flaticon.eot");
  src: url("../font/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("../font/Flaticon.woff2") format("woff2"),
       url("../font/Flaticon.woff") format("woff"),
       url("../font/Flaticon.ttf") format("truetype"),
       url("../font/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../font/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
  font-family: Flaticon;
        font-size: 20px;
font-style: normal;
margin-left: 20px;
}

.flaticon-right-arrow:before { content: "\f100"; }
.flaticon-left-arrow:before { content: "\f101"; }
/* nav */
html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
div.cssbox {
  display: inline-block;
	padding: 5px;
}
span.cssbox_full {
  z-index: 10000;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.5s linear;
}
span.cssbox_full img {
  position: fixed;
  background-color: white;
  margin: 0;
  padding: 0;
  max-height: 90%;
  max-width: 90%;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px black;
}
a.cssbox_close, a.cssbox_prev, a.cssbox_next {
  z-index: 10000;
  position: fixed;
  text-decoration: none;
  visibility: hidden;
  color: #fff;
  font-size: 36px;
}
a.cssbox_close:hover, a.cssbox_prev:hover, a.cssbox_next:hover, a.cssbox_close:focus, a.cssbox_prev:focus, a.cssbox_next:focus {
  color: #d5b697;
}
a.cssbox_close {
  top: 1%;
  right: 1%
}
a.cssbox_close::after {
  content: '\00d7';
}
a.cssbox_prev, a.cssbox_next {
  top: 50%;
  transform: translate(0%, -50%);
}
a.cssbox_prev {
  left: 5%;
}
a.cssbox_next {
  right: 5%;
}
a.cssbox_prev::after {
  font-family: "Flaticon";
	content: '\f101';
}
a.cssbox_next::after {
  font-family: "Flaticon";
	content: '\f100';
}
a:target ~ a.cssbox_close, a:target ~ a.cssbox_prev, a:target ~ a.cssbox_next {
  visibility: visible;
}
a:target > img.cssbox_thumb + span.cssbox_full {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
/* This is the end of CSSBox */