* {
    box-sizing: border-box;
}

body {

}

h1 {
text-align: center;
text-transform: uppercase;
font-weight: bold;
font-size: 1.9vw;
letter-spacing: 0.5px;
	font-family: Georgia, 'Times New Roman', Times, serif;

}
@media screen and (max-width: 1200px) {
  h1 {
font-size: 25px;
font-weight: bold;
}
}

h2 {
text-align: center;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 0.5px;
}





.row {
	display: flex;
	align-items: center;
	justify-content: center
}


   .colortext {
     color: red;
   }
   
   
   
  .column {
  float: left;
  width: 30%;
  height: auto;
  margin: 1.5vw;
  padding: 0 8px;
   border: 2px double #ffffff;
   border-radius: 3px;
  -webkit-box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
  	border-radius: 3px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.column:hover {
	  -webkit-box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
-moz-box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background:#f1f1f1;
}

@media screen and (max-width: 1100px) {
  .column {
    width: 100%;
    display: block;
	margin: 5px auto;
	justify-content: center;
	align-items: center;
  }
}

.product {
     border-radius: 5px;
}
.product img {
	width: 100%;
	height: auto;
	padding:15px;
	align-items: center;
	justify-content: center;
  object-fit: cover;
}

.container {
  padding: 0 10px;
color: #000000;
}
.container p {
font-size: 1vw;
text-align: center;
font-weight: bold;
padding-left: 1.5vw;
padding-right: 1.5vw;
text-transform: uppercase;
	  font-family: 'Crimson Text', Georgia, Times, serif;
}

.container h2 {
text-align: center;
font-size: 1.4vw;
letter-spacing: 1px;
text-transform: uppercase;
	  font-family: 'Crimson Text', Georgia, Times, serif;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}


.button {
  background: #2C3554;
  color: #fff;
  width: 90%;
  font-size: 1.2vw;
  margin: 10px;
  padding: 12px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing:1px;
  border:none;
  border-radius: 3px;
cursor:pointer;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;

}
.button a {
text-decoration: none;
color: #ffffff;
}

.button:hover {
  outline: 0;
  background: #4288cc;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
@media screen and (max-width: 1200px) {
.container p {
font-size: 13px;
padding-left: 20px;
padding-right: 20px;
}

.container h2 {
font-size: 18px;
}
.button {
  font-size: 18px;
}

}

.modal-offer {
    width: 580px;
    height: 120px;
    position: fixed;
	font-size: 13.5px;
	font-weight: bold;
    top: -160px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #ffffff;
	color: #000000;
    padding: 10px;
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 10px 14px 0;
	text-transform: uppercase;
}
.modal-offer span { 
    position: absolute;
    top: 3px;
    right: 6px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}
@media screen and (max-width: 500px) {
  .modal-offer {
visibility: hidden;
  }
}
.addInfo {
    display: flex;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: top 0s .5s, opacity .5s 0s;
    transition: top 0s .5s, opacity .5s 0s;
}


.addInfo:target {
    top: 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}

.addInfo figure {
    width: auto;
    max-width: auto;
	height: auto;
    position: relative;
    padding-top: 1.5em;
	padding-bottom: 1.5em;
	padding-left: 20px;
	padding-right: 20px;
    opacity: 0;
    background-color: #ffffff;
	color: #000000;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
	overflow: auto;
}
@media screen and (max-width: 500px) {
.addInfo figure {
    width: 80%;
    max-width: auto;
	height: 60%;
    position: relative;
    padding-top: 1.5em;
	padding-bottom: 1.5em;
	padding-left: 20px;
	padding-right: 20px;
    opacity: 0;
    background-color: #ffffff;
	color: #000000;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
	overflow: auto;
}
}
.addInfo figure p{
text-align: justify;
	font-family: 'Crimson Text', Georgia, Times, serif;
font-weight: 400;
font-size: 1.1vw;
letter-spacing: 1px;
}
.addInfo figure a{
text-decoration: none;
font-size: 1.5vw;
color: #008000;
font-weight: bold;
}
.addInfo figure a:hover{
	text-decoration: underline;
}

.addInfo.dialog figure {
    background: white;
    border-radius: 5px;
    padding-top: 10px;
}

.addInfo.dialog figure h2 {
    margin-top: 0;
    padding-bottom: 5px;
	font-size: 1.4vw;
}

.addInfo:target figure {
    opacity: 1;
}
@media screen and (max-width: 1200px) {
.addInfo figure p{
text-align: justify;
	font-family: 'Crimson Text', Georgia, Times, serif;
font-weight: 400;
font-size: 15px;
letter-spacing: 1px;
}
.addInfo figure a{
text-decoration: none;
font-size: 20px;
color: #008000;
font-weight: bold;
}
.addInfo.dialog figure h2 {
    margin-top: 0;
    padding-bottom: 5px;
	font-size: 16px;
}

}
.addInfo.dialog .smallclose {
  padding: 0.6vw;
  font-size: 1.1vw;
  background-color: #008000;
  color: #FFFFFF;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
    border: 1px solid black;
	border-radius: 0.2vw;
	  justify-content: center;
align-items: center;
margin: 0 auto;
}
.addInfo.dialog .smallclose:hover {
  background-color: #32CD32;
  text-decoration: none;
}
@media screen and (max-width: 1100px) {
  .addInfo.dialog .smallclose {
    float: none;
    display: block;
	  font-size: 15px;
    text-align: center;
	margin-top: 10px;
  }
}


.addInfo .fog {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,.7);
    content: "";
    cursor: default;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
}


.addInfo:target .fog {
    visibility: visible;
}
.wen hr {
    border: none;
    border-top: 4px double #333;
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}
.btn-basket-all {
  border: none;
  outline: none;
  padding: 12px 25px;
  background-color: #00a86b;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
    border: 1px solid black;
	border-radius: 3px;
	margin-top: 10px;
}

.btn-basket-all:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.btn-basket-add {
  background-color: green;
  color: white;
  font-weight: bold;
  padding: 8px;
  font-size: 15px;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 3px;
  cursor: pointer;
}

.btn-basket-add-black {
  border: none;
  font-family: GABRIOLA;
  padding: 12px 14px;
  background-color: #000000;
  color: #ffd700;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
	font-size: 19px;
}
.btn-basket-add-black:active {
  background-color: green;
}

.btn-basket-add-red {
  border: none;
    font-family: GABRIOLA;
  outline: none;
  padding: 12px 14px;
  background-color: red;
  color: #ffd700;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
	font-size: 19px;
}
.btn-basket-add-red:active {
  background-color: green;
}
.btn-basket-clear-close {
  border: none;
  outline: none;
  padding: 12px 25px;
  margin: 0 auto;
  background-color: #f1f1f1;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
    border: 1px solid black;
	border-radius: 3px;
}
@media screen and (max-width: 600px) {
    .btn-basket-clear-close {
        width: 100%;
		margin-top: 5px;
    }
}
.btn-basket-clear-close:hover {
  background-color: green;
  color: #FFFFFF;
}

.basket_container {
border: none;
width: 90%;
margin: 0 auto;
height: auto;
}
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 3000;
}
.pre_wrapper small {
  display: block;
  position: relative;
  text-align: center;
  font-size: 25px;
  top: 100px;
}
#preloader .icon_animate {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url(../img/456.GIF) center center no-repeat; 
  background-size: 300px;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
