@charset "UTF-8";
/*!
 * Cookie Bar component (https://github.com/kovarp/jquery.cookieBar)
 * Version 1.2.6
 *
 * Copyright 2020 Pavel Kovář - Frontend developer [www.pavelkovar.cz]
 * Licensed under MIT (https://github.com/kovarp/jquery.cookieBar/blob/master/LICENSE)
 */
/* Settings */



/* MSU mods */

.cookie-bar__message strong {font-size: 110%;}
.cookie-bar__link--cookies-info {display: none;}

	@media only screen and (min-width: 62rem) {
		.cookie-bar__inner {font-size: 1.2rem; padding: 1.55rem .5rem; background-color: #343434;}
		.cookie-bar__message {text-align: left; line-height: 32px;}
		
		.cookie-bar__message  span:before {content:"\a"; white-space: pre;}
		
		
	}
	
	@media only screen and (max-width: 62rem) {
		.cookie-bar__inner {font-size: 1.2rem; padding: 1.45rem .5rem; background-color: #343434;}
		.cookie-bar__message {text-align: left; line-height: 24px;}
		
		
		.cookie-bar__message span {font-weight: bold;}
		
		.cookie-bar__buttons {margin-top: 20px !important;}
	}



/* Cookie Bar styles */
.cookie-bar__inner {
  
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

@media (min-width: 62rem) {
  .cookie-bar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cookie-bar__buttons {
  display: block;
  margin-top: .375rem;
  padding: 0 40px;
}

@media (min-width: 62rem) {
  .cookie-bar__buttons {
    display: inline;
    margin-top: 0;
  }
}

.cookie-bar__btn {
  background-color: #fff;
  color: #212529;
  border: none;
  border-radius: .5rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 .875rem;
  padding: .48rem .875rem;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
}

.cookie-bar__btn:hover, .cookie-bar__btn:active {
  background: #00d2ff; background: linear-gradient(-15deg,  rgba(58,123,213,1) 0%, rgba(94,200,229,1) 65%, rgba(0,210,255,1) 100%); color: #000; text-shadow: 0 0 10px #00d2ff, 0 0 6px #fff;
}

.cookie-bar__link {
  margin: 0 .5rem;
}

.cookie-bar a {
  color: #ce0e2d;
  text-decoration: underline;
}

.cookie-bar a:hover {
  color: #000;
  text-decoration: underline;
}

/* Privacy popup */
.cookie-bar-privacy-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-bar-privacy-popup.cookie-bar-privacy-popup--hidden {
  display: none;
}

.cookie-bar-privacy-popup__dialog {
  background-color: white;
  width: 100%;
  max-width: 50rem;
  max-height: 90vh;
  overflow: auto;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
}

.cookie-bar-privacy-popup__dialog__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  color: white;
  display: block;
  width: 2rem;
  height: 2rem;
  border: none;
  cursor: pointer;
}

.cookie-bar-privacy-popup__dialog__close:before, .cookie-bar-privacy-popup__dialog__close:after {
  content: '';
  display: block;
  width: 1rem;
  height: .25rem;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 25%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  margin-top: -.125rem;
}

.cookie-bar-privacy-popup__dialog__close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cookie-bar-privacy-popup__dialog__close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cookie-bar-privacy-popup__dialog p:last-child {
  margin-bottom: 0;
}

/* Cookie Bar layouts */
.cookie-bar--bottom-left,
.cookie-bar--bottom-right,
.cookie-bar--bottom {
  z-index: 2147483647;
  position: fixed;
}

.cookie-bar--bottom {
  right: 0;
  bottom: 0;
  left: 0;
}

.cookie-bar--bottom-left {
  left: 0.9375rem;
}

.cookie-bar--bottom-right {
  right: 0.9375rem;
}

.cookie-bar--bottom-right,
.cookie-bar--bottom-left {
  bottom: 0.9375rem;
}

@media (min-width: 48rem) {
  .cookie-bar--bottom-right,
  .cookie-bar--bottom-left {
    width: 22.5rem;
  }
}

@media (min-width: 48rem) {
  .cookie-bar--bottom-right .cookie-bar__inner,
  .cookie-bar--bottom-left .cookie-bar__inner,
  .cookie-bar--bottom-right .cookie-bar__buttons,
  .cookie-bar--bottom-left .cookie-bar__buttons {
    display: block;
  }
}

@media (min-width: 48rem) {
  .cookie-bar--bottom-right .cookie-bar__buttons,
  .cookie-bar--bottom-left .cookie-bar__buttons {
    margin-top: .375rem;
  }
}

.cookie-bar--bottom-right .cookie-bar__inner,
.cookie-bar--bottom-left .cookie-bar__inner {
  line-height: 1.3;
}
