html,
body {
  position: relative;
  font-family: "Montserrat-Regular";
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cgr {
  /* Form controls */
}

.cgr-icon {
  display: inline-block;
  width: 1em;
  fill: currentColor;
  line-height: 0;
}

.cgr-header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
}

.cgr-navbar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  height: 60px;
  border-bottom: 1px solid #e5e5e5;
}

.cgr-navbar__logo {
  margin: 6px 32px;
  width: 203px;
}

.cgr-navbar__burger {
  display: none;
  position: absolute;
  left: 15px;
  width: 32px;
  height: 32px;
}

.cgr-navbar__burger-lines {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: black;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.cgr-navbar__burger-lines::before, .cgr-navbar__burger-lines::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.cgr-navbar__burger-lines::before {
  top: -9px;
}

.cgr-navbar__burger-lines::after {
  bottom: -9px;
}

.cgr-navbar__burger-lines-active {
  -webkit-transition: background-color 0s;
  transition: background-color 0s;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  background-color: rgba(0, 0, 0, 0);
}

.cgr-navbar__burger-lines-active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.cgr-navbar__burger-lines-active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
}

.cgr-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 47px;
  padding: 0;
}

.cgr-menu__item {
  position: relative;
  margin-right: 25px;
  padding: 5px 10px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.cgr-menu__item > a {
  color: #18a0fb;
  text-decoration: none;
}

.cgr-menu__item:hover {
  background-color: #18a0fb;
}

.cgr-menu__item:hover > a {
  color: white;
}

.cgr-menu__item:hover ul {
  max-height: 500px;
  border: 1px solid #18a0fb;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.cgr-menu .active {
  background-color: #18a0fb;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.cgr-menu .active > a {
  color: white;
}

.cgr-menu ul {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  color: #18a0fb;
  background-color: white;
  margin-top: 5px;
  padding: 0;
  left: 0;
  list-style-type: none;
  max-height: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.cgr-menu ul li {
  padding: 5px 10px;
}

.cgr-menu ul li > a {
  color: #18a0fb;
  text-decoration: none;
}

.cgr-menu ul li.active {
  color: white;
}

.cgr-menu ul li:hover {
  background-color: #18a0fb;
}

.cgr-menu ul li:hover > a {
  color: white;
}

.cgr-action-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 80px;
  padding: 0;
}

.cgr-action-panel__login {
  margin-right: 12px;
}

.cgr-btn {
  font-family: "Montserrat-Regular";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  line-height: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  padding: 0 16px;
  height: 40px;
  border: 1px solid #18a0fb;
  text-decoration: none;
  cursor: pointer;
}

.cgr-btn-default {
  background-color: #ffffff;
  color: #18a0fb;
}

.cgr-btn-primary {
  background-color: #18a0fb;
  color: #ffffff;
}

.cgr-btn-small {
  font-size: 12px;
  line-height: 16px;
  padding: 0 24px;
  height: 25px;
}

.cgr-fill-space {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cgr-footer {
  position: relative;
  top: 61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
}

.cgr-footer__copyright {
  margin: 40px 0 0 0;
  padding-bottom: 120px;
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.015em;
  color: rgba(0, 0, 0, 0.8);
}

.cgr-footer__links {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
}

.cgr-footer__icon {
  font-size: 32px;
  margin-right: 10px;
}

.cgr-footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  text-decoration: none;
  color: black;
  margin-right: 21px;
}

.cgr-footer__link:nth-child(1) {
  margin-left: 21px;
}

.cgr-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 108px;
  padding-bottom: 36px;
  margin-left: 80px;
  margin-right: 80px;
}

.cgr-footer__logo {
  width: 203px;
  height: 48px;
}

.cgr-container {
  position: relative;
  top: 61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1440px;
  background-color: white;
}

.cgr-site {
  position: relative;
}

.cgr-login, .cgr-signup, .cgr-reset-password, .cgr-request-password-reset {
  position: relative;
  padding: 50px 10px;
}

