.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 200px;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open>.search>span,
.SumoSelect.open>.search>label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass,
.SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect>.optWrapper>.options li.opt label,
.SumoSelect>.CaptionCont,
.SumoSelect .select-all>label {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont,
.SumoSelect.open>.CaptionCont {
  box-shadow: 0 0 2px #7799D0;
  border-color: #7799D0;
}

.SumoSelect>.CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0;
}

.SumoSelect>.CaptionCont>span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect>.CaptionCont>span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect>.CaptionCont>label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect>.CaptionCont>label>i {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=');
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect>.optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
}

.SumoSelect.open>.optWrapper {
  top: 35px;
  display: block;
}

.SumoSelect.open>.optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect>.optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect>.optWrapper>.options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect>.optWrapper.okCancelInMulti>.options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect>.optWrapper.selall>.options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect>.optWrapper.selall.okCancelInMulti>.options {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options li.group.disabled>label {
  opacity: 0.5;
}

.SumoSelect>.optWrapper>.options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect>.optWrapper.multiple>.options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect>.optWrapper.isFloating>.options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect>.optWrapper>.options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.SumoSelect>.optWrapper>.options>li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect>.optWrapper.selall>.options>li.opt:first-child {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options>li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect>.optWrapper.okCancelInMulti>.options>li.opt:last-child {
  border-radius: 0;
}

.SumoSelect>.optWrapper>.options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect>.optWrapper>.options li.opt.sel,
.SumoSelect .select-all.sel {
  background-color: #a1c0e4;
}

.SumoSelect>.optWrapper>.options li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.SumoSelect>.optWrapper>.options li span {
  display: none;
}

.SumoSelect>.optWrapper>.options li.group>label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect>.optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect>.optWrapper>.options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect>.optWrapper>.options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5;
}


/*styling for multiple select*/
.SumoSelect>.optWrapper.multiple>.options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span,
.SumoSelect .select-all>span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect>.optWrapper.multiple>.options li.opt span i,
.SumoSelect .select-all>span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect>.optWrapper>.MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect>.optWrapper.multiple.isFloating>.MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls {
  display: block;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p {
  padding: 6px;
}

.SumoSelect>.optWrapper.multiple.okCancelInMulti>.MultiControls>p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p:hover {
  background-color: #f1f1f1;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}

.SumoSelect>.optWrapper.multiple>.MultiControls>p.btnCancel {
  border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect>.optWrapper.isFloating>.options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect>.optWrapper.multiple.isFloating>.options li.opt {
  padding-left: 35px;
}

.SumoSelect>.optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect>.optWrapper.multiple>.options li.opt.selected span i,
.SumoSelect .select-all.selected>span i,
.SumoSelect .select-all.partial>span i {
  background-color: rgb(17, 169, 17);
  box-shadow: none;
  border-color: transparent;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC');
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled>.CaptionCont {
  border-color: #ccc;
  box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all>label,
.SumoSelect .select-all>span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial>span i {
  background-color: #ccc;
}


/*styling for optgroups*/
.SumoSelect>.optWrapper>.options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}


.reset-all {
  padding: 5px 10px 5px 35px;
  border-bottom: 1px solid #CDCDCD;
}

.SumoSelect[is-selected="false"] .reset-all {
  opacity: 0.5;
  pointer-events: none;
}

.SumoSelect[is-selected="true"] .reset-all {
  opacity: 1;
  cursor: pointer;
  color: #7799D0;
}

.SumoSelect[is-selected="true"] .reset-all * {
  cursor: pointer;
}

.SumoSelect[is-selected="true"] .reset-all:hover {
  color: black;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08)
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1)
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px)
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff
}

.flatpickr-calendar:focus {
  outline: 0
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block
}

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9)
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0
    /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0
    /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit
}

.numInputWrapper {
  position: relative;
  height: auto
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block
}

.numInputWrapper input {
  width: 100%
}

.numInputWrapper input::-ms-clear {
  display: none
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1)
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2)
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%
}

.numInputWrapper span.arrowDown {
  top: 50%
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%
}

.numInputWrapper span svg {
  width: inherit;
  height: auto
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5)
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05)
}

.numInputWrapper:hover span {
  opacity: 1
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05)
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9)
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9)
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05)
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px
}

.flatpickr-days:focus {
  outline: 0
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1
}

.dayContainer+.dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6
}

.flatpickr-day.today {
  border-color: #959ea9
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1)
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7
}

.flatpickr-day.hidden {
  visibility: hidden
}

.rangeMode .flatpickr-day {
  margin-top: 1px
}

.flatpickr-weekwrapper {
  float: left
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee
}

.flatpickr-input[readonly] {
  cursor: pointer
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.medium-editor-anchor-preview,
.medium-editor-toolbar {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  z-index: 2000
}

@-webkit-keyframes medium-editor-image-loading {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes medium-editor-image-loading {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes medium-editor-pop-upwards {
  0% {
    opacity: 0;
    -webkit-transform: matrix(.97, 0, 0, 1, 0, 12);
    transform: matrix(.97, 0, 0, 1, 0, 12)
  }

  20% {
    opacity: .7;
    -webkit-transform: matrix(.99, 0, 0, 1, 0, 2);
    transform: matrix(.99, 0, 0, 1, 0, 2)
  }

  40% {
    opacity: 1;
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1)
  }

  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0)
  }
}

@keyframes medium-editor-pop-upwards {
  0% {
    opacity: 0;
    -webkit-transform: matrix(.97, 0, 0, 1, 0, 12);
    transform: matrix(.97, 0, 0, 1, 0, 12)
  }

  20% {
    opacity: .7;
    -webkit-transform: matrix(.99, 0, 0, 1, 0, 2);
    transform: matrix(.99, 0, 0, 1, 0, 2)
  }

  40% {
    opacity: 1;
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1)
  }

  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0)
  }
}

.medium-editor-anchor-preview {
  left: 0;
  line-height: 1.4;
  max-width: 280px;
  position: absolute;
  text-align: center;
  top: 0;
  word-break: break-all;
  word-wrap: break-word;
  visibility: hidden
}

.medium-editor-anchor-preview a {
  color: #fff;
  display: inline-block;
  margin: 5px 5px 10px
}

.medium-editor-placeholder-relative:after,
.medium-editor-placeholder:after {
  content: attr(data-placeholder) !important;
  white-space: pre;
  padding: inherit;
  margin: inherit;
  font-style: italic
}

.medium-editor-anchor-preview-active {
  visibility: visible
}

.medium-editor-dragover {
  background: #ddd
}

.medium-editor-image-loading {
  -webkit-animation: medium-editor-image-loading 1s infinite ease-in-out;
  animation: medium-editor-image-loading 1s infinite ease-in-out;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  height: 40px;
  width: 40px
}

.medium-editor-placeholder {
  position: relative
}

.medium-editor-placeholder:after {
  position: absolute;
  left: 0;
  top: 0
}

.medium-editor-placeholder-relative,
.medium-editor-placeholder-relative:after {
  position: relative
}

.medium-toolbar-arrow-over:before,
.medium-toolbar-arrow-under:after {
  border-style: solid;
  content: '';
  display: block;
  height: 0;
  left: 50%;
  margin-left: -8px;
  position: absolute;
  width: 0
}

.medium-toolbar-arrow-under:after {
  border-width: 8px 8px 0
}

.medium-toolbar-arrow-over:before {
  border-width: 0 8px 8px;
  top: -8px
}

.medium-editor-toolbar {
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden
}

.medium-editor-toolbar ul {
  margin: 0;
  padding: 0
}

.medium-editor-toolbar li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0
}

.medium-editor-toolbar li button {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 1.33;
  margin: 0;
  padding: 15px;
  text-decoration: none
}

.medium-editor-toolbar li button:focus {
  outline: 0
}

.medium-editor-toolbar li .medium-editor-action-underline {
  text-decoration: underline
}

.medium-editor-toolbar li .medium-editor-action-pre {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
  font-weight: 100;
  padding: 15px 0
}

.medium-editor-toolbar-active {
  visibility: visible
}

.medium-editor-sticky-toolbar {
  position: fixed;
  top: 1px
}

.medium-editor-relative-toolbar {
  position: relative
}

.medium-editor-toolbar-active.medium-editor-stalker-toolbar {
  -webkit-animation: medium-editor-pop-upwards 160ms forwards linear;
  animation: medium-editor-pop-upwards 160ms forwards linear
}

.medium-editor-action-bold {
  font-weight: bolder
}

.medium-editor-action-italic {
  font-style: italic
}

.medium-editor-toolbar-form {
  display: none
}

.medium-editor-toolbar-form a,
.medium-editor-toolbar-form input {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.medium-editor-toolbar-form .medium-editor-toolbar-form-row {
  line-height: 14px;
  margin-left: 5px;
  padding-bottom: 5px
}

.medium-editor-toolbar-form .medium-editor-toolbar-input,
.medium-editor-toolbar-form label {
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  padding: 6px;
  width: 316px;
  display: inline-block
}

.medium-editor-toolbar-form .medium-editor-toolbar-input:focus,
.medium-editor-toolbar-form label:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  outline: 0
}

.medium-editor-toolbar-form a {
  display: inline-block;
  font-size: 24px;
  font-weight: bolder;
  margin: 0 10px;
  text-decoration: none
}

.medium-editor-toolbar-form-active {
  display: block
}

.medium-editor-toolbar-actions:after {
  clear: both;
  content: "";
  display: table
}

.medium-editor-element {
  word-wrap: break-word;
  min-height: 30px
}

.medium-editor-element img {
  max-width: 100%
}

.medium-editor-element sub {
  vertical-align: sub
}

.medium-editor-element sup {
  vertical-align: super
}

.medium-editor-hidden {
  display: none
}

.medium-toolbar-arrow-under:after {
  border-color: #242424 transparent transparent transparent;
  top: 50px;
}

.medium-toolbar-arrow-over:before {
  border-color: transparent transparent #242424 transparent;
  top: -8px;
}

