.nav-top-style {
  background: #fff;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 3px;
}

.cont-page {
  margin: 0 auto;
}


/* CookieBanner Settings Page Styles */
.cookie-wrap {
  display: flex;
  justify-content: flex-end;
}

.cockie-option {
  padding: 5px 8px;
  margin-left: 22px;
  background: #e00;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

.cookieinfo-options {
  background: #fff;
  color: #e00;
}

.wrapper-card {
  border-radius: 10px;
  background: #fff;
  padding: 25px;
  margin: 45px 0;
  margin-bottom: 300px;
}

@media screen and (max-width: 500px) {
  .wrapper-card {
    margin-bottom: 20px;
    margin: 10px;
  }
}

@media screen and (max-width: 960px) {
  .wrapper-card {
    margin-bottom: 20px;
  }
}

.divider {
  padding-bottom: 4px;
  border-bottom: 1px solid #e7e7e7;
}

@media screen and (max-width: 767px) {
  .cookie-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cockie-option {
    margin: 5px 0;
  }
}

.btn-container {
  margin: 50px 0 20px 0;
  display: flex;
  justify-content: center;
}

/* CookieBanner Component Styles */

.banner-wrap {
  position: fixed;
  bottom: 0;
  background-color: rgb(51, 51, 51);
  min-height: 200px;
  z-index: 121;
  width: 100%;
}

.banner-info {
  color: #fff;
  padding: 25px 20px;
  font-size: 14px;
  text-align: left;
  line-height: 21px;
}

.banner-btn-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 20px 20px 20px;
}

.banner-btn-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.banner-btn {
  margin-right: 10px;
}

.banner-close-btn {
  position: absolute;
  top: 2%;
  right: 10px;
  min-width: 25px;
  margin-left: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  opacity: 0.3;
}
.banner-close-btn:hover {
  opacity: 1;
}
.banner-close-btn::before,
.banner-close-btn::after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 17px;
  width: 2px;
  background-color: #fff;
}
.banner-close-btn::before {
  transform: rotate(45deg);
}
.banner-close-btn::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .banner-btn-block {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .banner-btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}