﻿.cookies-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 1070px;
  z-index: 999999;
  background: #fff;
  border: 1px solid  #cb1517;
  padding: 30px;
  -webkit-box-shadow: 7px 0 20px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 7px 0 20px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 7px 0 20px 2px rgba(0, 0, 0, 0.3);
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; 
}
.cookies-bar.inactive {
  bottom: -100vh; 
}
.cookies-bar .title {
  font-weight: 700;
  font-size: 17px;
  color: #444a4f; 
}
.cookies-bar .text-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px; 
}
.cookies-bar .text-grid p {
  font-size: 13px;
  line-height: 20px;
  color: #444a4f;
  width: 80%; 
}
.cookies-bar .text-grid p a {
  color: #444a4f !important;
  text-decoration: underline; 
}
.cookies-bar .text-grid p a:hover {
  color:  #cb1517 !important; 
}
.cookies-bar .text-grid .submit-button {
  height: 45px;
  background: #fff;
  border: 1px solid  #cb1517;
  color:  #cb1517;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; 
}
.cookies-bar .text-grid .submit-button:hover {
  background:  #cb1517;
  border: 1px solid  #cb1517;
  color: #fff; 
}
.cookies-bar .button-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px; 
}

@media only screen and (max-device-width: 786px) {
  .cookies-bar {
    width: calc(100vw - 40px);
    padding: 20px; 
  }
  .cookies-bar .title {
    font-size: 18px;
    line-height: 25px;
    text-align: center; 
  }
  .cookies-bar .text-grid {
    flex-direction: column; 
  }
  .cookies-bar .text-grid p {
    font-size: 10px;
    line-height: 17px; 
  }
  .cookies-bar .text-grid p br {
    display: none; 
  }
  .cookies-bar .text-grid .submit-button {
    margin-top: 10px; 
  }
  .cookies-bar .text-grid .submit-button:hover {
    background:  #cb1517; 
  }
}