footer {
  margin-top: 100px;
  position: relative; }

.new_footermenu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #833275;
  margin-top: 50px;
  padding: 30px 150px 65px; }
  .new_footermenu .logo-brand {
    width: 250px; }
  .new_footermenu .logo-kanal {
    width: 140px; }
  .new_footermenu .button-network {
    margin-bottom: 20px; }
  .new_footermenu .sub_navigation_wrapper {
    margin-bottom: 10px; }

.footermenu-logo-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px; }

.footermenu-description-wrapper {
  text-align: end; }

.footermenu-description-wrapper .button-network {
  background: #db6c51;
  padding: 8px 24px;
  border-radius: 1px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-transform: uppercase; }

.footermenu-description-wrapper .button-network:hover {
  background: white;
  color: #833275;
  -webkit-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear; }

.sub_navigation_wrapper {
  font-size: 18px;
  font-weight: bold;
  color: white;
  max-width: 500px;
  line-height: 1.6; }

.sub_navigation {
  cursor: pointer; }

.sub_navigation:hover, .sub_navigation:focus {
  color: #db6c51; }

.sub_navigation_wrapper .sub_navigation::after {
  content: "|";
  padding: 0px 10px; }

.sub_navigation_wrapper .sub_navigation:last-child::after {
  content: "";
  padding: 0px 0px; }

/* css modal */
.popup-overlay {
  /*Hides pop-up when there is no "active" class*/
  visibility: hidden;
  position: absolute;
  background: #fff;
  right: 12vw;
  top: -59vh;
  z-index: 2;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }

.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center; }

.popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
  padding: 20px; }

.popup-content .brand_wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px; }

.popup-content .brand_wrapper a {
  border: 2px solid gray;
  padding: 5px;
  margin: 5px;
  border-radius: 3px;
  color: gray;
  font-size: 12px;
  font-weight: 800;
  background: white; }

.popup-content .brand_wrapper a:hover {
  background: #833275;
  border: 2px solid #833275;
  color: white;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; }

.popup-content .close-modal {
  background: red;
  border: none;
  color: white;
  font-size: 20px;
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0; }

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility: visible; }