.medium-editor-toolbar {
  background-color: #242424;
  background: -webkit-linear-gradient(top, #242424, rgba(36, 36, 36, 0.75));
  background: linear-gradient(to bottom, #242424, rgba(36, 36, 36, 0.75));
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 0 3px #000;
}

.medium-editor-toolbar li button {
  background-color: #242424;
  background: -webkit-linear-gradient(top, #242424, rgba(36, 36, 36, 0.89));
  background: linear-gradient(to bottom, #242424, rgba(36, 36, 36, 0.89));
  border: 0;
  border-right: 1px solid #000;
  border-left: 1px solid #333;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  height: 50px;
  min-width: 50px;
  -webkit-transition: background-color .2s ease-in;
  transition: background-color .2s ease-in;
}

.medium-editor-toolbar li button:hover {
  background-color: #000;
  color: yellow;
}

.medium-editor-toolbar li .medium-editor-button-first {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.medium-editor-toolbar li .medium-editor-button-last {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.medium-editor-toolbar li .medium-editor-button-active {
  background-color: #000;
  background: -webkit-linear-gradient(top, #242424, rgba(0, 0, 0, 0.89));
  background: linear-gradient(to bottom, #242424, rgba(0, 0, 0, 0.89));
  color: #fff;
}

.medium-editor-toolbar-form {
  background: #242424;
  border-radius: 5px;
  color: #999;
}

.medium-editor-toolbar-form .medium-editor-toolbar-input {
  background: #242424;
  box-sizing: border-box;
  color: #ccc;
  height: 50px;
}

.medium-editor-toolbar-form a {
  color: #fff;
}

.medium-editor-toolbar-anchor-preview {
  background: #242424;
  border-radius: 5px;
  color: #fff;
}

.medium-editor-placeholder:after {
  color: #b3b3b1;
}

.medium-editor-table-builder {
  display: none;
  position: absolute;
  left: 0;
  top: 101%;
}

.medium-editor-table-builder * {
  box-sizing: border-box;
}

.medium-editor-table-builder-grid {
  border: 1px solid #000;
  border-radius: 3px;
  overflow: hidden;
}

.medium-editor-table-builder-cell {
  background-color: #333;
  border: 1px solid #000;
  display: block;
  float: left;
  height: 16px;
  margin: 0;
  width: 16px;
}

.medium-editor-table-builder-cell.active {
  background-color: #ccc;
}

.medium-editor-table-builder-cell:hover {
  background-color: #ccc;
}

.medium-editor-table {
  border-collapse: collapse;
  resize: both;
  table-layout: fixed;
}

.medium-editor-table,
.medium-editor-table td {
  border: 1px dashed #e3e3e3;
}

.medium-editor-table-builder-toolbar {
  display: block;
  min-width: 162px;
  background-color: #333;
  font-size: 0.8em;
  color: white;
}

.medium-editor-table-builder-toolbar span {
  width: 45px;
  display: block;
  float: left;
  margin-left: 5px;
}

.medium-editor-table-builder-toolbar button {
  margin: 0 3px;
  background-color: #333;
  border: 0;
  width: 30px;
  cursor: pointer;
}

.medium-editor-table-builder-toolbar button i {
  color: white;
}

/*! 
 * medium-editor-insert-plugin v2.5.1 - jQuery insert plugin for MediumEditor
 *
 * http://linkesch.com/medium-editor-insert-plugin
 * 
 * Copyright (c) 2014 Pavel Linkesch (http://linkesch.com)
 * Released under the MIT license
 */

.medium-insert-images,
.mediumInsert {
  text-align: center
}

.medium-insert-images figure,
.mediumInsert figure {
  margin: 0;
  display: block
}

.medium-insert-images figure img,
.mediumInsert figure img {
  max-width: 100%;
  margin-top: 1em;
  vertical-align: top
}

.medium-insert-images figure:first-child img,
.mediumInsert figure:first-child img {
  margin-top: 0
}

.medium-insert-images-left.mediumInsert,
.medium-insert-images.medium-insert-images-left,
.mediumInsert.small {
  max-width: 33.33%;
  float: left;
  margin: 0 30px 20px 0
}

.medium-insert-images-right.mediumInsert,
.medium-insert-images.medium-insert-images-right {
  max-width: 33.33%;
  float: right;
  margin: 0 0 20px 30px
}

.medium-insert-images-grid.mediumInsert,
.medium-insert-images.medium-insert-images-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  margin: .5em -.5em
}

.medium-insert-images-grid.mediumInsert figure,
.medium-insert-images.medium-insert-images-grid figure {
  width: 33.33%;
  display: inline-block
}

.medium-insert-images-grid.mediumInsert figure img,
.medium-insert-images.medium-insert-images-grid figure img {
  max-width: calc(100% - 1em);
  margin: .5em
}

.medium-insert-embeds,
.mediumInsert-embeds {
  text-align: center;
  margin: 1em 0;
  position: relative
}

.medium-insert-embeds div,
.medium-insert-embeds iframe,
.mediumInsert-embeds div,
.mediumInsert-embeds iframe {
  margin: 0 auto !important
}

.medium-insert-embeds-left.mediumInsert-embeds,
.medium-insert-embeds.medium-insert-embeds-left {
  width: 33.33%;
  float: left;
  margin: 0 30px 20px 0
}

.medium-insert-embeds-right.mediumInsert-embeds,
.medium-insert-embeds.medium-insert-embeds-right {
  width: 33.33%;
  float: right;
  margin: 0 0 20px 30px
}

.medium-insert-embeds figure,
.medium-insert-images figure,
.mediumInsert figure,
.mediumInsert-embeds figure {
  position: relative
}

.medium-insert-embeds figure figcaption,
.medium-insert-images figure figcaption,
.mediumInsert figure figcaption,
.mediumInsert-embeds figure figcaption {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin: 10px 0;
  color: #ccc;
  font-size: .8em;
  font-style: italic;
  outline: 0 solid transparent
}

.medium-editor-insert-plugin:focus,
.medium-insert-embeds figure figcaption:focus,
.medium-insert-images figure figcaption:focus,
.mediumInsert figure figcaption:focus,
.mediumInsert-embeds figure figcaption:focus {
  outline: 0 solid transparent
}

.medium-editor-insert-plugin {
  outline: 0 solid transparent
}

.medium-editor-insert-plugin .clearfix:after,
.medium-editor-insert-plugin .clearfix:before,
.medium-editor-insert-plugin:after,
.medium-editor-insert-plugin:before {
  content: " ";
  display: table;
  clear: both
}

.medium-editor-insert-plugin p {
  margin: 1em 0
}

.medium-editor-insert-plugin progress {
  display: block;
  margin: 1em auto
}

.medium-editor-insert-plugin .hide {
  display: none
}

.medium-editor-insert-plugin.medium-editor-placeholder:after {
  padding: 1em 0
}

.medium-editor-insert-plugin .medium-insert-buttons {
  position: absolute;
  color: #ddd;
  font-size: .9em
}

.medium-editor-insert-plugin .medium-insert-buttons button {
  display: block;
  cursor: pointer;
  color: #ddd;
  background: #fff;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #ddd;
  line-height: 30px;
  text-align: center;
  padding: 0
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show {
  font-size: 25px;
  transform: rotate(0);
  transition: transform 100ms
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show span {
  display: block;
  margin-top: -4px
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show.medium-insert-buttons-rotate {
  transition: transform 250ms;
  transform: rotate(45deg)
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  position: relative;
  z-index: 2;
  left: 55px;
  top: -32px
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li {
  display: inline-block;
  margin: 0 5px
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-addons li .fa {
  font-size: 15px
}

.medium-insert-caption-placeholder {
  position: relative
}

.medium-insert-caption-placeholder:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  content: attr(data-placeholder)
}

.dragging {
  cursor: move
}

.medium-insert-image-active {
  outline: 2px solid #000
}

.medium-insert-images-toolbar {
  display: none
}

.medium-insert-images,
.mediumInsert {
  margin: 1em 0
}

.medium-insert-images .dragged,
.mediumInsert .dragged {
  position: absolute;
  top: 0;
  opacity: .5;
  z-index: 2000
}

.medium-insert-images .placeholder,
.mediumInsert .placeholder {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0
}

.medium-insert-images .medium-insert-images-progress,
.mediumInsert .medium-insert-images-progress {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, .4)
}

.medium-insert-embeds-input {
  position: relative;
  color: #ccc;
  z-index: 1;
  text-align: left
}

.medium-insert-embeds-placeholder {
  position: relative
}

.medium-insert-embeds-placeholder:after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-placeholder);
  color: #ccc
}

.medium-insert-embeds-selected .medium-insert-embed {
  outline: 2px solid #000
}

.medium-insert-embeds-toolbar {
  display: none
}

.medium-insert-embeds .medium-insert-embeds-overlay,
.mediumInsert-embeds .medium-insert-embeds-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

/*!
 * Fotorama 4.6.4 | http://fotorama.io/license/
 */
.fotorama__arr:focus:after,
.fotorama__fullscreen-icon:focus:after,
.fotorama__html,
.fotorama__img,
.fotorama__nav__frame:focus .fotorama__dot:after,
.fotorama__nav__frame:focus .fotorama__thumb:after,
.fotorama__stage__frame,
.fotorama__stage__shaft,
.fotorama__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0
}

.fotorama--fullscreen,
.fotorama__img {
  max-width: 99999px !important;
  max-height: 99999px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important
}

.fotorama__wrap .fotorama__grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab
}

.fotorama__grabbing * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing
}

.fotorama__spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important
}

.fotorama__wrap--css3 .fotorama__arr,
.fotorama__wrap--css3 .fotorama__fullscreen-icon,
.fotorama__wrap--css3 .fotorama__nav__shaft,
.fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border,
.fotorama__wrap--css3 .fotorama__video-close,
.fotorama__wrap--css3 .fotorama__video-play {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.fotorama__caption,
.fotorama__nav:after,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__stage:before,
.fotorama__wrap--css3 .fotorama__html,
.fotorama__wrap--css3 .fotorama__nav,
.fotorama__wrap--css3 .fotorama__spinner,
.fotorama__wrap--css3 .fotorama__stage,
.fotorama__wrap--css3 .fotorama__stage .fotorama__img,
.fotorama__wrap--css3 .fotorama__stage__frame {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.fotorama__arr:focus,
.fotorama__fullscreen-icon:focus,
.fotorama__nav__frame {
  outline: 0
}

.fotorama__arr:focus:after,
.fotorama__fullscreen-icon:focus:after,
.fotorama__nav__frame:focus .fotorama__dot:after,
.fotorama__nav__frame:focus .fotorama__thumb:after {
  content: '';
  border-radius: inherit;
  background-color: rgba(0, 175, 234, .5)
}

.fotorama__wrap--video .fotorama__stage,
.fotorama__wrap--video .fotorama__stage__frame--video,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,
.fotorama__wrap--video .fotorama__stage__shaft {
  -webkit-transform: none !important;
  transform: none !important
}

.fotorama__wrap--css3 .fotorama__nav__shaft,
.fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border {
  transition-property: -webkit-transform, width;
  transition-property: transform, width;
  transition-timing-function: cubic-bezier(0.1, 0, .25, 1);
  transition-duration: 0ms
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__no-select,
.fotorama__video-close,
.fotorama__video-play,
.fotorama__wrap {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.fotorama__select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text
}

.fotorama__nav,
.fotorama__nav__frame {
  margin: auto;
  padding: 0
}

.fotorama__caption__wrap,
.fotorama__nav__frame,
.fotorama__nav__shaft {
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1
}

.fotorama__nav__frame,
.fotorama__thumb-border {
  box-sizing: content-box
}

.fotorama__caption__wrap {
  box-sizing: border-box
}

.fotorama--hidden,
.fotorama__load {
  position: absolute;
  left: -99999px;
  top: -99999px;
  z-index: -1
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__nav,
.fotorama__nav__frame,
.fotorama__nav__shaft,
.fotorama__stage__frame,
.fotorama__stage__shaft,
.fotorama__video-close,
.fotorama__video-play {
  -webkit-tap-highlight-color: transparent
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close,
.fotorama__video-play {
  background: url(fotorama.png) no-repeat
}

@media (-webkit-min-device-pixel-ratio:1.5),
(min-resolution:2dppx) {

  .fotorama__arr,
  .fotorama__fullscreen-icon,
  .fotorama__video-close,
  .fotorama__video-play {
    background: url(fotorama@2x.png) 0 0/96px 160px no-repeat
  }
}

.fotorama__thumb {
  background-color: #7f7f7f;
  background-color: rgba(127, 127, 127, .2)
}

@media print {

  .fotorama__arr,
  .fotorama__fullscreen-icon,
  .fotorama__thumb-border,
  .fotorama__video-close,
  .fotorama__video-play {
    background: none !important
  }
}

.fotorama {
  min-width: 1px;
  overflow: hidden
}

.fotorama:not(.fotorama--unobtrusive)>*:not(:first-child) {
  display: none
}

.fullscreen {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #000
}

.fotorama--fullscreen {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  float: none !important;
  z-index: 2147483647 !important;
  background: #000;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important
}

.fotorama--fullscreen .fotorama__nav,
.fotorama--fullscreen .fotorama__stage {
  background: #000
}

.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  position: relative;
  direction: ltr;
  z-index: 0
}

.fotorama__wrap--rtl .fotorama__stage__frame {
  direction: rtl
}

.fotorama__nav,
.fotorama__stage {
  overflow: hidden;
  position: relative;
  max-width: 100%
}

.fotorama__wrap--pan-y {
  -ms-touch-action: pan-y
}

.fotorama__wrap .fotorama__pointer {
  cursor: pointer
}

.fotorama__wrap--slide .fotorama__stage__frame {
  opacity: 1 !important
}

.fotorama__stage__frame {
  overflow: hidden
}

.fotorama__stage__frame.fotorama__active {
  z-index: 8
}

.fotorama__wrap--fade .fotorama__stage__frame {
  display: none
}

.fotorama__wrap--fade .fotorama__fade-front,
.fotorama__wrap--fade .fotorama__fade-rear,
.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active {
  display: block;
  left: 0;
  top: 0
}

.fotorama__wrap--fade .fotorama__fade-front {
  z-index: 8
}

.fotorama__wrap--fade .fotorama__fade-rear {
  z-index: 7
}

.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
  z-index: 9
}

.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
  display: none
}

.fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border: none !important
}

.fotorama__error .fotorama__img,
.fotorama__loaded .fotorama__img {
  -ms-filter: "alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img,
.fotorama__img--full {
  display: none
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
  display: block
}

.fotorama__wrap--only-active .fotorama__nav,
.fotorama__wrap--only-active .fotorama__stage {
  max-width: 99999px !important
}

.fotorama__wrap--only-active .fotorama__stage__frame {
  visibility: hidden
}

.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
  visibility: visible
}

.fotorama__nav {
  font-size: 0;
  line-height: 0;
  text-align: center;
  display: none;
  white-space: nowrap;
  z-index: 5
}

.fotorama__nav__shaft {
  position: relative;
  left: 0;
  top: 0;
  text-align: left
}

.fotorama__nav__frame {
  position: relative;
  cursor: pointer
}

.fotorama__nav--dots {
  display: block
}

.fotorama__nav--dots .fotorama__nav__frame {
  width: 18px;
  height: 30px
}

.fotorama__nav--dots .fotorama__nav__frame--thumb,
.fotorama__nav--dots .fotorama__thumb-border {
  display: none
}

.fotorama__nav--thumbs {
  display: block
}

.fotorama__nav--thumbs .fotorama__nav__frame {
  padding-left: 0 !important
}

.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
  padding-right: 0 !important
}

.fotorama__nav--thumbs .fotorama__nav__frame--dot {
  display: none
}

.fotorama__dot {
  display: block;
  width: 4px;
  height: 4px;
  position: relative;
  top: 12px;
  left: 6px;
  border-radius: 6px;
  border: 1px solid #7f7f7f
}

.fotorama__nav__frame:focus .fotorama__dot:after {
  padding: 1px;
  top: -1px;
  left: -1px
}

.fotorama__nav__frame.fotorama__active .fotorama__dot {
  width: 0;
  height: 0;
  border-width: 3px
}

.fotorama__nav__frame.fotorama__active .fotorama__dot:after {
  padding: 3px;
  top: -3px;
  left: -3px
}

.fotorama__thumb {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%
}

.fotorama__nav__frame:focus .fotorama__thumb {
  z-index: 2
}

.fotorama__thumb-border {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: #00afea;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .25), rgba(64, 64, 64, .1))
}

.fotorama__caption {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000
}

.fotorama__caption a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, .5)
}

.fotorama__caption a:hover {
  color: #333;
  border-color: rgba(51, 51, 51, .5)
}

.fotorama__wrap--rtl .fotorama__caption {
  left: auto;
  right: 0
}

.fotorama__wrap--no-captions .fotorama__caption,
.fotorama__wrap--video .fotorama__caption {
  display: none
}

.fotorama__caption__wrap {
  background-color: #fff;
  background-color: rgba(255, 255, 255, .9);
  padding: 5px 10px
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

.fotorama__wrap--css3 .fotorama__spinner {
  -webkit-animation: spinner 24s infinite linear;
  animation: spinner 24s infinite linear
}

.fotorama__wrap--css3 .fotorama__html,
.fotorama__wrap--css3 .fotorama__stage .fotorama__img {
  transition-property: opacity;
  transition-timing-function: linear;
  transition-duration: .3s
}

.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0
}

.fotorama__select {
  cursor: auto
}

.fotorama__video {
  top: 32px;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 10
}

@-moz-document url-prefix() {
  .fotorama__active {
    box-shadow: 0 0 0 transparent
  }
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close,
.fotorama__video-play {
  position: absolute;
  z-index: 11;
  cursor: pointer
}

.fotorama__arr {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  margin-top: -16px
}

.fotorama__arr--prev {
  left: 2px;
  background-position: 0 0
}

.fotorama__arr--next {
  right: 2px;
  background-position: -32px 0
}

.fotorama__arr--disabled {
  pointer-events: none;
  cursor: default;
  *display: none;
  opacity: .1
}

.fotorama__fullscreen-icon {
  width: 32px;
  height: 32px;
  top: 2px;
  right: 2px;
  background-position: 0 -32px;
  z-index: 20
}

.fotorama__arr:focus,
.fotorama__fullscreen-icon:focus {
  border-radius: 50%
}

.fotorama--fullscreen .fotorama__fullscreen-icon {
  background-position: -32px -32px
}

.fotorama__video-play {
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  margin-left: -48px;
  margin-top: -48px;
  background-position: 0 -64px;
  opacity: 0
}

.fotorama__wrap--css2 .fotorama__video-play,
.fotorama__wrap--video .fotorama__stage .fotorama__video-play {
  display: none
}

.fotorama__error .fotorama__video-play,
.fotorama__loaded .fotorama__video-play,
.fotorama__nav__frame .fotorama__video-play {
  opacity: 1;
  display: block
}

.fotorama__nav__frame .fotorama__video-play {
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  background-position: -64px -32px
}

.fotorama__video-close {
  width: 32px;
  height: 32px;
  top: 0;
  right: 0;
  background-position: -64px 0;
  z-index: 20;
  opacity: 0
}

.fotorama__wrap--css2 .fotorama__video-close {
  display: none
}

.fotorama__wrap--css3 .fotorama__video-close {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0)
}

.fotorama__wrap--video .fotorama__video-close {
  display: block;
  opacity: 1
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 0
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  opacity: 1
}

.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--video .fotorama__fullscreen-icon {
  opacity: 0 !important
}

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  display: none
}

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  display: block
}