.cgr-login__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cgr-login__form, .cgr-signup__form, .cgr-reset-password__form, .cgr-request-password-reset__form {
  position: relative;
  max-width: 500px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cgr-signup__buttons {
  display: block;
  text-align: right;
}

.cgr-reset-password__buttons {
  display: block;
  text-align: right;
}

.cgr-request-password-reset__buttons {
  display: block;
  text-align: right;
}

.cgr-slider__slide {
  position: relative;
}

.cgr-slider__videocontainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.cgr-slider__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cgr-worships {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  padding: 120px 80px;
}

.cgr-worships__header {
  font-size: 48px;
  line-height: 160%;
  margin: 0;
  margin-bottom: 60px;
}

.cgr-worships__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cgr-speeches {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 80px;
}

.cgr-speeches-search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cgr-speeches-search__field {
  min-width: 150px;
  margin-right: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.cgr-speeches-search__button {
  height: 100%;
}

.cgr-speeches-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  border-bottom: solid 1px #8d8d8d;
  padding-top: 33px;
  padding-bottom: 33px;
}

.cgr-speeches-list-item__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cgr-speeches-list-item__labels-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #8d8d8d;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
}

.cgr-speeches-list-item__labels-label:not(:last-child) {
  margin-right: 15px;
}

.cgr-speeches-list-item__labels-label > *:not(:last-child) {
  margin-right: 10px;
}

.cgr-speeches-list-item__deko {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 85px;
  left: 2px;
}

.cgr-speeches-list-item__deko > * {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #8d8d8d;
}

.cgr-speeches-list-item__deko > *:not(:last-child) {
  margin-bottom: 10px;
}

.cgr-speeches-list-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cgr-speeches-list-item__body-type-icon {
  height: 150px;
  width: 150px;
  color: #18a0fb;
  fill: currentColor;
  margin-top: 30px;
  margin-left: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cgr-speeches-list-item__body-info {
  padding-left: 35px;
  padding-top: 35px;
}

.cgr-speeches-list-item__body-info .title .title1 {
  font-size: 24px;
  line-height: 125%;
}

.cgr-speeches-list-item__body-action-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
}

.cgr-speeches-list-item__body-action-panel > *:not(:last-child) {
  margin-right: 10px;
}

.cgr-speeches-list-item__body-action-panel-download {
  display: inline-block;
  color: #18a0fb;
  font-size: 34px;
}

.cgr-speeches-list-item__body-action-panel-download:hover {
  color: #18b0ff;
}

.cgr-archive {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 80px;
}

.cgr-archive__header {
  font-size: 48px;
  line-height: 72px;
  margin: 0;
  margin-bottom: 60px;
}

.cgr-archive-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cgr-archive__calendar {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: -10px 10px 15px 3px silver;
          box-shadow: -10px 10px 15px 3px silver;
}

.cgr-archive__events {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}

.cgr-archive__events-title {
  position: relative;
  margin: 0;
  margin-left: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
  font-family: "Montserrat-Bold";
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  border-bottom: 1px solid silver;
}

.cgr-archive__events-title::after {
  content: "";
  position: absolute;
  border-bottom: 1px red solid;
}

.cgr-archive__events-list {
  margin: 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  list-style: none;
}

.cgr-archive-speech {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 80px;
}

.cgr-archive-speech__header {
  font-size: 48px;
  line-height: 72px;
  margin: 0;
  margin-bottom: 60px;
}

.cgr-archive-speech-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cgr-archive-speech__calendar {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 10px 10px 15px 3px silver;
          box-shadow: 10px 10px 15px 3px silver;
}

.cgr-archive-speech__events {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}

.cgr-archive-speech__events-title {
  margin: 0;
  margin-left: 30px;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
  font-family: "Montserrat-Bold";
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  border-bottom: 1px solid silver;
}

.cgr-archive-speech__events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  margin-right: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  list-style: none;
}

.cgr-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.cgr-card__header {
  font-family: "Montserrat-Bold";
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
}

.cgr-card__body {
  font-size: 18px;
  line-height: 170%;
}

.cgr-minicard {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  min-width: 350px;
  padding: 15px 0;
  margin-right: 10px;
  border-bottom: solid 1px silver;
}

.cgr-minicard__header {
  font-family: "Montserrat-Bold";
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
}

.cgr-minicard__body {
  font-size: 16px;
  line-height: 24px;
}

