/*cookie bar*/
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 16px;
  line-height: 1.3;
}
.cookie-popup .bt-toggle-cookie {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 22px;
  padding: 10px;
  border-radius: 0 12px 0 0 ;
  float: left;
  line-height: 20px;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.cookie-popup .cookie-popup-content {
  padding: 20px 20px 20px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}
.cookie-popup .cookie-popup-content a {
  color: #fff;
  text-decoration: underline !important;
}
.cookie-popup .cookie-btn-grp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex: 0 0 400px;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
  max-width: 400px;
  text-align: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .cookie-popup .cookie-btn-grp {
    margin-top: 15px;
    max-width: 100%;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    min-width: auto;
  }
}
.cookie-popup form {
  margin: 0;
}
.cookie-popup .cookie-agree-button {
  border: none;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border-radius: 4px;
  padding: 0.62rem 1rem;
  width: min(300px, 100%);
}
.cookie-popup .cookie-agree-button:hover {
  background-color: #D31E25;
  color: #fff;
}
/*cookie modal*/
.cockie-modal .custom-checkbox {
  position: relative;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  align-items: center;
  vertical-align: middle;
  max-width: 100%;
}
.cockie-modal .custom-checkbox .custom-control-label:after {
  display: none;
}
.cockie-modal .custom-checkbox label {
  width: 100%;
  margin: 0 !important;
  position: relative;
  cursor: pointer;
}
.cockie-modal .custom-checkbox label:before {
  display: none;
}
.cockie-modal .custom-checkbox input {
  top: 0;
  left: 0;
  width: 100%;
  cursor: inherit;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  height: 14px;
}
.cockie-modal .custom-checkbox span {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  padding-left: 50px;
}
.cockie-modal .custom-checkbox span:before {
  width: 20px;
  height: 20px;
  box-shadow: 0px 1px 3px 0px rgba(211, 30, 37, 0.5), 0px 1px 1px 0px rgba(211, 30, 37, 0.5), 0px 2px 1px -1px rgba(211, 30, 37, 0.5);
  border-radius: 50%;
  background-color: #D31E25;
  position: absolute;
  display: block;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translate(-20%, -55%);
  -moz-transform: translate(-20%, -55%);
  -ms-transform: translate(-20%, -55%);
  -o-transform: translate(-20%, -55%);
  transform: translate(-20%, -55%);
  z-index: 1;
}
.cockie-modal .custom-checkbox span:after {
  display: block;
  content: '';
  color: #000;
  width: 34px;
  height: 14px;
  border-radius: 7px;
  background-color: rgba(211, 30, 37, 0.3);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -55%);
  -moz-transform: translate(0, -55%);
  -ms-transform: translate(0, -55%);
  -o-transform: translate(0, -55%);
  transform: translate(0, -55%);
  z-index: 0;
}
.cockie-modal .custom-checkbox input ~ span.checked {
  display: none;
}
.cockie-modal .custom-checkbox input ~ span.unchecked {
  display: block;
}
.cockie-modal .custom-checkbox input:checked ~ span.checked {
  display: block !important;
}
.cockie-modal .custom-checkbox input:checked ~ span.unchecked {
  display: none !important;
}
.cockie-modal .custom-checkbox input:checked + span:after {
  background-color: #adeeba;
}
.cockie-modal .custom-checkbox input:checked + span:before {
  background-color: #00b723;
  left: 25px;
}
.cockie-modal .modal-body {
  padding-bottom: 40px;
  line-height: 1.3;
}
.cockie-modal .modal-body a {
  color: #000;
}
.cockie-modal .cookie-agree-button {
  border: none;
  background-color: #000;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.62rem 1rem;
  display: inline-block;
  cursor: pointer;
  border-radius: 4px;
}
.cockie-modal .cookie-agree-button:hover {
  background-color: #D31E25;
  color: #fff;
}
.cockie-modal .modal-footer {
  border: none;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.cockie-modal .modal-title {
  font-size: 21px;
}
.cockie-modal .tab-grp {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 190px 1 1;
  -ms-flex: 190px 1 1;
  flex: 190px 1 1;
}
.cockie-modal .tab-grp .tab {
  cursor: pointer;
  padding: 10px;
  border-top: 1px solid #bbbbbb;
  margin-right: 20px;
  background-color: #d3d3d3;
  color: #000;
  text-decoration: none;
  display: block;
}
.cockie-modal .tab-grp .tab.active {
  background-color: #fff;
}
.cockie-modal .modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 700px !important;
}
.cockie-modal .modal.fade .modal-dialog {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.cockie-modal .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.cockie-modal .modal-content {
  background-color: #fff;
  color: #000;
}
.cockie-modal .modal-header {
  border: none;
}
.btn-close {
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  margin-left: auto;
}