.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
  display: none !important
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus) {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0)
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus) {
  -webkit-transform: translate3d(-48px, 0, 0);
  transform: translate3d(-48px, 0, 0)
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  -webkit-transform: translate3d(48px, 0, 0);
  transform: translate3d(48px, 0, 0)
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
  -webkit-transform: translate3d(32px, -32px, 0) !important;
  transform: translate3d(32px, -32px, 0) !important
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
  -webkit-transform: translate3d(-48px, 0, 0) !important;
  transform: translate3d(-48px, 0, 0) !important
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
  -webkit-transform: translate3d(48px, 0, 0) !important;
  transform: translate3d(48px, 0, 0) !important
}

.fotorama__wrap--css3 .fotorama__arr:not(:focus),
.fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus),
.fotorama__wrap--css3 .fotorama__video-close:not(:focus),
.fotorama__wrap--css3 .fotorama__video-play:not(:focus) {
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  transition-duration: .3s
}

.fotorama__nav:after,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__stage:before {
  content: "";
  display: block;
  position: absolute;
  text-decoration: none;
  top: 0;
  bottom: 0;
  width: 10px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 1px 100%, 5px 100%
}

.fotorama__nav:before,
.fotorama__stage:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .2) 25%, rgba(0, 0, 0, .3) 75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, .4), transparent);
  background-position: 0 0, 0 0;
  left: -10px
}

.fotorama__nav.fotorama__shadows--left:before,
.fotorama__stage.fotorama__shadows--left:before {
  left: 0
}

.fotorama__nav:after,
.fotorama__stage:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .2) 25%, rgba(0, 0, 0, .3) 75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, .4), transparent);
  background-position: 100% 0, 100% 0;
  right: -10px
}

.fotorama__nav.fotorama__shadows--right:after,
.fotorama__stage.fotorama__shadows--right:after {
  right: 0
}

.fotorama--fullscreen .fotorama__nav:after,
.fotorama--fullscreen .fotorama__nav:before,
.fotorama--fullscreen .fotorama__stage:after,
.fotorama--fullscreen .fotorama__stage:before,
.fotorama__wrap--fade .fotorama__stage:after,
.fotorama__wrap--fade .fotorama__stage:before,
.fotorama__wrap--no-shadows .fotorama__nav:after,
.fotorama__wrap--no-shadows .fotorama__nav:before,
.fotorama__wrap--no-shadows .fotorama__stage:after,
.fotorama__wrap--no-shadows .fotorama__stage:before {
  display: none
}

@charset "UTF-8";







