.flex-box {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .flex-box > .flex-align--auto {
    -ms-flex-item-align: auto;
    flex-item-align: auto;
    -webkit-align-self: auto;
    -ms-align-self: auto;
    align-self: auto; }
  .flex-box > .flex-align--start {
    -ms-flex-item-align: flex-start;
    flex-item-align: flex-start;
    -webkit-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start; }
  .flex-box > .flex-align--end {
    -ms-flex-item-align: flex-end;
    flex-item-align: flex-end;
    -webkit-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end; }
  .flex-box > .flex-align--center {
    -ms-flex-item-align: center;
    flex-item-align: center;
    -webkit-align-self: center;
    -ms-align-self: center;
    align-self: center; }
  .flex-box > .flex-align--baseline {
    -ms-flex-item-align: baseline;
    flex-item-align: baseline;
    -webkit-align-self: baseline;
    -ms-align-self: baseline;
    align-self: baseline; }
  .flex-box > .flex-align--stretch {
    -ms-flex-item-align: stretch;
    flex-item-align: stretch;
    -webkit-align-self: stretch;
    -ms-align-self: stretch;
    align-self: stretch; }

.flex-order--n-1 {
  -webkit-box-ordinal-group: 0;
  -ms-box-ordinal-group: 0;
  box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
  -ms-order: -1;
  order: -1; }
.flex-order--n0 {
  -webkit-box-ordinal-group: 1;
  -ms-box-ordinal-group: 1;
  box-ordinal-group: 1;
  -ms-flex-order: 0;
  -webkit-order: 0;
  -ms-order: 0;
  order: 0; }
.flex-order--n1 {
  -webkit-box-ordinal-group: 2;
  -ms-box-ordinal-group: 2;
  box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-order: 1;
  -ms-order: 1;
  order: 1; }
.flex-order--n2 {
  -webkit-box-ordinal-group: 3;
  -ms-box-ordinal-group: 3;
  box-ordinal-group: 3;
  -ms-flex-order: 2;
  -webkit-order: 2;
  -ms-order: 2;
  order: 2; }
.flex-order--n3 {
  -webkit-box-ordinal-group: 4;
  -ms-box-ordinal-group: 4;
  box-ordinal-group: 4;
  -ms-flex-order: 3;
  -webkit-order: 3;
  -ms-order: 3;
  order: 3; }
.flex-order--n4 {
  -webkit-box-ordinal-group: 5;
  -ms-box-ordinal-group: 5;
  box-ordinal-group: 5;
  -ms-flex-order: 4;
  -webkit-order: 4;
  -ms-order: 4;
  order: 4; }
.flex-order--n5 {
  -webkit-box-ordinal-group: 6;
  -ms-box-ordinal-group: 6;
  box-ordinal-group: 6;
  -ms-flex-order: 5;
  -webkit-order: 5;
  -ms-order: 5;
  order: 5; }

.flex-direction--row {
  -ms-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
.flex-direction--row-reverse {
  -ms-box-orient: horizontal;
  box-orient: horizontal;
  -ms-box-direction: reverse;
  box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
.flex-direction--column {
  -ms-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
.flex-direction--column-reverse {
  -ms-box-orient: vertical;
  box-orient: vertical;
  -ms-box-direction: reverse;
  box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.flex-h-align--start {
  -ms-box-pack: start;
  box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }
.flex-h-align--end {
  -ms-box-pack: end;
  box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end; }
.flex-h-align--center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }
.flex-h-align--between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }
.flex-h-align--around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around; }

.flex-wrap--nowrap {
  -ms-box-lines: single;
  box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
.flex-wrap--wrap {
  -ms-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-v-align--start {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start; }
.flex-v-align--end {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end; }
.flex-v-align--center {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center; }
.flex-v-align--between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between; }
.flex-v-align--around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around; }
.flex-v-align--stretch {
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch; }

.flex-v-align-items--start {
  -ms-box-align: start;
  box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start; }
.flex-v-align-items--end {
  -ms-box-align: end;
  box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end; }
.flex-v-align-items--center {
  -ms-box-align: center;
  box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center; }
.flex-v-align-items--baseline {
  -ms-box-align: baseline;
  box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline; }
.flex-v-align-items--stretch {
  -ms-box-align: stretch;
  box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch; }

.disklamer_vmfestival,
.disklamer {
  opacity: 0.95;
  position: fixed;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 400px;
  background: #222;
  color: #fff;
  padding: 15px;
  vertical-align: middle;
  z-index: 999;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  font-size: 12px; }
  .disklamer_vmfestival .ok_btn,
  .disklamer_vmfestival .vmfestival_btn,
  .disklamer_vmfestival .disklamer_btn,
  .disklamer .ok_btn,
  .disklamer .vmfestival_btn,
  .disklamer .disklamer_btn {
    text-decoration: none;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    max-width: 100px;
    margin: auto;
    background-color: #169bd5;
    color: #fff;
    font-size: 14px;
    transition: 0.25s all;
    -webkit-transition: 0.25s all; }
    .disklamer_vmfestival .ok_btn:hover,
    .disklamer_vmfestival .vmfestival_btn:hover,
    .disklamer_vmfestival .disklamer_btn:hover,
    .disklamer .ok_btn:hover,
    .disklamer .vmfestival_btn:hover,
    .disklamer .disklamer_btn:hover {
      opacity: 0.8; }

.soglasie {
  color: #ec663e !important;
  text-decoration: underline !important; }

#edit-legal {
  padding-bottom: 15px; }

.backdrop-default {
  background: #000 !important; }

.modal-default {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-box-align: center;
  box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: fixed  !important;
  top: 50% !important;
  left: 50%  !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

div.ctools-modal-content {
  width: auto !important;
  height: auto !important;
  background: transparent;
  border: 0; }
  div.ctools-modal-content .modal-header {
    background: transparent;
    position: absolute;
    z-index: 11;
    right: 15px;
    padding: 0;
    top: 15px;
    border: 0; }
    div.ctools-modal-content .modal-header .modal-title {
      display: none; }
    div.ctools-modal-content .modal-header .close {
      font-size: 0;
      line-height: 0;
      color: transparent; }
  div.ctools-modal-content .modal-content {
    margin: 0;
    width: 100% !important;
    height: 100% !important;
    padding: 2em; }

form[id*="vote-form"] > div {
  display: -webkit-box;
  display: -ms-box;
  display: box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  form[id*="vote-form"] > div > .item-list {
    -webkit-box-ordinal-group: 8;
    -ms-box-ordinal-group: 8;
    box-ordinal-group: 8;
    -ms-flex-order: 7;
    -webkit-order: 7;
    -ms-order: 7;
    order: 7; }
form[id*="vote-form"] .form-submit {
  background: #ec663e;
  border: 0;
  font-size: 18px;
  padding: 15px;
  max-width: 380px;
  width: 100%;
  font-weight: 700; }

/*# sourceMappingURL=custom.css.map */
