/*Cookie*/
.cookie-pane {
  /*background: rgba(189, 179, 155, 0.44);*/
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: 0;
  z-index: 2000;
  /*-webkit-transition: all .8s ease 0s;*/
  /*-moz-transition: all .8s ease 0s;*/
  /*-o-transition: all .8s ease 0s;*/
  /*transition: all .8s ease 0s;*/
  padding-bottom: 25vh;
}
.cookie-pane--shown {
  max-height: 100vh;
}
.cookie-pane__inner {
  background: #CBCBCB;
  box-shadow: 0 4px 33px rgba(0, 0, 0, 0.15);
  max-width: 1108px;
  width: 100%;
  padding: 27px 48px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.cookie-pane__text {
  font-size: 12px;
  line-height: 1.25em;
  color: #121227;
}
.cookie-pane__text h3, .cookie-pane__text .h3{
  font-family: 'TRY Grtsk Peta Semibold';
  font-weight: 600;
  color: #121227;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
.cookie-pane__text-link {
  color: #121227;
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-pane__button {
  font-size: 12px;
  line-height: 2.33333em;
  color: #121227;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #121227;
  text-align: center;
  margin-left: 48px;
}
.cookie-pane__button:hover{
  color: #A84301;
  border: 1px solid #A84301;
  text-decoration: none;
}
@media (max-width: 767px){
  .cookie-pane__inner {
    margin: 15px;
    padding: 18px 15px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(203, 203, 203, 0.9);
  }
  .cookie-pane__button {
    margin-left: 0;
  }
  .cookie-pane__text{
    font-size: 11px;
  }
}
/*End Cookie*/