@font-face {
  font-family: 'PT Sans';
  src: url("PTS75F-webfont.eot");
  src: url("PTS75F-webfont.eot?#iefix") format("embedded-opentype"), url("PTS75F-webfont.woff") format("woff"), url("PTS75F-webfont.ttf") format("truetype"), url("PTS75F-webfont.svg#pt_sansbold") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'PT Sans';
  src: url("PTS76F-webfont.eot");
  src: url("PTS76F-webfont.eot?#iefix") format("embedded-opentype"), url("PTS76F-webfont.woff") format("woff"), url("PTS76F-webfont.ttf") format("truetype"), url("PTS76F-webfont.svg#pt_sansbold_italic") format("svg");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'PT Sans';
  src: url("PTS56F-webfont.eot");
  src: url("PTS56F-webfont.eot?#iefix") format("embedded-opentype"), url("PTS56F-webfont.woff") format("woff"), url("PTS56F-webfont.ttf") format("truetype"), url("PTS56F-webfont.svg#pt_sansitalic") format("svg");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'PT Sans';
  src: url("PTS55F-webfont.eot");
  src: url("PTS55F-webfont.eot?#iefix") format("embedded-opentype"), url("PTS55F-webfont.woff") format("woff"), url("PTS55F-webfont.ttf") format("truetype"), url("PTS55F-webfont.svg#pt_sansregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: #282828;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

body.site {
  background-color: #f1f1f1;
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

body.__special.site {
  background-color: white;
}

a {
  text-decoration: none;
}

.container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.container:after {
  content: " ";
  display: block;
  clear: both;
}

.header {
  margin-top: 30px;
}

.header__people {
  margin-top: 10px;
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
}

.header__people_avatar {
  width: 50px;
  height: 50px;
  float: left;
}

.header__people_avatar img {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.header__people_name {
  margin-left: 15px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  margin-left: 15px;
  padding-top: 15px;
  display: inline-block;
}

.header__people_name a {
  color: rgba(255, 255, 255, 0.5);
}

.header__people_name a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.header__logo {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
  text-align: center;
}

.header__logo-svg {
  height: 80px;
  width: 265px;
}

.header__logout {
  margin-top: 10px;
  width: 15.25423729%;
  float: left;
  margin-right: 1.69491525%;
  float: right;
  margin-right: 0;
}

.navigation {
  background-color: white;
  margin-top: 30px;
  border-radius: 3px;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.navigation__col {
  padding: 20px 0;
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: rgba(40, 40, 40, 0.9);
  width: 33.33333333%;
  float: left;
}

.navigation__col .material-icons {
  vertical-align: middle;
}

.navigation__col:first-child {
  background-color: #E5C41D;
  border-radius: 3px 0 0 3px;
}

.navigation__col:last-child {
  float: right;
  margin-right: 0;
  color: rgba(229, 196, 29, 0.9);
}

.navigation__col:hover {
  background-color: rgba(40, 40, 40, 0.05);
}

.sidebar_panel {
  margin-top: 30px;
  width: 32.20338983%;
  float: left;
  margin-right: 1.69491525%;
}

.sidebar_panel__title {
  margin-bottom: 30px;
}

.sidebar_panel__title-icon {
  color: rgba(229, 196, 29, 0.9);
}

.sidebar_panel__title-text {
  font-family: "PT Sans", times, sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebar_panel__comments .comment_item {
  width: 100%;
  border-bottom: solid 1px rgba(89, 89, 89, 0.5);
  display: table;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.sidebar_panel__comments .comment_item_body {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebar_panel__comments .comment_item_meta__user {
  float: left;
}

.sidebar_panel__comments .comment_item_meta__user-avatar {
  width: 18px;
  height: 18px;
  float: left;
}

.sidebar_panel__comments .comment_item_meta__user-avatar img {
  width: 18px;
  height: 18px;
  border-radius: 9px;
}

.sidebar_panel__comments .comment_item_meta__user-name {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(89, 89, 89, 0.9);
  float: left;
  margin-left: 10px;
}

.sidebar_panel__comments .comment_item_meta__created {
  float: right;
}

.sidebar_panel__comments .comment_item_meta__created-icon {
  color: rgba(229, 196, 29, 0.9);
  float: left;
}

.sidebar_panel__comments .comment_item_meta__created-time {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(89, 89, 89, 0.9);
  float: left;
  margin-left: 10px;
}

.sidebar_panel__comments .comment_item:last-child {
  border-bottom: none;
}

.sidebar_panel__comments .comment_item:last-child::after {
  content: '';
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 50px;
  background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.15), #282828);
  z-index: 1;
}

.sidebar_panel .comments_all {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 20px;
}

.sidebar_panel .comments_all a {
  color: rgba(229, 196, 29, 0.9);
}

.sidebar_panel .back_site {
  display: inline-block;
  margin-top: 30px;
  opacity: .7;
}

.sidebar_panel .back_site:hover {
  opacity: 1;
}

.sidebar_panel .back_site__logo {
  height: 30px;
  width: 17px;
  float: left;
}

.sidebar_panel .back_site__text {
  float: left;
  margin-left: 15px;
  width: 150px;
  font-family: "PT Sans", times, sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.right-content {
  margin: 30px 0;
  width: 66.10169492%;
  float: right;
  margin-right: 0;
}

.right-content .title {
  width: 91.52542373%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  float: left;
}

.right-content .go-all {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 20px;
}

.right-content .go-all a {
  color: rgba(229, 196, 29, 0.9);
}

.right-content .plus {
  width: 6.77966102%;
  float: right;
  margin-right: 0;
  float: right;
}

.right-content .plus_icon {
  color: rgba(229, 196, 29, 0.9);
}

.news-list {
  display: block;
}

.news-list .news_item {
  border-bottom: solid 1px rgba(89, 89, 89, 0.5);
  display: table;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.news-list .news_item .news_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.news-list .news_item .news_title a {
  color: rgba(255, 255, 255, 0.5);
}

.news-list .news_item .news_meta__user {
  margin-right: 15px;
  float: left;
}

.news-list .news_item .news_meta__user-avatar {
  width: 18px;
  height: 18px;
  float: left;
}

.news-list .news_item .news_meta__user-avatar img {
  width: 18px;
  height: 18px;
  border-radius: 9px;
}

.news-list .news_item .news_meta__user-name,
.news-list .news_item .news_meta__created-time,
.news-list .news_item .news_meta__view-count,
.news-list .news_item .news_meta__comments-count {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(89, 89, 89, 0.9);
  float: left;
  margin-left: 10px;
}

.news-list .news_item .news_meta__created {
  margin-right: 15px;
  float: left;
}

.news-list .news_item .news_meta__created-icon,
.news-list .news_item .news_meta__view-icon,
.news-list .news_item .news_meta__comments-icon {
  color: rgba(229, 196, 29, 0.9);
  float: left;
}

.news-list .news_item .news_meta__view {
  margin-right: 15px;
  float: left;
}

.news-list .news_item .news_meta__comments {
  margin-right: 15px;
  float: left;
}

.news-list .news_item:last-child {
  border-bottom: none;
}

.news-list .news_item:last-child::after {
  content: '';
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 50px;
  background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.15), #282828);
  z-index: 1;
}

.review-list {
  display: block;
}

.review-list .review_item {
  border-bottom: solid 1px rgba(89, 89, 89, 0.5);
  display: table;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.review-list .review_item .review_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.review-list .review_item .review_title a {
  color: rgba(255, 255, 255, 0.5);
}

.review-list .review_item .review_meta__user {
  margin-right: 15px;
  float: left;
}

.review-list .review_item .review_meta__user-avatar {
  width: 18px;
  height: 18px;
  float: left;
}

.review-list .review_item .review_meta__user-avatar img {
  width: 18px;
  height: 18px;
  border-radius: 9px;
}

.review-list .review_item .review_meta__user-name,
.review-list .review_item .review_meta__created-time,
.review-list .review_item .review_meta__view-count,
.review-list .review_item .review_meta__comments-count {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(89, 89, 89, 0.9);
  float: left;
  margin-left: 10px;
}

.review-list .review_item .review_meta__created {
  margin-right: 15px;
  float: left;
}

.review-list .review_item .review_meta__created-icon,
.review-list .review_item .review_meta__view-icon,
.review-list .review_item .review_meta__comments-icon {
  color: rgba(229, 196, 29, 0.9);
  float: left;
}

.review-list .review_item .review_meta__view {
  margin-right: 15px;
  float: left;
}

.review-list .review_item .review_meta__comments {
  margin-right: 15px;
  float: left;
}

.review-list .review_item:last-child {
  border-bottom: none;
}

.review-list .review_item:last-child::after {
  content: '';
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 50px;
  background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.15), #282828);
  z-index: 1;
}

.habs-list {
  display: inline-block;
  width: 100%;
}

.habs-list .hab-item {
  border-bottom: solid 1px rgba(89, 89, 89, 0.5);
  display: table;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  width: 100%;
}

.habs-list .hab-item .hab_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.habs-list .hab-item .hab_title a {
  color: rgba(255, 255, 255, 0.5);
}

.habs-list .hab-item .hab_kids {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(229, 196, 29, 0.9);
  float: left;
}

.habs-list .hab-item .hab_kids a {
  color: rgba(229, 196, 29, 0.9);
}

.habs-list .hab-item .hab_karma {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.5);
  float: left;
  margin-left: 10px;
}

.habs-list .hab-item:last-child {
  border-bottom: none;
}

.habs-list .hab-item:last-child::after {
  content: '';
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 40px;
  background-image: linear-gradient(to bottom, rgba(40, 40, 40, 0.15), #282828);
  z-index: 1;
}

.admin_active-habs {
  display: inline-block;
}

.admin_active-habs__item {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(229, 196, 29, 0.9);
  float: left;
  margin-right: 15px;
}

.pagination_adm {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.pagination_adm a {
  color: rgba(229, 196, 29, 0.9);
}

.pagination_adm .previous_page {
  color: rgba(229, 196, 29, 0.9);
  margin-right: 10px;
}

.pagination_adm .next_page {
  color: rgba(229, 196, 29, 0.9);
  margin-left: 10px;
}

.pagination_adm .current {
  border-bottom: 1px solid rgba(229, 196, 29, 0.9);
  font-style: normal;
  color: rgba(229, 196, 29, 0.9);
}

.pagination_adm .disabled {
  color: rgba(255, 255, 255, 0.5);
}

.user-show {
  width: 100%;
  display: inline-block;
}

.user-show_category_title {
  font-size: 16px;
  font-family: "PT Sans", times, sans-serif;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.user-show__news_item {
  display: block;
  margin: 10px 0;
}

.user-show__news_item-title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.user-show__news_item-title a {
  color: rgba(255, 255, 255, 0.5);
}

.user-show__news_item-title a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.admin-table .dates {
  color: #afafaf;
  font-size: 12px;
  white-space: nowrap;
}

.admin-table .user {
  font-size: 14px;
  color: #afafaf;
}

.admin-table a {
  color: #333333;
}

.admin-tabs {
  background-color: white;
  border-radius: 10px 10px 0 0;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 10px;
  list-style: none;
}

.admin-tabs>li {
  display: inline-block;
  color: #afafaf;
}

.admin-tabs>li+li {
  margin-left: 10px;
}

.admin-tabs>li a {
  color: #afafaf;
}

.admin-tabs>li a:hover {
  color: #333333;
}

.admin-tabs>li.active {
  padding-bottom: 5px;
  border-bottom: 5px solid rgba(229, 196, 29, 0.9);
}

.admin-tabs>li.active a {
  color: #333333;
}

#aside1 {
  height: 147px;
  width: 75px;
  position: absolute;
}

#sticky-anchor {
  float: left;
  top: 275px;
  position: absolute;
}

#sticky {
  position: absolute;
  top: 0;
  z-index: 5;
  display: none;
}

#sticky.stick {
  position: fixed;
  top: 0;
  margin: 0;
}

.rlogo {
  width: 75px;
  height: 113px;
  background-color: #333333;
  top: 0;
  z-index: 2;
}

.rlogo:hover {
  background-color: rgba(51, 51, 51, 0.9);
  transition-duration: 0.6s;
}

.rlogo .ricon {
  width: 57px;
  height: 49px;
  position: relative;
  top: 33px;
  left: 9px;
}

.rlogo .ricon a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("http://habrastorage.org/files/912/077/ba6/912077ba6ccf4f8485f7938db6a2d745.png") no-repeat;
  background-position: 0px -76px;
  text-indent: -999em;
}

.razer {
  width: 75px;
  height: 113px;
  background-color: #e3c95a;
  top: 0;
  z-index: 5;
}

.razer:hover {
  background-color: #f0d365;
}

.razer-menu-list {
  color: white;
  margin-top: 96px;
}

.razer-menu-list a {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-left: 5px;
  margin-bottom: 15px;
  display: block;
  /*		&:first-child { color: #fa7a7a; }
		&:last-child { content: ""; color: #e5c41d; }
		&:last-child:after { content: ""; }*/
}

.admin-menu-list {
  color: white;
  margin-top: 40px;
}

.admin-menu-list>* {
  margin-left: 5px;
  display: block;
}

.admin-menu-list>*:first-child {
  color: #fa7a7a;
}

.admin-menu-list a {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-bottom: 15px;
}

.admin-menu-list:last-child:after {
  content: "";
}

.razer-profile {
  margin-top: 130px;
}

.razer-profile .ra-profile-avatar {
  text-align: center;
  margin-bottom: 15px;
}

.razer-profile .ra-profile-avatar img {
  border-radius: 25px;
}

.razer-profile .ra-profile-name {
  text-align: center;
}

.razer-profile .ra-profile-name a {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
}

.razer_admin {
  margin-top: 5px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  text-align: center;
}

.razer_admin a {
  color: #afafaf;
}

.razer_admin a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.razer-login {
  text-align: center;
  margin-top: 130px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.razer-login a {
  color: rgba(255, 255, 255, 0.5);
}

.razer-login a_icon {
  display: block;
}

.razer-login a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.razer-search {
  margin-top: 100px;
}

.razer-search input {
  width: 200px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: #e5c41d;
  border: none;
  border-bottom: 2px solid #e5c41d;
  float: right;
}

.razer-search input[type=search]:focus {
  border-bottom: 2px solid #e5c41d;
  cursor: auto;
  color: #e5c41d;
  outline: none;
}

.line-left .up {
  width: 75px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  top: 0;
  z-index: 4;
  background-color: #fbfbfb;
}

.line-left .up a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.line-left .up-icon {
  width: 49px;
  height: 54px;
  opacity: 1;
  position: absolute;
  bottom: 16px;
  left: 13px;
}

.line-left .up-icon path {
  fill: #E5C41D;
}

.line-left .up:hover .up-icon path {
  fill: #f0d365;
}

form label {
  font-size: 14px;
  font-family: "PT Sans", times, sans-serif;
  color: #000;
}

form .add {
  font-size: 14px;
  font-family: "PT Sans", times, sans-serif;
  color: rgba(229, 196, 29, 0.9);
}

form .array-input input {
  margin-bottom: 15px;
}

form .picture {
  margin-bottom: 20px;
}

form .picture img {
  width: 200px;
  border-radius: 5px;
}

form .form-group {
  margin-top: 15px;
}

form .form-group.first {
  margin-top: 0px;
}

form .form-group .hint {
  color: rgba(89, 89, 89, 0.9);
  font-family: "PT Sans", times, sans-serif;
}

form .form-group .help-block {
  color: rgba(89, 89, 89, 0.9);
  font-family: "PT Sans", times, sans-serif;
}

form .form-row:after {
  content: " ";
  display: block;
  clear: both;
}

form .form-row .form-group {
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
}

form .form-row .form-group:last-child {
  width: 23.72881356%;
  float: right;
  margin-right: 0;
}

form .form-hr {
  width: 50px !important;
  text-align: center;
  height: 52px;
  line-height: 52px;
}

.input-details {
  display: block;
  margin: 5px 0;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.btn,
.btn__delete {
  background: #E5C41D;
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 15px 0;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.5;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  cursor: pointer;
}

.btn__delete {
  background-color: red;
  margin-top: 20px;
}

input[type=text],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=password],
input[type=color] {
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  color: rgba(40, 40, 40, 0.9);
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  line-height: 2.0;
  padding: 7px 18px;
  width: 100%;
  outline: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type=text]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=color]:focus {
  border: 1px solid rgba(229, 196, 29, 0.9);
}

input[type=text]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=color]:disabled {
  background: #f1f1f1;
}

input[type='radio']+label+input[type=datetime-local],
input[type='radio']+label+input.flatpickr-input {
  margin-top: 10px;
}

input[type=file] {
  color: rgba(229, 196, 29, 0.9);
}

textarea,
.textarea {
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  line-height: 2.0;
  padding: 7px 18px;
  width: 100%;
  outline: 0;
  resize: vertical;
  box-sizing: border-box;
  color: rgba(40, 40, 40, 0.9);
  -webkit-appearance: none;
}

textarea:focus,
.textarea:focus {
  border: 1px solid rgba(229, 196, 29, 0.9);
}

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}

.input[type=number] {
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  line-height: 2.0;
  padding: 7px 18px;
  width: 100%;
  outline: 0;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.5);
  -webkit-appearance: none;
}

.input[type=number]:focus {
  border: 1px solid rgba(229, 196, 29, 0.9);
}

.input[type=submit] {
  background: #E5C41D;
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 15px 0;
  line-height: 32px;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.5;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(40, 40, 40, 0.9);
  cursor: pointer;
  -webkit-appearance: none;
}

.input[type=submit]:hover {
  background-color: rgba(229, 196, 29, 0.9);
}

input[type=color] {
  height: 52px;
}

.trumbowyg-box {
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
}

.trumbowyg-box .trumbowyg-button-pane {
  border-radius: 3px 3px 0 0;
}

.SumoSelect {
  width: auto;
  display: block;
}

.SumoSelect>.CaptionCont {
  background: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  color: rgba(40, 40, 40, 0.9);
  font-family: "PT Sans", times, sans-serif;
  font-size: 18px;
  line-height: 2.0;
  padding: 7px 18px;
  width: 100%;
  outline: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  box-shadow: none;
}

.SumoSelect:focus .CaptionCont,
.SumoSelect:hover .CaptionCont {
  border: 1px solid rgba(229, 196, 29, 0.9);
  box-shadow: none;
}

.SumoSelect:disabled .CaptionCont {
  background: #f1f1f1;
  box-shadow: none;
}

.SumoSelect.open>.optWrapper {
  top: 50px;
}

.SumoSelect>.optWrapper>.options li label {
  color: rgba(40, 40, 40, 0.9) !important;
}

div.medium-editor {
  font-size: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 7px 18px;
  min-height: 200px;
}

div.medium-editor+textarea {
  display: none;
}

.medium-editor-insert-plugin .medium-insert-buttons .medium-insert-buttons-show span {
  margin-top: 0;
}

.medium-editor-placeholder:after {
  left: 18px;
  top: 7px;
  padding: 0;
}

.btn,
.btn__delete {
  background: #E5C41D;
  border: none;
  outline: none;
  border-radius: 3px;
  padding: 18px 0;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.5;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  color: rgba(40, 40, 40, 0.9);
  text-transform: uppercase;
}

.btn:hover,
.btn__delete:hover {
  background-color: #E5C41D;
}

a.btn,
a.btn__delete {
  color: rgba(40, 40, 40, 0.9) !important;
}

.r_navigation_t .search {
  position: relative;
  height: 20px;
}

.r_navigation_t .search input[type=search] {
  width: 200px;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: #333333;
  padding-right: 23px;
  border: none;
  border-bottom: 2px solid #333333;
  float: right;
  -webkit-appearance: textfield;
}

.r_navigation_t .search input[type=search]:focus {
  cursor: auto;
  color: #333333;
  outline: none;
  border-bottom: 2px solid rgba(229, 196, 29, 0.9);
}

.r_navigation_t .search input[type="search"]::-webkit-input-placeholder {
  padding-left: 0;
}

.r_navigation_t .search input[type="search"]::-webkit-search-decoration,
.r_navigation_t .search input[type="search"]::-webkit-search-cancel-button,
.r_navigation_t .search input[type="search"]::-webkit-search-results-button,
.r_navigation_t .search input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.r_navigation_t .search button[type=submit],
.r_navigation_t .search button[type=submit]:focus,
.r_navigation_t .search button[type=submit]:active {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #757575;
  cursor: pointer;
}

.r_navigation_t .search .tt-menu {
  background: #333333;
  padding: 15px;
  text-align: left;
  right: 0;
}

.r_navigation_t .search .tt-dataset a {
  display: block;
  color: #afafaf;
}

.r_navigation_t .search .tt-dataset a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_navigation_t .search .tt-dataset a+a {
  margin-top: 10px;
}

blockquote {
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: rgba(229, 196, 29, 0.9);
  padding-left: 70px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 10px;
  margin: 0;
  background-size: 50px;
  background-image: url("/images/quote.png");
  background-position: middle left;
  background-repeat: no-repeat;
}

hr {
  border: none;
  background-color: #ccc;
  color: #ccc;
  height: 1px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
  empty-cells: show;
  font-size: 15px;
}

th {
  text-align: left;
  font-weight: 700;
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

th,
td {
  padding: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

tfoot th,
tfoot td {
  color: rgba(0, 0, 0, 0.5);
}

table.bordered {
  margin-top: -1px;
}

table.bordered td,
table.bordered th {
  border: 1px solid #f1f1f1;
}

table.striped,
table.medium-editor-table,
table.striped td,
table.medium-editor-table td {
  border: 1px solid #afafaf;
}

table.striped tr:nth-child(odd) td,
table.medium-editor-table tr:nth-child(odd) td {
  background: #f1f1f1;
}

table.chess {
  border: none;
}

table.chess tr td {
  background: #CCCCCC;
  border: none;
}

table.chess tr td:nth-child(odd) {
  background: #f1f1f1;
}

table.chess tr:nth-child(odd) td {
  background: #f1f1f1;
}

table.chess tr:nth-child(odd) td:nth-child(odd) {
  background: #CCCCCC;
}

table.bordered td:first-child,
table.bordered th:first-child,
table.striped td:first-child,
table.medium-editor-table td:first-child,
table.striped th:first-child,
table.medium-editor-table th:first-child,
table.chess td:first-child,
table.chess th:first-child {
  padding-left: 16px;
}

table.bordered td:last-child,
table.bordered th:last-child,
table.striped td:last-child,
table.medium-editor-table td:last-child,
table.striped th:last-child,
table.medium-editor-table th:last-child,
table.chess td:last-child,
table.chess th:last-child {
  padding-right: 16px;
}

table.flat td,
table.flat th {
  border: none;
  padding: 0;
}

.medium-insert-embed img {
  display: block;
}

.medium-insert-embed .video {
  width: 100%;
  position: relative;
}

.medium-insert-embed .video:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.medium-insert-embed .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.review_content .video-click {
  height: 360px;
}

.review_content .video-click img {
  margin-top: -60px;
}

.video-click {
  height: 312px;
  overflow: hidden;
}

.video-click img {
  margin-top: -52px;
  width: 100%;
}

.video-click .play-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  background-color: rgba(229, 196, 29, 0.9);
  -webkit-mask: url(/imgs/youtube.svg) center no-repeat;
  -webkit-mask-size: contain;
  mask: url(/imgs/youtube.svg) center no-repeat;
  mask-size: contain;
}

.backups-list .video-click {
  height: 285px;
}


.site .r_content .medium-insert-images-grid figure {
  display: inline-block;
  width: 100%;
  min-height: 200px;
  margin: 5px;
  cursor: pointer;
}

.form-group .medium-insert-images-grid figure {
  display: inline-block;
  width: 200px !important;
  min-height: 200px;
  margin: 5px;
  cursor: pointer;
}

.site .r_content .medium-insert-images-grid figure img {
  max-width: 100%;
  line-height: 200px;
  display: inline-block;
  margin: 0;
}

.site .r_content .post_new__main_box_bottom-tags {
  margin-top: -5px;
  white-space: nowrap;
}

.admin-panel {
  border: 1px solid #afafaf;
  padding: 15px;
  margin-bottom: 30px;
  margin-top: 15px;
}

.admin-panel a {
  color: #333333;
}

figcaption {
  color: rgba(89, 89, 89, 0.9) !important;
  text-align: center;
  font-style: italic;
}

div.figcaption {
  color: rgba(89, 89, 89, 0.9) !important;
  text-align: center;
  font-style: italic;
}

div.figcaption * {
  color: rgba(89, 89, 89, 0.9) !important;
}

/* Hamburger class */
#hamburger-icon,
.login_form__close {
  width: 100px;
  height: 100px;
  position: relative;
  display: block;
  margin: 0 auto 50px auto;
}

#hamburger-icon .line,
.login_form__close .line {
  display: block;
  background: #333333;
  width: 45px;
  height: 3px;
  position: absolute;
  left: 15px;
  margin-top: 47px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

#hamburger-icon .line.line-1,
.login_form__close .line.line-1 {
  top: 0;
}

#hamburger-icon .line.line-3,
.login_form__close .line.line-3 {
  top: 20%;
}

#hamburger-icon:hover .line-1,
.login_form__close:hover .line-1,
#hamburger-icon:hover .line-1,
.login_form__close:hover .line-1 {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
}

#hamburger-icon:hover .line-3,
.login_form__close:hover .line-3,
#hamburger-icon:hover .line-3,
.login_form__close:hover .line-3 {
  transform: translateY(4px);
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
}

#hamburger-icon:active .line-1,
.login_form__close:active .line-1,
#hamburger-icon:active .line-1,
.login_form__close:active .line-1 {
  width: 38px;
  left: 17px;
}

#hamburger-icon:active .line-3,
.login_form__close:active .line-3,
#hamburger-icon:active .line-3,
.login_form__close:active .line-3 {
  width: 38px;
  left: 17px;
}

#hamburger-icon.active .line-1,
.active.login_form__close .line-1 {
  transform: translateY(10px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
  -moz-transform: translateY(10px) translateX(0) rotate(45deg);
}

#hamburger-icon.active .line-3,
.active.login_form__close .line-3 {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
  -moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
}

/* Menu effect */
#cd-hamburger-menu {
  left: 0;
}

#cd-hamburger-menu a {
  background: #26292f;
}

@media only screen and (min-width: 1200px) {
  #cd-hamburger-menu {
    display: none;
  }
}

#main-nav,
#cd-cart {
  position: fixed;
  top: 0;
  height: 100%;
  width: 260px;
  /* header height */
  padding-top: 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

#main-nav {
  left: -100%;
  background: #FFF;
  transition: left 0.3s;
}

#main-nav.speed-in {
  left: 0;
}

#main-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 1em;
  border-bottom: 1px solid #e0e6ef;
}

#main-nav ul .current {
  box-shadow: inset 3px 0 #435779;
}

@media only screen and (min-width: 1200px) {
  #main-nav {
    /* reset main nav style */
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 8em;
    padding-top: 0;
    top: 0;
    background: transparent;
    box-shadow: none;
    /* header height */
    line-height: 80px;
    z-index: 4;
  }

  #main-nav li {
    display: inline-block;
    margin-left: 1em;
  }

  #main-nav ul a {
    display: inline-block;
    height: auto;
    line-height: 1;
    padding: 1em 1.4em;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25em;
  }

  #main-nav ul a.current {
    box-shadow: none;
    background: #435779;
    color: #FFF;
  }

  .no-touch #main-nav ul a:hover {
    background: #435779;
    color: #FFF;
  }
}