.cgr-minicard__player {
  position: relative;
  width: 40px;
  height: 40px;
}

.cgr-mediacard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  min-width: 350px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid silver;
  margin-right: 10px;
}

.cgr-mediacard__header {
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.5em;
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: default;
}

.cgr-mediacard__body {
  font-size: 12px;
  line-height: 24px;
}

.cgr-mediacard__player {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 42px;
  color: #18a0fb;
}

.cgr-flex-width {
  width: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.cgr-post {
  padding: 15px 30px;
  overflow: auto;
  line-height: 175%;
  max-width: 720px;
  margin: 0 auto;
}

.cgr .form-group {
  position: relative;
  padding-bottom: 15px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

.cgr .form-group table {
  border-spacing: 0;
}

.cgr .form-group table td {
  padding: 0;
}

.cgr .form-group select.form-control,
.cgr .form-group input[type="text"].form-control,
.cgr .form-group input[type="password"].form-control {
  border-radius: 0;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 30px 8px 14px;
  width: 100%;
}

.cgr .form-group select.form-control:focus,
.cgr .form-group input[type="text"].form-control:focus,
.cgr .form-group input[type="password"].form-control:focus {
  outline: 1px solid #18a0fb;
}

.cgr .form-group select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20fill%3D%22%23555555%22%20%0A%09%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%22-261%20145.2%2024%2024%22%20style%3D%22enable-background%3Anew%20-261%20145.2%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20d%3D%22M-245.3%2C156.1l-3.6-6.5l-3.7%2C6.5%20M-252.7%2C159l3.7%2C6.5l3.6-6.5%22%2F%3E%0A%3C%2Fsvg%3E");
  padding-right: 25px;
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cgr .form-group select.form-control::-ms-expand {
  display: none;
}

.cgr .form-group:not(.has-error) input[type="text"].form-control,
.cgr .form-group:not(.has-error) input[type="password"].form-control,
.cgr .form-group:not(.has-error) select.form-control {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.cgr .form-group.has-error input[type="text"].form-control,
.cgr .form-group.has-error input[type="password"].form-control {
  border: 1px solid rgba(255, 0, 0, 0.75);
}

.cgr .form-group.has-error .help-block {
  padding-top: 5px;
  color: rgba(255, 0, 0, 0.75);
  font-size: small;
}

.cgr .form-group.required::after {
  position: absolute;
  top: 3px;
  right: 9px;
  content: "*";
  color: red;
  font-size: 32px;
  line-height: 42px;
}

.cgr div.kv-meter {
  padding-right: 20px;
}

.cgr ul.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.cgr ul.pagination li > a,
.cgr ul.pagination li > span {
  display: block;
  width: 30px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  background-color: #8d8d8d;
  color: white;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.cgr ul.pagination li > a:hover,
.cgr ul.pagination li > span:hover {
  background-color: #ccc;
  color: #18a0fb;
}

.cgr ul.pagination li.active > a {
  background-color: #18a0fb;
  color: white;
}

.cgr ul.pagination li.disabled > span {
  background-color: #e5e5e5;
  color: white;
}

.cgr ul.pagination li:not(:last-child) {
  margin-right: 1px;
}

.cgr-about {
  padding: 15px 30px;
  overflow: auto;
  line-height: 175%;
  max-width: 720px;
  margin: 0 auto;
}

.cgr-about blockquote {
  background: #f1f1f1;
  padding: 15px;
  border-left: 3px solid #18a0fb;
}

.cgr-about address {
  text-align: right;
}

.cgr-about__location address {
  text-align: center;
}

.cgr-about__location-maps {
  margin-top: 30px;
  text-align: center;
}

.slick-dots {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  min-height: 48px;
}

.slick-dots li {
  margin-right: 15px;
  position: relative;
  cursor: pointer;
}

.slick-dots li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}

.slick-dots li.slick-active::after {
  background-color: #18a0fb;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-arrow {
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  cursor: pointer;
}

.slick-next {
  left: calc(50% + 100px);
}

.slick-prev {
  right: calc(50% + 100px);
}

.register-icon,
.login-icon,
.logout-icon {
  margin-right: 7px;
  font-size: 22px;
  line-height: 0;
}

@media (max-width: 1320px) {
  .cgr-action-panel {
    margin-right: 20px;
  }
}

@media (max-width: 1260px) {
  .cgr-action-panel {
    position: absolute;
    right: 0;
    margin-right: 15px;
  }
  .cgr-action-panel__logout, .cgr-action-panel__login, .cgr-action-panel__register {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    overflow: hidden;
    padding: 3px;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cgr-action-panel__logout .btn-content, .cgr-action-panel__login .btn-content, .cgr-action-panel__register .btn-content {
    display: none;
  }
  .register-icon,
  .login-icon,
  .logout-icon {
    margin: 0;
  }
}

@media (max-width: 1000px) {
  .cgr-navbar__burger {
    display: block;
  }
  .cgr-menu {
    position: absolute;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.25s ease-in;
    transition: -webkit-transform 0.25s ease-in;
    transition: transform 0.25s ease-in;
    transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
    left: 0;
    margin: 0;
    padding: 15px;
    top: 61px;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid silver;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    font-size: 24px;
    line-height: 150%;
  }
  .cgr-menu__item {
    margin-bottom: 15px;
  }
  .cgr-menu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .cgr-fill-space {
    display: none;
    visibility: hidden;
  }
  .cgr-navbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cgr-worships {
    padding: 60px 40px;
  }
  .cgr-archive-panel {
    display: block;
  }
  .cgr-archive__calendar {
    width: auto;
    -webkit-box-shadow: 0px 0px 15px 3px silver;
            box-shadow: 0px 0px 15px 3px silver;
  }
  .cgr-archive__events {
    margin-top: 60px;
  }
  .cgr-archive__events-title {
    margin-left: 0;
  }
  .cgr-archive__events-list {
    padding: 0;
  }
  .cgr-archive-speech-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .cgr-archive-speech__calendar {
    width: auto;
    -webkit-box-shadow: 0px 0px 15px 3px silver;
            box-shadow: 0px 0px 15px 3px silver;
  }
  .cgr-archive-speech__events {
    margin-top: 60px;
  }
  .cgr-archive-speech__events-title {
    margin-left: 0;
  }
  .cgr-archive-speech__events-list {
    padding: 0;
    margin: 0;
  }
  .cgr-footer__menu {
    padding-top: 15px;
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 900px) {
  .cgr-archive {
    padding: 60px 40px;
  }
  .cgr-archive-speech {
    padding: 60px 40px;
  }
  .cgr-mediacard {
    min-width: 250px;
  }
  .cgr-speeches {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 60px 80px;
  }
  .cgr-speeches-search-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .cgr-speeches-search__field {
    margin-right: 0;
  }
  .cgr-speeches-search__button {
    padding: 10px 20px;
  }
  .cgr-speeches-list-item__labels-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #8d8d8d;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
  }
  .cgr-speeches-list-item__labels-label:not(:last-child) {
    margin-right: 10px;
  }
  .cgr-speeches-list-item__labels-label > *:not(:last-child) {
    margin-right: 8px;
  }
}

@media (max-width: 800px) {
  .cgr-menu {
    display: block;
    max-height: calc(100vh - 61px);
    overflow-y: auto;
  }
  .cgr-speeches-list-item {
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .cgr-speeches-list-item__body-type-icon {
    height: 130px;
    width: 130px;
    margin-top: 30px;
    margin-left: 30px;
  }
  .cgr-speeches-list-item__body-info .title .title1 {
    font-size: 18px;
    line-height: 125%;
  }
  .cgr-speeches-list-item__body-info .speaker-panel {
    font-size: 14px;
  }
  .cgr ul.pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cgr ul.pagination li {
    margin-bottom: 1px;
  }
}

@media (max-width: 670px) {
  .cgr-worships__row {
    display: block;
  }
}

@media (max-width: 620px) {
  .cgr-card__header {
    font-size: 22px;
  }
  .cgr-card__body {
    font-size: 17px;
  }
  .cgr-post {
    font-size: 14px;
    padding: 10px 10px;
  }
  .cgr-speeches {
    padding: 30px 15px;
  }
}

@media (max-width: 550px) {
  .cgr-speeches-list-item {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .cgr-speeches-list-item__labels-label {
    padding: 3px 6px;
  }
  .cgr-speeches-list-item__labels-label:not(:last-child) {
    margin-right: 8px;
  }
  .cgr-speeches-list-item__labels-label > *:not(:last-child) {
    margin-right: 5px;
  }
  .cgr-speeches-list-item__deko {
    top: 57px;
  }
  .cgr-speeches-list-item__deko > * {
    width: 9px;
    height: 9px;
  }
  .cgr-speeches-list-item__deko > *:not(:last-child) {
    margin-bottom: 5px;
  }
  .cgr-speeches-list-item__body-type-icon {
    height: 90px;
    width: 90px;
    margin-top: 17px;
    margin-left: 22px;
  }
  .cgr-speeches-list-item__body-info {
    padding-left: 20px;
    padding-top: 10px;
  }
  .cgr-speeches-list-item__body-info .title .title1 {
    font-size: 16px;
    line-height: 125%;
  }
  .cgr-speeches-list-item__body-info .speaker-panel {
    font-size: 12px;
  }
  .cgr-speeches-list-item__body-action-panel > *:not(:last-child) {
    margin-right: 10px;
  }
  .cgr-about blockquote {
    margin: 0;
  }
}

@media (max-width: 450px) {
  .cgr-navbar__logo {
    width: 150px;
  }
  .cgr-navbar__burger {
    width: 24px;
    height: 24px;
  }
  .cgr-action-panel__logout, .cgr-action-panel__login, .cgr-action-panel__register {
    width: 32px;
    height: 32px;
  }
  .cgr-card__header {
    font-size: 18px;
  }
  .cgr-card__body {
    font-size: 14px;
  }
  .cgr-minicard {
    min-width: 250px;
  }
  .cgr-minicard__header {
    font-size: 18px;
  }
  .cgr-minicard__body {
    font-size: 14px;
  }
  .cgr-worships {
    padding: 30px 15px;
  }
  .cgr-worships__header {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .cgr-archive {
    padding: 30px 15px;
  }
  .cgr-archive__header {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .cgr-archive__calendar {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .cgr-archive__events-title {
    font-size: 18px;
  }
  .cgr-archive-speech {
    padding: 30px 15px;
  }
  .cgr-archive-speech__header {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .cgr-archive-speech__calendar {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .cgr-archive-speech__events-title {
    font-size: 18px;
  }
  .cgr-about {
    padding: 15px;
  }
  .register-icon,
  .login-icon,
  .logout-icon {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .cgr-mediacard {
    min-width: 250px;
  }
  .cgr-mediacard__header {
    font-size: 14px;
  }
  .cgr-mediacard__player {
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .cgr-footer__menu {
    margin-left: 20px;
    margin-right: 20px;
  }
  .cgr-footer__links {
    font-size: 10px;
  }
  .cgr-speeches-list-item__labels {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cgr-speeches-list-item__labels-label {
    padding: 3px 6px;
    margin-bottom: 5px;
  }
  .cgr-speeches-list-item__labels-label:not(:last-child) {
    margin-right: 8px;
  }
  .cgr-speeches-list-item__labels-label > *:not(:last-child) {
    margin-right: 5px;
  }
  .cgr-speeches-list-item__deko {
    display: none;
  }
  .cgr-speeches-list-item__body-type-icon {
    height: 65px;
    width: 65px;
    margin-left: 0px;
  }
  .cgr-speeches-list-item__body-info {
    padding-left: 15px;
    padding-top: 0;
  }
  .cgr-speeches-list-item__body-info .title .title1 {
    font-size: 16px;
    line-height: 125%;
  }
  .cgr-speeches-list-item__body-action-panel > *:not(:last-child) {
    margin-right: 10px;
  }
}

.cgr-loading-icon {
  -webkit-animation: loading-animation 1s infinite linear;
          animation: loading-animation 1s infinite linear;
}

.cgr-waiting-panel {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(210, 210, 210, 0.75);
  z-index: 5;
}

.cgr-waiting-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes loading-animation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes loading-animation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/*# sourceMappingURL=site.css.map */