.no-js #main-nav {
  position: fixed;
}

#cd-cart {
  left: -100%;
  background: #333333;
  transition: left 0.4s;
}

#cd-cart.speed-in {
  left: 75px;
}

#cd-cart>* {
  padding: 0 1em;
}

#cd-cart h2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 1em 0;
}

#cd-cart .cd-cart-items {
  padding: 0;
}

#cd-cart .cd-cart-items li {
  position: relative;
  padding: 1em;
  border-top: 1px solid #e0e6ef;
}

#cd-cart .cd-cart-items li:last-child {
  border-bottom: 1px solid #e0e6ef;
}

#cd-cart .cd-qty,
#cd-cart .cd-price {
  color: #a5aebc;
}

#cd-cart .cd-price {
  margin-top: .4em;
}

#cd-cart .cd-item-remove {
  position: absolute;
  right: 1em;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.no-touch #cd-cart .cd-item-remove:hover {
  background-color: #e0e6ef;
}

#cd-cart .cd-cart-total {
  padding-top: 1em;
  padding-bottom: 1em;
}

#cd-cart .cd-cart-total span {
  float: right;
}

#cd-cart .cd-cart-total::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

#cd-cart .checkout-btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #7dcf85;
  color: #FFF;
  text-align: center;
}

.no-touch #cd-cart .checkout-btn:hover {
  background: #a2dda8;
}

#cd-cart .cd-go-to-cart {
  text-align: center;
  margin: 1em 0;
}

#cd-cart .cd-go-to-cart a {
  text-decoration: underline;
}

@media only screen and (min-width: 1200px) {
  #cd-cart>* {
    padding: 0 2em;
  }

  #cd-cart .cd-cart-items li {
    padding: 1em 2em;
  }

  #cd-cart .cd-item-remove {
    right: 2em;
  }
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(241, 241, 241, 0.6);
  cursor: pointer;
  z-index: 2;
  display: none;
}

#cd-shadow-layer.is-visible {
  display: block;
  animation: cd-fade-in 0.3s;
}

/* xkeyframes */

@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/**
 * Trumbowyg v2.25.2 - A lightweight WYSIWYG editor
 * Default stylesheet for Trumbowyg editor
 * ------------------------
 * @link http://alex-d.github.io/Trumbowyg
 * @license MIT
 * @author Alexandre Demode (Alex-D)
 *         Twitter : @AlexandreDemode
 *         Website : alex-d.fr
 */
#trumbowyg-icons {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  width: 0;
}

#trumbowyg-icons svg {
  height: 0;
  width: 0;
}

.trumbowyg-box *,
.trumbowyg-box *::before,
.trumbowyg-box *::after,
.trumbowyg-modal *,
.trumbowyg-modal *::before,
.trumbowyg-modal *::after {
  box-sizing: border-box;
}

.trumbowyg-box svg,
.trumbowyg-modal svg {
  width: 17px;
  height: 100%;
  fill: #222;
}

.trumbowyg-box,
.trumbowyg-editor {
  display: block;
  position: relative;
  border: 1px solid #DDD;
  width: 100%;
  min-height: 300px;
}

.trumbowyg-box .trumbowyg-editor {
  margin: 0 auto;
}

.trumbowyg-box.trumbowyg-fullscreen {
  background: #FEFEFE;
  border: none !important;
}

.trumbowyg-editor,
.trumbowyg-textarea {
  position: relative;
  box-sizing: border-box;
  padding: 20px;
  min-height: 300px;
  width: 100%;
  border-style: none;
  resize: none;
  outline: none;
  overflow: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.trumbowyg-editor.trumbowyg-autogrow-on-enter,
.trumbowyg-textarea.trumbowyg-autogrow-on-enter {
  transition: height 300ms ease-out;
}

.trumbowyg-box-blur .trumbowyg-editor *,
.trumbowyg-box-blur .trumbowyg-editor::before {
  color: transparent !important;
  text-shadow: 0 0 7px #333;
}

@media screen and (min-width: 0 \0) {

  .trumbowyg-box-blur .trumbowyg-editor *,
  .trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(200, 200, 200, 0.6) !important;
  }
}

@supports (-ms-accelerator: true) {

  .trumbowyg-box-blur .trumbowyg-editor *,
  .trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(200, 200, 200, 0.6) !important;
  }
}

.trumbowyg-box-blur .trumbowyg-editor img,
.trumbowyg-box-blur .trumbowyg-editor hr {
  opacity: 0.2;
}

.trumbowyg-textarea {
  position: relative;
  display: block;
  overflow: auto;
  border: none;
  font-size: 14px;
  font-family: "Inconsolata", "Consolas", "Courier", "Courier New", sans-serif;
  line-height: 18px;
}

.trumbowyg-box.trumbowyg-editor-visible .trumbowyg-textarea {
  height: 1px !important;
  width: 25%;
  min-height: 0 !important;
  padding: 0 !important;
  background: none;
  opacity: 0 !important;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-textarea {
  display: block;
  margin-bottom: 1px;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-editor {
  display: none;
}

.trumbowyg-box.trumbowyg-disabled .trumbowyg-textarea {
  opacity: 0.8;
  background: none;
}

.trumbowyg-editor[contenteditable=true]:empty:not(:focus)::before {
  content: attr(placeholder);
  color: #999;
  pointer-events: none;
  white-space: break-spaces;
}

.trumbowyg-button-pane {
  width: 100%;
  min-height: 36px;
  background: #ecf0f1;
  border-bottom: 1px solid #d7e0e2;
  margin: 0;
  padding: 0 5px;
  position: relative;
  list-style-type: none;
  line-height: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 11;
}

.trumbowyg-button-pane::after {
  content: " ";
  display: block;
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #d7e0e2;
}

.trumbowyg-button-pane .trumbowyg-button-group {
  display: inline-block;
}

.trumbowyg-button-pane .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
  color: transparent;
}

.trumbowyg-button-pane .trumbowyg-button-group::after {
  content: " ";
  display: inline-block;
  width: 1px;
  background: #d7e0e2;
  margin: 0 5px;
  height: 35px;
  vertical-align: top;
}

.trumbowyg-button-pane .trumbowyg-button-group:last-child::after {
  content: none;
}

.trumbowyg-button-pane button {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 1px 6px !important;
  margin-bottom: 1px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: none;
  vertical-align: middle;
  transition: background-color 150ms, opacity 150ms;
}

.trumbowyg-button-pane button.trumbowyg-textual-button {
  width: auto;
  line-height: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.trumbowyg-button-pane.trumbowyg-disable button:not(.trumbowyg-not-disable):not(.trumbowyg-active),
.trumbowyg-button-pane button.trumbowyg-disable,
.trumbowyg-disabled .trumbowyg-button-pane button:not(.trumbowyg-not-disable):not(.trumbowyg-viewHTML-button) {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::before,
.trumbowyg-disabled .trumbowyg-button-pane .trumbowyg-button-group::before {
  background: #e3e9eb;
}

.trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-button-pane button.trumbowyg-active {
  background-color: #FFF;
  outline: none;
}

.trumbowyg-button-pane .trumbowyg-open-dropdown::after {
  display: block;
  content: " ";
  position: absolute;
  top: 25px;
  right: 3px;
  height: 0;
  width: 0;
  border: 3px solid transparent;
  border-top-color: #555;
}

.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button {
  padding-left: 10px !important;
  padding-right: 18px !important;
}

.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button::after {
  top: 17px;
  right: 7px;
}

.trumbowyg-button-pane .trumbowyg-right {
  float: right;
}

.trumbowyg-dropdown {
  max-width: 300px;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: nowrap;
  border: 1px solid #ecf0f1;
  padding: 5px 0;
  border-top: none;
  background: #FFF;
  margin-left: -1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px;
  z-index: 12;
}

.trumbowyg-dropdown button {
  display: block;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  background: #FFF;
  padding: 0 20px 0 10px;
  color: #333 !important;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  transition: all 150ms;
}

.trumbowyg-dropdown button:hover,
.trumbowyg-dropdown button:focus {
  background: #ecf0f1;
}

.trumbowyg-dropdown button svg {
  float: left;
  margin-right: 14px;
}

/* Modal box */
.trumbowyg-modal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 520px;
  width: 100%;
  height: 350px;
  z-index: 12;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.trumbowyg-modal-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - 20px);
  padding-bottom: 45px;
  z-index: 1;
  background-color: #FFF;
  text-align: center;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.trumbowyg-modal-box .trumbowyg-modal-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 15px 0 13px;
  display: block;
  border-bottom: 1px solid #EEE;
  color: #333;
  background: #fbfcfc;
}

.trumbowyg-modal-box .trumbowyg-progress {
  width: 100%;
  height: 3px;
  position: absolute;
  top: 58px;
}

.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar {
  background: #2BC06A;
  width: 0;
  height: 100%;
  transition: width 150ms linear;
}

.trumbowyg-modal-box .trumbowyg-input-row {
  position: relative;
  margin: 15px 12px;
  border: 1px solid #DEDEDE;
  overflow: hidden;
}

.trumbowyg-modal-box .trumbowyg-input-infos {
  text-align: left;
  transition: all 150ms;
  width: 150px;
  border-right: 1px solid #DEDEDE;
  padding: 0 7px;
  background-color: #fbfcfc;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.trumbowyg-modal-box .trumbowyg-input-infos label {
  color: #69878f;
  overflow: hidden;
  height: 27px;
  line-height: 27px;
}

.trumbowyg-modal-box .trumbowyg-input-infos label,
.trumbowyg-modal-box .trumbowyg-input-infos label span {
  display: block;
  height: 27px;
  line-height: 27px;
  transition: all 150ms;
}

.trumbowyg-modal-box .trumbowyg-input-infos .trumbowyg-msg-error {
  color: #e74c3c;
}

.trumbowyg-modal-box .trumbowyg-input-html {
  padding: 1px 1px 1px 152px;
}

.trumbowyg-modal-box .trumbowyg-input-html,
.trumbowyg-modal-box .trumbowyg-input-html input,
.trumbowyg-modal-box .trumbowyg-input-html textarea,
.trumbowyg-modal-box .trumbowyg-input-html select {
  font-size: 14px;
}

.trumbowyg-modal-box .trumbowyg-input-html input,
.trumbowyg-modal-box .trumbowyg-input-html textarea,
.trumbowyg-modal-box .trumbowyg-input-html select {
  transition: all 150ms;
  height: 27px;
  line-height: 27px;
  border: 0;
  width: 100%;
  padding: 0 7px;
}

.trumbowyg-modal-box .trumbowyg-input-html input:hover,
.trumbowyg-modal-box .trumbowyg-input-html input:focus,
.trumbowyg-modal-box .trumbowyg-input-html textarea:hover,
.trumbowyg-modal-box .trumbowyg-input-html textarea:focus,
.trumbowyg-modal-box .trumbowyg-input-html select:hover,
.trumbowyg-modal-box .trumbowyg-input-html select:focus {
  outline: 1px solid #95a5a6;
}

.trumbowyg-modal-box .trumbowyg-input-html input:focus,
.trumbowyg-modal-box .trumbowyg-input-html textarea:focus,
.trumbowyg-modal-box .trumbowyg-input-html select:focus {
  background: #fbfcfc;
}

.trumbowyg-modal-box .trumbowyg-input-html input[type="checkbox"] {
  width: 16px;
  height: 16px;
  padding: 0;
}

.trumbowyg-modal-box .trumbowyg-input-html-with-checkbox {
  text-align: left;
  padding: 3px 1px 1px 3px;
}

.trumbowyg-modal-box .trumbowyg-input-error input,
.trumbowyg-modal-box .trumbowyg-input-error select,
.trumbowyg-modal-box .trumbowyg-input-error textarea {
  outline: 1px solid #e74c3c;
}

.trumbowyg-modal-box .trumbowyg-input-error .trumbowyg-input-infos label span:first-child {
  margin-top: -27px;
}

.trumbowyg-modal-box .error {
  margin-top: 25px;
  display: block;
  color: red;
}

.trumbowyg-modal-box .trumbowyg-modal-button {
  position: absolute;
  bottom: 10px;
  right: 0;
  text-decoration: none;
  color: #FFF;
  display: block;
  width: 100px;
  height: 35px;
  line-height: 33px;
  margin: 0 10px;
  background-color: #333;
  border: none;
  cursor: pointer;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif;
  font-size: 16px;
  transition: all 150ms;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
  right: 110px;
  background: #2bc06a;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover,
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
  background: #40d47e;
  outline: none;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
  background: #25a25a;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
  color: #555;
  background: #e6e6e6;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover,
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
  background: #fbfbfb;
  outline: none;
}

.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
  background: #d5d4d4;
}

.trumbowyg-overlay {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  display: none;
  top: 0;
  z-index: 10;
}

/**
 * Fullscreen
 */
body.trumbowyg-body-fullscreen {
  overflow: hidden;
}

.trumbowyg-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 99999;
}

.trumbowyg-fullscreen.trumbowyg-box,
.trumbowyg-fullscreen .trumbowyg-editor {
  border: none;
}

.trumbowyg-fullscreen .trumbowyg-editor,
.trumbowyg-fullscreen .trumbowyg-textarea {
  height: calc(100% - 37px) !important;
  overflow: auto;
}

.trumbowyg-fullscreen .trumbowyg-overlay {
  height: 100% !important;
}

.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
  color: #222;
  fill: transparent;
}

.trumbowyg-editor {
  /*
     * lset for resetCss option
     */
}

.trumbowyg-editor object,
.trumbowyg-editor embed,
.trumbowyg-editor video,
.trumbowyg-editor img {
  max-width: 100%;
}

.trumbowyg-editor video,
.trumbowyg-editor img {
  height: auto;
}

.trumbowyg-editor img {
  cursor: move;
}

.trumbowyg-editor canvas:focus {
  outline: none;
}

.trumbowyg-editor.trumbowyg-reset-css {
  background: #FEFEFE !important;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.45em !important;
  color: #333;
}

.trumbowyg-editor.trumbowyg-reset-css a {
  color: #15c !important;
  text-decoration: underline !important;
}

.trumbowyg-editor.trumbowyg-reset-css div,
.trumbowyg-editor.trumbowyg-reset-css p,
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol,
.trumbowyg-editor.trumbowyg-reset-css blockquote {
  box-shadow: none !important;
  background: none !important;
  margin: 0 !important;
  margin-bottom: 15px !important;
  line-height: 1.4em !important;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
  font-size: 14px !important;
  border: none;
}

.trumbowyg-editor.trumbowyg-reset-css iframe,
.trumbowyg-editor.trumbowyg-reset-css object,
.trumbowyg-editor.trumbowyg-reset-css hr {
  margin-bottom: 15px !important;
}

.trumbowyg-editor.trumbowyg-reset-css blockquote {
  margin-left: 32px !important;
  font-style: italic !important;
  color: #555;
}

.trumbowyg-editor.trumbowyg-reset-css ul {
  list-style: disc;
}

.trumbowyg-editor.trumbowyg-reset-css ol {
  list-style: decimal;
}

.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol {
  padding-left: 20px !important;
}

.trumbowyg-editor.trumbowyg-reset-css ul ul,
.trumbowyg-editor.trumbowyg-reset-css ol ol,
.trumbowyg-editor.trumbowyg-reset-css ul ol,
.trumbowyg-editor.trumbowyg-reset-css ol ul {
  border: none;
  margin: 2px !important;
  padding: 0 !important;
  padding-left: 24px !important;
}

.trumbowyg-editor.trumbowyg-reset-css hr {
  display: block;
  height: 1px;
  border: none;
  border-top: 1px solid #CCC;
}

.trumbowyg-editor.trumbowyg-reset-css h1,
.trumbowyg-editor.trumbowyg-reset-css h2,
.trumbowyg-editor.trumbowyg-reset-css h3,
.trumbowyg-editor.trumbowyg-reset-css h4 {
  color: #111;
  background: none;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: bold;
}

.trumbowyg-editor.trumbowyg-reset-css h1 {
  font-size: 32px !important;
  line-height: 38px !important;
  margin-bottom: 20px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h2 {
  font-size: 26px !important;
  line-height: 34px !important;
  margin-bottom: 15px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h3 {
  font-size: 22px !important;
  line-height: 28px !important;
  margin-bottom: 7px !important;
}

.trumbowyg-editor.trumbowyg-reset-css h4 {
  font-size: 16px !important;
  line-height: 22px !important;
  margin-bottom: 7px !important;
}

/*
 * Dark theme
 */
.trumbowyg-dark .trumbowyg-textarea {
  background: #111;
  color: #ddd;
}

.trumbowyg-dark .trumbowyg-box {
  border: 1px solid #343434;
}

.trumbowyg-dark .trumbowyg-box.trumbowyg-fullscreen {
  background: #111;
}

.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
  text-shadow: 0 0 7px #ccc;
}

@media screen and (min-width: 0 \0) {

  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(20, 20, 20, 0.6) !important;
  }
}

@supports (-ms-accelerator: true) {

  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *,
  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(20, 20, 20, 0.6) !important;
  }
}

.trumbowyg-dark .trumbowyg-box svg {
  fill: #ecf0f1;
  color: #ecf0f1;
}

.trumbowyg-dark .trumbowyg-button-pane {
  background-color: #222;
  border-bottom-color: #343434;
}

.trumbowyg-dark .trumbowyg-button-pane::after {
  background: #343434;
}

.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty)::after {
  background-color: #343434;
}

.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
  color: transparent;
}

.trumbowyg-dark .trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::after {
  background-color: #2a2a2a;
}

.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-dark .trumbowyg-button-pane button.trumbowyg-active {
  background-color: #333;
}

.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-open-dropdown::after {
  border-top-color: #fff;
}

.trumbowyg-dark .trumbowyg-fullscreen .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
  color: #ecf0f1;
  fill: transparent;
}

.trumbowyg-dark .trumbowyg-dropdown {
  border-color: #222;
  background: #333;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px;
}

.trumbowyg-dark .trumbowyg-dropdown button {
  background: #333;
  color: #fff !important;
}

.trumbowyg-dark .trumbowyg-dropdown button:hover,
.trumbowyg-dark .trumbowyg-dropdown button:focus {
  background: #222;
}

.trumbowyg-dark .trumbowyg-modal-box {
  background-color: #222;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-title {
  border-bottom: 1px solid #555;
  color: #fff;
  background: #3c3b3b;
}

.trumbowyg-dark .trumbowyg-modal-box label {
  display: block;
  position: relative;
  margin: 15px 12px;
  height: 27px;
  line-height: 27px;
  overflow: hidden;
}

.trumbowyg-dark .trumbowyg-modal-box label .trumbowyg-input-infos span {
  color: #eee;
  background-color: #2f2f2f;
  border-color: #222;
}

.trumbowyg-dark .trumbowyg-modal-box label .trumbowyg-input-infos span.trumbowyg-msg-error {
  color: #e74c3c;
}

.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error input,
.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error textarea {
  border-color: #e74c3c;
}

.trumbowyg-dark .trumbowyg-modal-box label input {
  border-color: #222;
  color: #eee;
  background: #333;
}

.trumbowyg-dark .trumbowyg-modal-box label input:hover,
.trumbowyg-dark .trumbowyg-modal-box label input:focus {
  border-color: #626262;
}

.trumbowyg-dark .trumbowyg-modal-box label input:focus {
  background-color: #2f2f2f;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
  background: #1b7943;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover,
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
  background: #25a25a;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
  background: #176437;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
  background: #333;
  color: #ccc;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover,
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
  background: #444;
}

.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
  background: #111;
}

.trumbowyg-dark .trumbowyg-overlay {
  background-color: rgba(15, 15, 15, 0.6);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.content_lang_but_ph {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.content_lang_but_ph a {
  color: black;
  display: inline-block;
  font-size: 16px;
  padding: 5px 10px;
  margin: 0px 10px;
}

.content_lang_but_ph a.c_sel.sel {
  background: #E4CA5A;
  padding: 5px 10px;
  margin: 0px 10px;
}

a {
  text-decoration: none;
  color: rgba(229, 196, 29, 0.9);
}

figure {
  margin: 0;
  padding: 0;
}

.sub {
  color: #afafaf;
}

*:focus {
  outline: none;
}

.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.container:after {
  content: " ";
  display: block;
  clear: both;
}

body.__special .container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

body.__special .container:after {
  content: " ";
  display: block;
  clear: both;
}

.inherit {
  width: inherit;
}

a.favLink {
  color: rgba(0, 0, 0, 0.3);
  font-size: 18px;
}

a.favLink:hover {
  color: #333333;
}

a.favLink.favorited {
  color: #de1500;
}

a.favLink.favorited:hover {
  color: #333333;
}

.r h1 {
  margin: 0;
}

.r_header {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  float: none;
}

.r_header .header-img {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  float: none;
  margin-bottom: 2px;
}

.r_header .header-img img {
  vertical-align: bottom;
}

.r_header #ab_detect {
  background-color: #333333;
  font-family: "PT Sans", times, sans-serif;
  color: rgba(229, 196, 29, 0.9);
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
  display: none;
}

.r_header #ab_detect a {
  color: rgba(229, 196, 29, 0.9);
  border-bottom: 1px solid rgba(229, 196, 29, 0.9);
}

.r_header #ab_detect a img {
  width: 18px;
  margin: 0 0 -13px 5px;
  position: relative;
}

.r_header__h {
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 20px 30px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  height: 85px;
}

.r_header__h a {
  color: #afafaf;
}

.r_header__h a:hover {
  color: #333333;
}

.r_header__h_admin {
  width: 32.20338983%;
  float: left;
  margin-right: 1.69491525%;
}

.r_header__h_admin-link {
  margin-top: 12px;
  display: block;
}

.r_header__h_socials {
  width: 32.20338983%;
  float: left;
  margin-right: 1.69491525%;
  margin: 4px 0;
  color: #afafaf;
}

.r_header__h_socials-icons {
  padding-right: 40px;
}

.r_header__h_socials-icons a:hover.vk {
  color: #3c5c82;
}

.r_header__h_socials-icons a:hover.fb {
  color: #334d92;
}

.r_header__h_socials-icons a:hover.tw {
  color: #35a3ea;
}

.r_header__h_socials-icons a:hover.tg {
  color: #2ca5e0;
}

.r_header__h_socials-icons a:hover.is {
  color: #333333;
}

.r_header__h_socials-icons a:hover.yu {
  color: #ff0000;
}

.r_header__h_logo {
  width: 40.6779661%;
  float: left;
  margin-right: 1.69491525%;
  text-align: center;
}

.r_header__h_logo img {
  height: 45px;
  width: 200px;
  vertical-align: bottom;
}

.r_header__h_login {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
  text-align: right;
  margin-top: 3px;
}

.r_header__h_login img.avatar {
  float: right;
  width: 50px;
  border-radius: 50%;
}

.r_header__h_profile {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
  position: relative;
}

.r_header__h_profile_box {
  float: right;
  text-align: right;
  height: 44px;
  line-height: 40px;
}

.r_header__h_profile_box-name {
  margin-right: 59px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.r_header__h_profile_box-avatar {
  position: absolute;
  right: 0;
  top: 0;
}

.r_header__h_profile_box-avatar img {
  border-radius: 22px;
  width: 44px;
  height: 44px;
  vertical-align: bottom;
}

.r_header__h_profile_box:hover {
  color: #000 !important;
}

.r_header__h_profile_logout {
  position: absolute;
  right: -21px;
  font-size: 12px;
  top: 14px;
  color: #dddddd !important;
}

.r_header__h_profile_logout:hover {
  color: #000 !important;
}

.r_header .line {
  background-color: #333333;
  padding: 20px 30px;
}

.r_header .line_navigation {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.r_header .line_navigation a {
  color: #afafaf;
}

.r_header .line_navigation a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_header .line_navigation a:before {
  content: "| ";
}

.r_header .line_navigation a:first-child:before {
  content: "";
}

.r_navigation_t {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 30px;
}

.r_navigation_t:after {
  content: " ";
  display: block;
  clear: both;
}

.r_navigation_t__left {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
  color: #afafaf;
}

.r_navigation_t__left a {
  color: #333333;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  margin: 0 5px;
}

.r_navigation_t__left a:hover {
  color: #333333;
}

.r_navigation_t__left a:first-child {
  margin: 0 5px 0 0;
}

.r_navigation_t__left .active {
  color: #333333;
}

.r_navigation_t__right {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
  color: #757575;
  text-align: right;
}

.r_navigation_w {
  background-color: white;
  border-radius: 10px 10px 0 0;
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  padding: 19px 30px;
  height: 56px;
}

.r_navigation_w__left {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
  color: #afafaf;
}

.r_navigation_w__left a {
  color: #afafaf;
}

.r_navigation_w__left a:hover {
  color: #333333;
}

.r_navigation_w__left .active {
  color: #333333;
  padding-bottom: 14px;
  border-bottom: 5px solid rgba(229, 196, 29, 0.9);
}

.r_navigation_w__right {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
  text-align: right;
}

.r_navigation_w__right-icon {
  margin-left: 5px;
}

.r_navigation_w__right a {
  color: #afafaf;
}

.r_navigation_w__right a:hover {
  color: #333333;
}

.r_top_24 {
  /*&__ficher {
      height: 250px;
      background-size: cover;
      background-position: center center;
      &_bcolor {
        background-color: rgba(0, 0, 0, 0.2);
        height: 250px;
        display: table;
        &_m {
          display: table-cell;
          vertical-align: middle;
          &__meta {
            font-family: $font500;
            font-size: 16px;
            color: white;
            text-align: center;
            a {
              color: white;
              &:hover {
                color: $color-link;
              }
            }
          }
          &-title {
            font-family: $font700;
            font-size: 46px;
            font-weight: bold;
            text-align: center;
            color: white;
            padding: 0 130px;
            margin-top: 9px;
            a {
              color: white;
              &:hover {
                color: $color-link;
              }
            }
          }
        }
      }
      &:hover {
        .r_top_24__ficher_bcolor_m-title {
          color: $color-link;
        }
      }
    }*/
}

.r_top_24__mficher {
  width: 50%;
  float: left;
  height: 250px;
  background-size: cover;
  background-position: center center;
  /*&:hover {
        .r_top_24__mficher_bcolor-title {
          color: $color-link;
        }
      }*/
}

.r_top_24__mficher_bcolor {
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
  height: 250px;
  padding: 30px;
  font-weight: bold;
  color: #333333;
}

.r_top_24__mficher_bcolor__meta {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #333333;
  margin-top: 10px;
}

.r_top_24__mficher_bcolor__ann {
  font-style: italic;
  margin: 10px 0 20px;
  color: #333333;
}

.r_top_24__mficher_bcolor-title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 24px;
  color: #333333;
  margin-top: 0;
  padding-right: 30px;
}

.r_top_24__mficher_bcolor .favLink {
  position: absolute;
  bottom: 27px;
}

.r_top_24__mficher:last-child {
  float: right;
  margin-right: 0;
}

.r_hab {
  padding: 30px;
}

.r_hab__title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}

.r_hab__title-hab {
  color: rgba(229, 196, 29, 0.9);
}

.r_cover {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  background-size: cover;
  background-position: center center;
  height: 600px;
  display: table;
}

.r_cover__links {
  font-family: "PT Sans", times, sans-serif;
  font-size: 15px;
  padding-left: 30px;
  vertical-align: middle;
  display: table-cell;
}

.r_cover__links-title {
  color: #afafaf;
  margin-bottom: 20px;
}

.r_cover__links-list a {
  display: block;
  margin: 5px 0;
  color: rgba(229, 196, 29, 0.9);
}

.r .user_h {
  padding: 30px;
}

.r .user_h__abox {
  width: 15.25423729%;
  float: left;
  margin-right: 1.69491525%;
  height: 100px;
  margin-bottom: -30px;
  position: relative;
}

.r .user_h__abox-image {
  position: absolute;
  height: 100%;
}

.r .user_h__abox-image img {
  border-radius: 50%;
  height: 100%;
}

.r .user_h__n {
  width: 57.62711864%;
  float: left;
  margin-right: 1.69491525%;
}

.r .user_h__n_ns {
  display: -ms-flexbox;
  display: flex;
}

.r .user_h__n_ns-name {
  font-family: "PT Sans", times, sans-serif;
  font-size: 24px;
  font-weight: bold;
  float: left;
}

.r .user_h__n_ns-name a {
  color: black;
  font-size: 14px;
}

.r .user_h__n_ns-socials {
  float: left;
  margin-left: 10px;
  margin-top: 8px;
}

.r .user_h__n_ns-socials a {
  color: black;
  margin: 0 5px;
}

.r .user_h__n_position {
  display: block;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r .user_h__karma {
  width: 23.72881356%;
  float: right;
  margin-right: 0;
}

.r .user_h__karma-i {
  font-family: "PT Sans", times, sans-serif;
  font-size: 26px;
  color: #59b400;
  text-align: right;
}

.r .user_h__karma-r {
  color: #de1500;
}

.r .user_h__karma-start {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  text-align: right;
}

.r_content {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 30px;
  background-color: #ffffff;
}

.r_content .b_radius {
  border-radius: 10px 10px 0 0;
}

.r_content .right__images {
  text-align: center;
  margin-top: 15px;
}

.r_content .right__images a {
  border: 4px solid #f1f1f1;
  display: block;
  overflow: hidden;
}

.r_content .right__images a img {
  margin: -4px;
  display: block;
}

.r_content .right__images a.link {
  display: inline-block;
  border: none;
  margin: 15px 0;
  color: #afafaf;
}

.r_content .right__images a.link:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .home {
  display: -ms-flexbox;
  display: flex;
}

.r_content .home_left {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .home_left__n {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  font-weight: bold;
}

.r_content .home_left__n a {
  color: #afafaf;
}

.r_content .home_left__n a:hover {
  color: #333333;
}

.r_content .home_left__n .active {
  color: #333333;
}

.r_content .home_left__posts {
  margin: 15px 0;
}

.r_content .home_right {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
}

.r_content .home_right__n {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  text-align: center;
  color: #afafaf;
  font-weight: bold;
}

.r_content .home_right__n_i {
  display: inline-block;
}

.r_content .home_right__n_i a {
  color: #afafaf;
}

.r_content .home_right__n_i a:hover {
  color: #333333;
}

.r_content .home_right__n .active {
  color: #333333;
  padding-bottom: 15px;
  border-bottom: 5px solid rgba(229, 196, 29, 0.9);
}

.r_content .home_right__events {
  background-color: #f0f0f0;
  padding: 20px 20px;
}

.r_content .home_right__events_list {
  display: none;
}

.r_content .home_right__events_list_item {
  display: block;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  font-weight: bold;
  margin-bottom: 20px;
}

.r_content .home_right__events_list_item:last-child {
  margin-bottom: 0;
}

.r_content .home_right__events #tabs-1 {
  display: block;
}

.r_content .popular24 {
  margin-top: 15px;
}

.r_content .popular24_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #afafaf;
  text-align: center;
  margin-bottom: 10px;
}

.r_content .popular24_posts {
  background-color: #f1f1f1;
  padding: 15px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.r_content .popular24_posts a {
  display: block;
  color: #afafaf;
  font-weight: bold;
  margin: 10px 0;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
}

.r_content .popular24_posts a:first-child {
  margin: 0 0 10px;
}

.r_content .popular24_posts a:last-child {
  margin: 10px 0 0;
  border-bottom: none;
  padding-bottom: 0;
}

.r_content .popular24_posts a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .pagination {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  list-style: none;
  padding-left: 0;
}

.r_content .pagination li {
  display: inline-block;
}

.r_content .pagination a {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .pagination .previous_page {
  color: rgba(229, 196, 29, 0.9);
  margin-right: 10px;
}

.r_content .pagination .next_page {
  color: rgba(229, 196, 29, 0.9);
  margin-left: 10px;
}

.r_content .pagination .current {
  border-bottom: 1px solid rgba(229, 196, 29, 0.9);
  font-style: normal;
  color: rgba(229, 196, 29, 0.9);
}

.r_content .pagination .disabled {
  color: #afafaf;
}

.r_content .post {
  /*post new*/
}

.r_content .post_one {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
  background-color: white;
  margin-bottom: 20px;
  padding: 25px 30px;
  border: 1px solid #d9d9d9;
}

.r_content .post_one-title {
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 24px;
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.r_content .post_one-title a {
  color: black;
}

.r_content .post_one-title a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .post_one__main-image {
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
  float: left;
}

.r_content .post_one__main-image img {
  height: 130px;
  width: 130px;
  border-radius: 65px;
}

.r_content .post_one__main_text_80 {
  width: 74.57627119%;
  float: right;
  margin-right: 0;
  float: left;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  padding-left: 20px;
}

.r_content .post_one__main_text_80_meta {
  font-family: "PT Sans", times, sans-serif;
  margin-top: 15px;
}

.r_content .post_one__main_text_80_meta-read {
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.r_content .post_one__main_text_80_meta-read a {
  color: rgba(229, 196, 29, 0.9);
  border-bottom: 1px solid rgba(229, 196, 29, 0.9);
}

.r_content .post_one__main_text_80_meta-author {
  width: 40.6779661%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r_content .post_one__main_text_80_meta-author a {
  color: #afafaf;
}

.r_content .post_one__main_text_80_meta-author a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .post_one__main_text_80_meta-comment {
  width: 15.25423729%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
  text-align: right;
}

.r_content .post_one__main_text_80_meta-hits {
  width: 15.25423729%;
  float: right;
  margin-right: 0;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
  text-align: right;
}

.r_content .post_one__main_text_100 {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.r_content .post_one__main_text_100_meta,
.r_content .post_two__main_box_meta {
  font-family: "PT Sans", times, sans-serif;
  margin-top: 15px;
}

.r_content .post_one__main_text_100_meta-read,
.r_content .post_two__main_box_meta-read {
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
  font-size: 16px;
  font-weight: bold;
}

.r_content .post_one__main_text_100_meta-read a,
.r_content .post_two__main_box_meta-read a {
  color: rgba(229, 196, 29, 0.9);
  border-bottom: 1px solid rgba(229, 196, 29, 0.9);
}

.r_content .post_one__main_text_100_meta-author,
.r_content .post_two__main_box_meta-author {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
}

.r_content .post_one__main_text_100_meta-author a,
.r_content .post_two__main_box_meta-author a {
  color: #afafaf;
}

.r_content .post_one__main_text_100_meta-author a:hover,
.r_content .post_two__main_box_meta-author a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .post_one__main_text_100_meta-comment {
  width: 15.25423729%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
  text-align: right;
}

.r_content .post_one__main_text_100_meta-hits {
  width: 15.25423729%;
  float: right;
  margin-right: 0;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
  text-align: right;
}

.r_content .post_new {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
  margin-bottom: 30px;
}

.r_content .post_new-meta {
  margin-bottom: 15px;
  color: #afafaf;
}

.r_content .post_new-meta:after {
  content: " ";
  display: block;
  clear: both;
}

.r_content .post_new-meta a {
  color: #afafaf;
}

.r_content .post_new-meta a:hover {
  color: #333333;
}

.r_content .post_new-meta span {
  display: inline-block;
  margin-left: 15px;
}

.r_content .post_new-meta span:first-child {
  margin-left: 0;
}

.r_content .post_new-meta-author {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .post_new-meta-views {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
  text-align: right;
}

.r_content .post_new-title {
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 24px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.r_content .post_new-title a {
  color: black;
}

.r_content .post_new-title a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .post_new__main {
  border: 1px solid #d9d9d9;
}

.r_content .post_new__main_box {
  background-color: white;
  padding: 30px 30px 0;
  display: block;
}

.r_content .post_new__main_box_text {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
}

.r_content .post_new__main_box_image {
  margin: 30px -30px 0;
}

.r_content .post_new__main_box_image a {
  position: relative;
  display: block;
}

.r_content .post_new__main_box_image a img {
  width: 100%;
  vertical-align: bottom;
}

.r_content .post_new__main_box_image a:after {
  display: block;
  position: absolute;
  z-index: 2;
  content: '';
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.r_content .post_new__main_box_bottom {
  padding: 15px 0;
  height: 53px;
}

.r_content .post_new__main_box_bottom:after {
  content: " ";
  display: block;
  clear: both;
}

.r_content .post_new__main_box_bottom-actions {
  width: 40.6779661%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .post_new__main_box_bottom-rating {
  width: 15.25423729%;
  float: left;
  margin-right: 1.69491525%;
  text-align: center;
  color: #afafaf;
  font-size: 23px;
  line-height: 23px;
}

.r_content .post_new__main_box_bottom-rating a {
  color: #afafaf;
}

.r_content .post_new__main_box_bottom-rating a:hover {
  color: #333333;
}

.r_content .post_new__main_box_bottom-tags {
  width: 40.6779661%;
  float: right;
  margin-right: 0;
  text-align: right;
  margin-top: -5px;
}

.r_content .post_new__main_box_bottom-tags a {
  display: inline-block;
  color: #333333;
  padding: 3px 5px;
  background: #f1f1f1;
  border-radius: 7px;
  margin: 5px 0 0 5px;
}

.r_content .post_two {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
  margin-bottom: 20px;
}

.r_content .post_two:last-child {
  border-bottom: none;
}

.r_content .post_two-title {
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  font-size: 24px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.r_content .post_two-title a {
  color: black;
}

.r_content .post_two-title a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .post_two__main {
  border: 1px solid #d9d9d9;
}

.r_content .post_two__main-image img {
  width: 100%;
  vertical-align: bottom;
}

.r_content .post_two__main_box {
  background-color: white;
  padding: 25px 30px;
  display: table;
  width: 100%;
}

.r_content .post_two__main_box_text {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
}

.r_content .post_two__main_box_image {
  margin: 30px -30px 0;
}

.r_content .post_two__main_box_image a {
  position: relative;
  display: block;
}

.r_content .post_two__main_box_image a img {
  width: 100%;
  vertical-align: bottom;
}

.r_content .post_two__main_box_image a:after {
  display: block;
  position: absolute;
  z-index: 2;
  content: '';
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.r_content .post_two__main_box_meta-icons {
  width: 23.72881356%;
  float: right;
  margin-right: 0;
  text-align: right;
}

.r_content .post_two__main_box_meta-icons span {
  white-space: nowrap;
  font-family: "PT Sans", times, sans-serif;
  color: #afafaf;
  font-size: 14px;
  text-align: right;
  margin-left: 10px;
}

.r_content .hab_left {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .hab_right {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
}

.r_content .user_t__about {
  margin-left: 42.37288136%;
  width: 57.62711864%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  text-align: right;
}

.r_content .user_t__posts-title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #afafaf;
}

.r_content .user_m__left {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .user_m__left_atitle {
  font-family: "PT Sans", times, sans-serif;
  font-size: 24px;
  color: #afafaf;
}

.r_content .user_m__left_posts {
  margin-top: 15px;
}

.r_content .user_m__right {
  width: 32.20338983%;
  float: right;
  margin-right: 0;
}

.r_content .user_m__right_comments-title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #afafaf;
}

.r_content .user_m__right_comments_list {
  margin-top: 10px;
}

.r_content .user_m__right_comments_list__cm {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.r_content .user_m__right_comments_list__cm-subject {
  font-family: "PT Sans", times, sans-serif;
  font-weight: bold;
  color: #333333;
}

.r_content .user_m__right_comments_list__cm-body {
  color: #333333;
  margin: 10px 0;
}

.r_content .user_m__right_comments_list__cm_meta-read {
  float: left;
}

.r_content .user_m__right_comments_list__cm_meta-read a {
  color: #afafaf;
}

.r_content .user_m__right_comments_list__cm_meta-read a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .user_m__right_comments_list__cm_meta-date {
  color: #afafaf;
  text-align: right;
}

.r_content .user_m__right_comments_list__cm:last-child {
  border-bottom: none;
}

.r_content .news .n_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 46px;
  font-weight: bold;
}

.r_content .news .n_main__meta {
  margin-top: 15px;
}

.r_content .news .n_main__meta-author {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  display: inline-block;
}

.r_content .news .n_main__meta-author a {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__meta-author_created_d {
  font-style: italic;
}

.r_content .news .n_main__meta-author_twitter {
  color: rgba(229, 196, 29, 0.9);
  margin-left: 5px;
}

.r_content .news .n_main__meta-counts {
  float: right;
}

.r_content .news .n_main__meta-counts_votes {
  margin-left: 5px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__meta-counts_votes a {
  color: #afafaf;
}

.r_content .news .n_main__meta-counts_votes a:hover {
  color: #333333;
}

.r_content .news .n_main__meta-counts_votes a.disabled,
.r_content .news .n_main__meta-counts_votes a.disabled:hover {
  color: #afafaf;
  cursor: default;
}

.r_content .news .n_main__meta-counts_votes a.disabled.vote,
.r_content .news .n_main__meta-counts_votes a.disabled:hover.vote {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__meta-counts_hits {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  margin-left: 5px;
}

.r_content .news .n_main__meta-counts_comments {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  margin-left: 5px;
}

.r_content .news .n_main__content {
  margin-top: 15px;
  font-family: "PT Sans", times, sans-serif;
  color: #333333;
  font-size: 18px;
  position: relative;
  max-width: calc(100%);
  margin-left: auto;
  margin-right: auto;
}

.r_content .news .n_main__content h2 {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__content_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 30px;
  left: -100px;
}

.r_content .news .n_main__content_menu li a {
  color: #333333;
}

.r_content .news .n_main__content .n_video__main,
.r_content .news .n_main__content .n_video__sub {
  margin-left: -160px;
  margin-right: -160px;
}

.r_content .news .n_main__content .n_video__main .video,
.r_content .news .n_main__content .n_video__sub .video {
  width: 100%;
  position: relative;
}

.r_content .news .n_main__content .n_video__main .video:before,
.r_content .news .n_main__content .n_video__sub .video:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.r_content .news .n_main__content .n_video__main .video iframe,
.r_content .news .n_main__content .n_video__sub .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.r_content .news .n_main__content .n_video__sub {
  margin: 0;
}

.r_content .news .n_main__content .n_img {
  position: relative;
  text-align: center;
  max-width: none;
  margin-left: -65px;
  margin-right: -65px;
}

.r_content .news .n_main__content .n_img.n_img__main {
  margin-left: -160px;
  margin-right: -160px;
}

.r_content .news .n_main__content .n_img img {
  max-width: 100%;
}

.r_content .news .n_main__content img {
  max-width: 100%;
}

.r_content .news .n_main__content a {
  color: rgba(229, 196, 29, 0.9);
  font-weight: bold;
}

.r_content .news .n_main__typo {
  margin-top: 15px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r_content .news .n_main__urls {
  margin-top: 15px;
  display: -ms-flexbox;
  display: flex;
}

.r_content .news .n_main__urls_links {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r_content .news .n_main__urls_links a {
  color: #afafaf;
}

.r_content .news .n_main__urls_links a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__urls_habs {
  width: 49.15254237%;
  float: right;
  margin-right: 0;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  text-align: right;
}

.r_content .news .n_main__urls_habs a {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .news .n_main__comments {
  margin-top: 15px;
}

.r_content .review_title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 46px;
  font-weight: bold;
}

.r_content .review_description {
  font-family: "PT Sans", times, sans-serif;
  font-size: 20px;
  margin: 15px 0;
  color: #afafaf;
}

.r_content .review_meta {
  margin-top: 15px;
}

.r_content .review_meta-author {
  width: 74.57627119%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  display: inline-block;
}

.r_content .review_meta-author a {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .review_meta-author_created_d {
  font-style: italic;
}

.r_content .review_meta-author_twitter {
  color: rgba(229, 196, 29, 0.9);
  margin-left: 5px;
}

.r_content .review_meta-counts {
  width: 23.72881356%;
  float: right;
  margin-right: 0;
  text-align: right;
}

.r_content .review_meta-counts_votes {
  margin-left: 5px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(229, 196, 29, 0.9);
}

.r_content .review_meta-counts_votes a {
  color: #afafaf;
}

.r_content .review_meta-counts_votes a:hover {
  color: #333333;
}

.r_content .review_meta-counts_hits {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  margin-left: 5px;
}

.r_content .review_meta-counts_comments {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  margin-left: 5px;
}

.r_content .review_main {
  margin-left: 8.47457627%;
  width: 83.05084746%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .review_main__content {
  font-family: "PT Sans", times, sans-serif;
  color: #333333;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.r_content .review_main__content img {
  width: 100%;
}

.r_content .review_main__content a {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .review_main__urls {
  margin-top: 15px;
  display: -ms-flexbox;
  display: flex;
}

.r_content .review_main__urls_links {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r_content .review_main__urls_links a {
  color: #afafaf;
}

.r_content .review_main__urls_links a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .review_main__urls_habs {
  width: 49.15254237%;
  float: right;
  margin-right: 0;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
  text-align: right;
}

.r_content .review_main__urls_habs a {
  color: rgba(229, 196, 29, 0.9);
  margin-right: 5px;
}

.r_content .review_main__comments {
  margin-top: 15px;
}

.r_content .review_main__typo {
  margin-top: 15px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: #afafaf;
}

.r_content .pages_about {
  display: block;
}

.r_content .pages_about .title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 46px;
}

.r_content .pages_about .intro {
  width: 600px;
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  color: #333333;
  margin: 20px 0;
}

.r_content .pages_about .category-title {
  font-family: "PT Sans", times, sans-serif;
  font-size: 16px;
  color: #333333;
  margin: 0 0 20px;
}

.r_content .pages_about .team_list {
  margin: 0 0 20px;
}

.r_content .pages_about .team_list .team_item {
  display: inline-block;
  width: 100%;
}

.r_content .pages_about .team_list .team_item__name {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  float: left;
}

.r_content .pages_about .team_list .team_item__position {
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #ccc;
  float: left;
  margin-left: 5px;
}

.r_content .pages_about .team_list .team_item__position:before {
  content: "/ ";
}

.r_content .comments input.submit {
  color: #333333;
  margin-top: 5px;
  background: none;
  padding: 0;
  border: none;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.r_content .comments input.submit:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments ol.comments {
  padding-left: 15px;
}

.r_content .comments ol.comments ol.comments {
  padding-left: 30px;
  border-left: 1px solid #f1f1f1;
}

.r_content .comments-login {
  background: #333333;
  border-bottom: 5px solid rgba(229, 196, 29, 0.9);
  color: #afafaf;
  padding: 15px 50px;
  font-size: 14px;
}

.r_content .comments-login a {
  color: #ffffff;
}

.r_content .comments-login-title {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .comments-login-all_comments {
  width: 49.15254237%;
  float: right;
  margin-right: 0;
  text-align: right;
}

.r_content .comments_form {
  background-color: #f1f1f1;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  border-bottom: 2px solid rgba(229, 196, 29, 0.9);
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
}

.r_content .comments_form__avatar {
  width: 6.77966102%;
  float: left;
  margin-right: 1.69491525%;
  text-align: center;
}

.r_content .comments_form__avatar img {
  border-radius: 25px;
  width: 50px;
}

.r_content .comments_form__field {
  width: 91.52542373%;
  float: right;
  margin-right: 0;
}

.r_content .comments_form__field_form-textarea {
  background: #FFF;
  border: 1px solid #D9D9D9;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  line-height: normal;
  padding: 10px 10px;
  width: 100%;
  outline: 0;
  resize: vertical;
  box-sizing: border-box;
  color: #333333;
  -webkit-appearance: none;
}

.r_content .comments_form__field_form-textarea:focus {
  border: 1px solid rgba(229, 196, 29, 0.9);
}

.r_content .comments_form__login {
  text-align: center;
  padding: 15px 0;
  margin: 0 auto;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
}

.r_content .comments_form__login a {
  color: #afafaf;
}

.r_content .comments_form__login a_icon {
  display: block;
}

.r_content .comments_form__login a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments,
.r_content .comments_list {
  list-style: none;
}

.r_content .comments .comments__item,
.r_content .comments_list__item {
  display: block;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}

.r_content .comments .comments__item:after,
.r_content .comments_list__item:after {
  content: " ";
  display: block;
  clear: both;
}

.r_content .comments .comments__item_avatar,
.r_content .comments_list__item_avatar {
  width: 6.77966102%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .comments .comments__item_avatar img,
.r_content .comments_list__item_avatar img {
  border-radius: 25px;
  width: 50px;
}

.r_content .comments .comments__item_votes a,
.r_content .comments_list__item_votes a {
  cursor: pointer;
}

.r_content .comments .comments__item_main,
.r_content .comments_list__item_main {
  width: 66.10169492%;
  float: left;
  margin-right: 1.69491525%;
}

.r_content .comments .comments__item_main_by,
.r_content .comments_list__item_main_by {
  display: -ms-flexbox;
  display: flex;
}

.r_content .comments .comments__item_main_by-name,
.r_content .comments_list__item_main_by-name {
  font-weight: bold;
  float: left;
}

.r_content .comments .comments__item_main_by-name a,
.r_content .comments_list__item_main_by-name a {
  color: #333333;
}

.r_content .comments .comments__item_main_by-name a:hover,
.r_content .comments_list__item_main_by-name a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments__item_main_by-date,
.r_content .comments_list__item_main_by-date {
  float: left;
  margin-left: 10px;
}

.r_content .comments .comments__item_main_by-date a,
.r_content .comments_list__item_main_by-date a {
  color: #afafaf;
}

.r_content .comments .comments__item_main_by-date a:hover,
.r_content .comments_list__item_main_by-date a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments__item_main_by-delete,
.r_content .comments_list__item_main_by-delete {
  margin-left: 10px;
}

.r_content .comments .comments__item_main_by-delete a,
.r_content .comments_list__item_main_by-delete a {
  color: #afafaf;
}

.r_content .comments .comments__item_main_by-delete a:hover,
.r_content .comments_list__item_main_by-delete a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments__item_main_body,
.r_content .comments_list__item_main_body {
  color: #333333;
  margin: 10px 0;
}

.r_content .comments .comments__item_main_actions,
.r_content .comments_list__item_main_actions {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.r_content .comments .comments__item_main_actions a,
.r_content .comments_list__item_main_actions a {
  color: #afafaf;
}

.r_content .comments .comments__item_main_actions a:hover,
.r_content .comments_list__item_main_actions a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments__item_main_actions a.disabled,
.r_content .comments .comments__item_main_actions a.disabled:hover,
.r_content .comments_list__item_main_actions a.disabled,
.r_content .comments_list__item_main_actions a.disabled:hover {
  color: #afafaf;
  cursor: default;
}

.r_content .comments .comments__item_votes,
.r_content .comments_list__item_votes {
  width: 15.25423729%;
  float: right;
  margin-right: 0;
  text-align: right;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  color: rgba(229, 196, 29, 0.9);
}

.r_content .comments .comments__item_votes a,
.r_content .comments_list__item_votes a {
  color: #afafaf;
}

.r_content .comments .comments__item_votes a:hover,
.r_content .comments_list__item_votes a:hover {
  color: #333333;
}

.r_footer {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  padding: 30px;
  height: 300px;
  background-color: #333333;
}

.r_footer__logo {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  display: table-cell;
  text-align: center;
  margin-top: 70px;
}

.r_footer__logo-icon {
  height: 100px;
}

.r_footer .copyright {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 60px;
}

.r_footer .copyright a {
  color: white;
}

.r_footer .pages {
  width: 49.15254237%;
  float: right;
  margin-right: 0;
  font-family: "PT Sans", times, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  margin-top: 60px;
}

.r_footer .pages a {
  color: white;
}

.r_footer .pages a:before {
  content: "/ ";
}

.r_footer .pages a:first-child:before {
  content: "";
}

.login_form {
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
  margin: 30px auto;
}

.login_form:after {
  content: " ";
  display: block;
  clear: both;
}

.login_form__logo {
  display: block;
  margin: 30px 0;
}

.login_form__logo-svg {
  height: 69px;
  width: 69px;
}

.login_form__close {
  height: 69px;
  width: 69px;
  float: right;
  background: #fff;
  border-radius: 2px;
}

.login_form__close .line {
  margin-top: 26px;
  left: 12px;
}

.login_form__close.active .line-1 {
  transform: translateY(6px) translateX(0) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
  -moz-transform: translateY(6px) translateX(0) rotate(45deg);
}

.login_form__close.active .line-3 {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -moz-transform: translateY(-8px) translateX(0) rotate(-45deg);
}

.login_form label {
  color: rgba(255, 255, 255, 0.5);
}

.login_form__socials {
  margin-top: 10px;
}

.login_form__socials:after {
  content: " ";
  display: block;
  clear: both;
}

.login_form__socials a {
  width: 32.20338983%;
  float: left;
  margin-right: 1.69491525%;
  padding: 11px 0;
  border-radius: 3px;
  text-align: center;
  background-color: white;
  color: rgba(229, 196, 29, 0.9);
}

.login_form__socials a:hover {
  background-color: #f0f0f0;
}

.login_form__socials a:last-child {
  float: right;
  margin-right: 0;
}

.login_form__links {
  display: inline-block;
  margin-top: 10px;
}

.login_form a {
  font-family: "PT Sans", times, sans-serif;
  color: #E5C41D;
}

.login_form form {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.login_form form h2 {
  color: white;
  font-family: "PT Sans", times, sans-serif;
  text-align: center;
}

#bukvus {
  position: fixed;
  display: none;
  bottom: 0;
  background: #282828;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: rgba(229, 196, 29, 0.9);
  font-family: "PT Sans", times, sans-serif;
  z-index: 99999;
  cursor: pointer;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

.banner_into_pblc {
  display: none;
}

.only_mobile {
  display: none;
}

.medium-insert-images.medium-insert-images-grid img {
  max-width: 100%;
  max-height: 100%;
}

.medium-insert-images img {
  cursor: pointer;
}

.medium-insert-images-grid.mediumInsert,
.medium-insert-images.medium-insert-images-grid {
  margin: .5em 0em;
}

.medium-insert-images figure img,
.mediumInsert figure img {
  max-height: 100vh;
}

body.__special .medium-insert-images figure img,
body.__special .mediumInsert figure img {
  max-height: none;
}

.laravelLike-icon {
  cursor: pointer;
}

.post-main-img {
  cursor: pointer;
  margin-top: 20px;
}

.post-main-img img {
  width: 100%;
  max-width: 100%;
  margin-left: 0px;
}

.n_img.n_img__main.post-main-img {
  margin-top: 20px;
  margin-left: -30px;
  margin-right: -30px;
}

.n_video__main,
.r_content .news .n_main__content .n_video__sub {
  margin-top: 20px;
}

.n_video__main .video,
.r_content .news .n_main__content .n_video__sub .video {
  width: 100%;
  position: relative;
}

.n_video__main .video:before,
.r_content .news .n_main__content .n_video__sub .video:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.n_video__main iframe,
.r_content .news .n_main__content .n_video__sub iframe {
  width: 100%;
  height: 100%;
  margin-left: 0px;
  position: absolute;
  left: 0;
  top: 0;
}

.n_video__main-full {
  margin-left: -30px;
  margin-right: -30px;
}

.banners-ali {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.r_navigation_t+.banners-ali {
  margin-bottom: 15px;
}

.home_right .banners-ali {
  margin-top: 15px;
}

.poost_bottom_block_subs,
.poost_bottom_block_subs * {
  font-style: italic;
}

.fa-yandex:before {
  content: url(/images/ya_14x14.ico);
}

.login_form__socials a {
  width: 24%;
  float: left;
  margin-right: 1.333333%;
  padding: 11px 0;
  border-radius: 3px;
  text-align: center;
  background-color: white;
  color: rgba(229, 196, 29, 0.9);
}

/* скрываем чекбоксы и блоки с содержанием */
.hide,
.hide+label~div {
  display: none;
}

/* вид текста label */
.hide+label {
  margin: 0;
  padding: 0;
  color: green;
  cursor: pointer;
  display: inline-block;
}

/* вид текста label при активном переключателе */
.hide:checked+label {
  color: red;
  border-bottom: 0;
}

/* когда чекбокс активен показываем блоки с содержанием  */
.hide:checked+label+div {
  display: block;
  background: #efefef;
  box-shadow: inset 3px 3px 10px #7d8e8f;
  margin-left: 20px;
  padding: 10px;
  /* чуточку анимации при появлении */
  animation: fade ease-in 0.5s;
}

/* анимация при появлении скрытых блоков */

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hide+label:before {
  background-color: rgba(229, 196, 29, 0.9);
  color: #fff;
  content: "\002B";
  display: block;
  float: left;
  font-size: 14px;
  font-weight: bold;
  height: 16px;
  line-height: 16px;
  margin: 3px 5px;
  text-align: center;
  width: 16px;
  border-radius: 50%;
}

.hide:checked+label:before {
  content: "\2212";
}

#backup {
  display: inline-block;
  background-color: rgba(229, 196, 29, 0.9);
  color: white;
  font-weight: bold;
  text-decoration: none;
  font: 11px 'geometriaextrabold', Tahoma;
  height: 40px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 5px;
  vertical-align: center;
  border: 0px;
  cursor: pointer;
}

.special_top_block {
  height: 80vh;
  background-size: cover;
  background-position: center 15%;
  position: relative;
  overflow: hidden;
}

.special_top_block:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.664));
}

.special_top_block .__inner {
  margin: 0 auto;
  width: 870px;
  max-width: 100vw;
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: calc(-845px / 2);
}

.special_top_block h1 {
  margin: 0px;
  font-size: 42px !important;
  line-height: 44px !important;
  color: white;
}

.special_top_block .__inner .n_main__meta {
  width: 900px;
  max-width: 100vw;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  gap: 30px;
}

.review_content p,
.review_content ul,
.review_content ol,
.review_content h2,
.review_content>div {
  max-width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.__special .line-left .up {
  background-color: transparent;
}

body.__special .darkmode-but i {
  color: #fff;
}

body.__special .rlogo {
  background-color: #33333380;
}

body.__special .r_content {
  padding-top: 0px;
}

.events {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.events-promo a {
  margin: 30px -30px;
  display: block;
}

.events-promo a img {
  display: block;
  width: 100%;
}

.events-year {
  text-align: center;
  margin: 30px 0 15px;
  font-family: "PT Sans", times, sans-serif;
  color: rgba(229, 196, 29, 0.9);
  font-size: 2em;
}

.events-i {
  margin-top: 10px;
}

.events-i:after {
  content: " ";
  display: block;
  clear: both;
}

.events-i-date {
  margin-left: 16.94915254%;
  width: 23.72881356%;
  float: left;
  margin-right: 1.69491525%;
  color: #afafaf;
  text-align: right;
  display: inline-block;
  margin-right: 15px;
  white-space: nowrap;
}

.events-i-info {
  width: 49.15254237%;
  float: left;
  margin-right: 1.69491525%;
}

.events-i-info a {
  color: #afafaf;
}

.events-i-info a:hover {
  color: rgba(229, 196, 29, 0.9);
}

.all_events {
  margin-top: 15px;
  display: inline-block;
  color: #afafaf;
}

.all_events:hover {
  color: rgba(229, 196, 29, 0.9);
}