@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600,700,800i&display=swap);.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%; }

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%; }

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
          -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
                  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%; }

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
          -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
                  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
          -webkit-transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1);
                  transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
          -webkit-transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
                  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
          -webkit-transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
                  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
  display: none; }

.noty_has_timeout .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10); }

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
      transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden; }

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
          transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
          animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
  cursor: pointer; }

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out; }

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0; }

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
          animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
          animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0; } }

@keyframes noty_anim_height {
  100% {
    height: 0; } }

.noty_theme__relax.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__relax.noty_bar .noty_body {
    padding: 10px; }
  .noty_theme__relax.noty_bar .noty_buttons {
    border-top: 1px solid #e7e7e7;
    padding: 5px 10px; }

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444; }

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200; }
  .noty_theme__relax.noty_type__warning .noty_buttons {
    border-color: #dfaa30; }

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 1px solid #e25353;
  color: #FFF; }
  .noty_theme__relax.noty_type__error .noty_buttons {
    border-color: darkred; }

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF; }
  .noty_theme__relax.noty_type__info .noty_buttons,
  .noty_theme__relax.noty_type__information .noty_buttons {
    border-color: #0B90C4; }

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 1px solid #7cdd77;
  color: darkgreen; }
  .noty_theme__relax.noty_type__success .noty_buttons {
    border-color: #50C24E; }

.noty_theme__metroui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
  .noty_theme__metroui.noty_bar .noty_progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20); }
  .noty_theme__metroui.noty_bar .noty_body {
    padding: 1.25em;
    font-size: 14px; }
  .noty_theme__metroui.noty_bar .noty_buttons {
    padding: 0 10px .5em 10px; }

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
  background-color: #fff;
  color: #1d1d1d; }

.noty_theme__metroui.noty_type__warning {
  background-color: #FA6800;
  color: #fff; }

.noty_theme__metroui.noty_type__error {
  background-color: #CE352C;
  color: #FFF; }

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
  background-color: #1BA1E2;
  color: #FFF; }

.noty_theme__metroui.noty_type__success {
  background-color: #60A917;
  color: #fff; }

.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__mint.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px; }
  .noty_theme__mint.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #D1D1D1;
  color: #2F2F2F; }

.noty_theme__mint.noty_type__warning {
  background-color: #FFAE42;
  border-bottom: 1px solid #E89F3C;
  color: #fff; }

.noty_theme__mint.noty_type__error {
  background-color: #DE636F;
  border-bottom: 1px solid #CA5A65;
  color: #fff; }

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7F7EFF;
  border-bottom: 1px solid #7473E8;
  color: #fff; }

.noty_theme__mint.noty_type__success {
  background-color: #AFC765;
  border-bottom: 1px solid #A0B55C;
  color: #fff; }

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__sunset.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__sunset.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__sunset.noty_type__alert .noty_progressbar,
  .noty_theme__sunset.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__sunset.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__sunset.noty_type__info .noty_progressbar,
  .noty_theme__sunset.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

.noty_theme__bootstrap-v3.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_body {
    padding: 15px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    background: transparent; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5; }

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v3.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v3.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v3.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: .25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_body {
    padding: .75rem 1.25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .5;
    background: transparent; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .75; }

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__semanticui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: .28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
  .noty_theme__semanticui.noty_bar .noty_body {
    padding: 1em 1.5em;
    line-height: 1.4285em; }
  .noty_theme__semanticui.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
  background-color: #f8f8f9;
  color: rgba(0, 0, 0, 0.87); }

.noty_theme__semanticui.noty_type__warning {
  background-color: #fffaf3;
  color: #573a08;
  box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__error {
  background-color: #fff6f6;
  color: #9f3a38;
  box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
  background-color: #f8ffff;
  color: #276f86;
  box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__success {
  background-color: #fcfff5;
  color: #2c662d;
  box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }

.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
  .noty_theme__nest.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__nest.noty_bar .noty_buttons {
    padding: 10px; }

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px; }

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__nest.noty_type__alert .noty_progressbar,
  .noty_theme__nest.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__nest.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__nest.noty_type__info .noty_progressbar,
  .noty_theme__nest.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }
@-ms-viewport {
	width: device-width;
}

html {
box-sizing: border-box;
-ms-overflow-style: scrollbar;
}

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}  

img,
iframe{
	max-width:100%
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

@media (min-width: 576px) {
.container {
	max-width: 540px;
}
}

@media (min-width: 768px) {
.container {
	max-width: 720px;
}
}

@media (min-width: 992px) {
.container {
	max-width: 960px;
}
}

@media (min-width: 1200px) {
.container {
	max-width: 1200px;
}
}

.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

.row {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}

.no-gutters {
margin-right: 0;
margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
padding-right: 0;
padding-left: 0;
}/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
@font-face {
  src: url(/fonts/SegoeUI.ttf?61bb848e77fd1ad14c8fbe4853a198fd);
  font-family: 'Segoe-UI-Regular';
}
@font-face {
  src: url(/fonts/seguisb.ttf?5040e8da248eedac256a765b697e6735);
  font-family: 'Segoe-UI-Semibold';
}
@font-face {
  src: url(/fonts/segoeuil.ttf?11fd79bcf7943677aa0a7217a8e19470);
  font-family: 'Segoe-UI-Light';
}
@font-face {
  src: url(/fonts/SegoeUIBold.ttf?60570a3f64a1fece44ebf71b43617029);
  font-family: 'Segoe-UI-Bold';
}
a { text-decoration: none !important }
.text-decoration-none{ text-decoration: none !important }

/* Cristi */
.close-link__popup{
  text-align: center;  
}

.close-link__popup i{
  margin-top: 5px;
}

.modal-body{
  font-family: "Segoe-UI-Regular";
}

.form-group.input-wrap.big{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: start;
}

.form-group.input-wrap.big .form-control{
  width: 20px;
  margin-right: 20px;
}

.modal.reason .modal-body .form-control{
  width: 20px;
  margin-right: 20px;
}



.modal_camndanou_link,
.modal_camndanou_link:hover{
  color: white !important;
}
.payment_page.orders .dop-info { padding-top: 20px }
.row-flex{
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.row-flex .input-wrap{ width: 49% }
.payment_page .dop-info,
.payment_page .place-list,
.payment_page .total-money,
.timer-wrap,
.podderjka
{
  font-family: "Segoe-UI-Regular";
}
.submit.submit-pay{
  font-family: "Segoe-UI-Semibold";
}
.orders.payment_page{
  margin-top: 0 ;
  padding-top: 0;
}
.payment_page label.checkbox, .payment_page .radio{
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font: 400 15px/16px "Segoe-UI-Regular";
}
.payment_page .radio{display:inline-block;padding-left: 0px;padding-right: 30px;}
.payment_page .radio label input[type="radio"]{margin-right:8px;}

.payment_page label.checkbox a{
  margin:0 5px;
  color: #5e7d2f;
}

.payment_page label.checkbox input{
  top: -2px;
}

.payment_page .submit{
  width: auto !important;
  border-radius: 15px;
  height: 35px !important;
  padding: 0 25px;
  text-transform: uppercase;
  margin-right: 0 !important;
}
.countdown .first ul li:first-child,
.countdown .first + div ul li:first-child{display: none;}
.orders.payment_page .pay-step2 .orders-body .right-side .form .row, 
.orders.payment_page .pay-step2 .orders-body .right-side .form .checkbox
{
  max-width:100%;
}

.payment_page .format ul li{
  color: white;
}

.payment_page form .h3.monserrat{
  font: 18px 'Segoe-UI-Semibold' !important;
  color: #b80000 !important;
  text-transform: uppercase !important;
}

.select2-container--disabled
{
  cursor: not-allowed;
  opacity:.8;
}

.select2-container--disabled .select2-selection--single, .select2-container--disabled .select2-selection{
  cursor: not-allowed !important;
}

.slider_info_top,
.navigation__dots,
.film_movies_slider,
.movies_calendar_slider{
  display: none;
}
.p,
.overlay_content,
.main-content{
  font-family: "Segoe-UI-Regular";
}

.modal .dop-info .addr {
  color: #8a8a8a;
  margin-bottom: 15px;
  font: 400 14px "Segoe-UI-Regular";
}

.modal .dop-info {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
}

.modal .pay-step1 .modal-body .center-side {
  -webkit-box-ordinal-group: 3;
  order: 2;
  padding-top: 20px;
  z-index: 90;
}

#rezervation {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  position: static !important;
  flex-wrap: wrap;
}

.modal .pay-step1 > .modal-header{
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  min-height: 70px;
  border-bottom: 1px solid #dedede;
  padding: 10px 65px 10px 25px;
  position: relative;
}

.modal .dop-info .h4 {
  color: #191919;
  font: 400 18px "Segoe-UI-Bold";
  text-transform: uppercase;
  margin-bottom: 15px;
}

.modal .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 20px;
  margin: 0;
  padding: 0;
  line-height: 38px;
  background: transparent;
  float: none;
  z-index: 1000;
}

.modal .close svg {
  width: 100%;
  height: 100%;
  fill: #FFF;
}

.error-back{
  color: #bd0000;
  font: 400 15px/18px "Segoe-UI-Regular";
  margin-top: 10px;
}

.main-content a,
#link-reservation{
  color: #5e992f;
}

.main-content h1{
  font-family: "Segoe-UI-Bold";
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.main-content h2{
  font-family: "Segoe-UI-Bold";
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 30px;
}

.main-content article ul{
  line-height: 24px;
  margin-left: 20px;
}

.main-content article ul li:before{
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 100%;
  margin-right: 10px;
  margin-bottom: 1px;
}
.main-content h3{
  font: 400 24px/30px "Segoe-UI-Bold";
}
.main-content p{
  line-height: 24px;
}

.main-content a:hover{
  text-decoration: underline;
}
.breadcrumbs ul{
  display: -webkit-box;
  display: flex;
  margin: 15px 0;
}
.breadcrumbs ul li:after{
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin: 0 9px 2px 6px;
}
.breadcrumbs ul li:last-child:after{
  display: none;
}

.overlay__age{
  color: white;
  z-index: 9999999;
  position: absolute;
  right: 8px;
  top: 12px;
  font: 400 16px/16px "Segoe-UI-Semibold";
}
.overlay__genre{
  /*margin-top:7px;*/
  /*margin-bottom:13px;*/
}

.overlay__rating{
  /*margin-bottom: 13px;*/
}
.confirm__register svg{
    width: 170px;
    fill: #5e992f;
    display: block;
    margin: 0 auto 40px;
}

.confirm__register h3{
  font-family: "Segoe-UI-Light";
  font-size: 39px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-align: center;
  color: #b80000;
}

.page
.button{
  height: 43px !important;
  border-radius: 20px !important;
  width: 230px !important;
}

.rating span{
  margin: 0 !important;
}

.rating .span2{
  margin-left: 5px !important;
  margin-right: 0px !important;
}

.rating{
  font: 12px/16px 'Segoe-UI-Regular' ;
}

.link__green,
.link__green:hover,
.checkbox_text a{
  color: #5e7d2f;
  
}

.font-seg{
  font: 400 14px/14px 'Segoe-UI-Regular';
}

.info_film_slider .slick-dots{
  display: none !important;
}
.slick-slide:focus {
  outline: none
}

.dot.active{
  background-color: rgba(93, 121, 52,0.8);
}
.slick-next,
.slick-prev{
  cursor: pointer;
}

/* Cristi */
.d-none{
  display: none !important;
}
.img_fluid {
  max-width: 100%;
  height: auto;
}
.mry {
  margin: 60px 0;
}
.nav_bar_top {
  height: 80px;
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.nav_logo {
  width: 180px;
}
.responsive_bugher_open {
  display: none;
}
.header_top_right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.header_top_right .language {
  display: -webkit-box;
  display: flex;
  margin-left: 30px;
}
.header_top_right .language .language_item {
  display: inherit;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  color: #546c31;
  font: 10px/20px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  border: 1px solid #546c31;
  margin-right: 5px;
}
.header_top_right .language .language_item.active {
  color: #fff;
  background-color: #546c31;
}
.header_top_right .language .language_item:last-child {
  margin-right: 0;
}
.header_top_right .social_link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: 60px;
}
.header_top_right .social_link li {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-right: 10px;
  text-align: center;
  font-size: 16px;
}
.header_top_right .social_link li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.header_top_right .social_link li .social_link_facebook {
  color: #fff;
  background-color: #3b5998;
  border-radius: 50%;
}
.header_top_right .social_link li .social_link_instagram i {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffce52), to(#cf3b9f));
  background: linear-gradient(#ffce52, #cf3b9f);
}
.nav-menu-bar {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.nav-menu-bar .menu-header {
  display: -webkit-box;
  display: flex;
  margin-left: 60px;
}
.nav-menu-bar .menu-header li {
  margin-right: 25px;
}
.nav-menu-bar .menu-header li:last-child {
  margin-right: 0;
}
.nav-menu-bar .menu-header li.active a:before {
  content: '';
  position: absolute;
  top: 100%;
  width: 7px;
  height: 7px;
  background-color: #546c31;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.nav-menu-bar .menu-header li a {
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  font: 15px 'Segoe-UI-Semibold';
  position: relative;
  padding: 5px 0;
}
.nav-menu-bar .menu-header li a:hover:before {
  content: '';
  position: absolute;
  top: 100%;
  width: 7px;
  height: 7px;
  background-color: #546c31;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.authorize,
.my_accounts_user {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 27px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 18px;
  cursor: pointer;
  border-radius: 15px;
  background-color: #5d7934;
  color: #fff;
}
.authorize a,
.my_accounts_user a,
.accounts_exit a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  font-size: 12px;
  line-height: 18.45px;
  font-family: 'Segoe-UI-Semibold';
}
.mr1 {
  margin-right: 12px;
  margin-top: 1px;
}
.accounts_exit {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 27px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 18px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 15px;
  background-color: #b80000;
  color: #fff;
}
.my_accounts_user {
  margin-left: 10px;
}
.header_top_right .authorize i,
.header_top_right .my_accounts_user i,
.header_top_right .accounts_exit i {
  margin-right: 15px;
  font-size: 16px;
}
.header_top_right .social_link li:last-child {
  margin-right: 0;
}
.burger_phone {
  display: none;
}
.filter {
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
  background: linear-gradient(#ededed, #fff);
  display: block; /* TODO changed */
}
.gradient-background {
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
  background: linear-gradient(#ededed, #fff);
}

.filter_all {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
          align-items: flex-end;
}
.cooming_soon {
  display: -webkit-box;
  display: flex;
  width: 155px;
  height: 32px;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #5d7934;
  text-align: center;
  border-radius: 15px;
}

.cooming_soon.by_all {
  display: -webkit-box;
  display: flex;
  width: 155px;
  height: 32px;
  -webkit-box-pack: center;
          justify-content: center;
  border:2px solid #5d7934;
  background-color: #fff;
  text-align: center;
  border-radius: 15px;
  cursor:pointer;
}

.cooming_soon.by_all.active {
  display: -webkit-box;
  display: flex;
  width: 155px;
  height: 32px;
  -webkit-box-pack: center;
          justify-content: center;
  border-color:#5d7934;
  background-color: #5d7934;
  text-align: center;
  border-radius: 15px;
}

.filter_block .filter_item:last-child{
  margin-right: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered{
  padding-right:0;
}
.cooming_soon a {
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  color: #fff;
}
.cooming_soon.by_all a {
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: none;
  
  color: #5d7934 !important;
}
.cooming_soon.by_all a:hover {
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: none;
  
  color: #5d7934 !important;
}
.active .cooming_soon.by_all{background-color: #5d7934;}
.active .cooming_soon.by_all a, .cooming_soon.by_all.active a  {
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: none;
  background-color: #5d7934;
  color: #fff !important;
  line-height:26px;
}
.cooming_soon a i {
  margin-right: 20px;
}
.book_now {
  display: -webkit-box;
  display: flex;
  padding: 0 20px;
  height: 32px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background-color: #b80000;
  text-align: center;
  border-radius: 15px;
}
.book_now:focus,
.book_now:hover {
  outline: none;
  border: none;
}
.book_now a {
  padding-left: 10px;
  padding-bottom: 2px;
  font: 16px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  color: #fff;
  outline: none;
}
.book_now span.front {
  font: 16px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  color: #fff; 
  padding-left: 10px;
}
.book_now a i {
  margin-right: 20px;
}
.filter_block {
  display: -webkit-box;
  display: flex;
}
.filter_block .filter_item {
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.filter_block .filter_item select {
  border-radius: 15px !important;
  font: 16px 'Segoe-UI-Semibold' !important;
  color: #546c31 !important;
  outline: none !important;
  position: relative !important;

  border: 2px solid;
  width: 170px;
  padding: 2px 25px 2px 15px;
  cursor: pointer;
}
.filter_block .filter_item select .active {
  background-color: #546c31 !important;;
  color: #fff !important;
  border-color: #546c31 !important;
}
.filter_block .filter_item select option:hover:before {
  background-color: #aaa;
}
.filter_block .filter_item .select2-container--default .select2-selection--single {
  border: 2px solid #5d7934;
  background-color: transparent;
  border-radius: 15px;
  outline: none;
  height: 32px;

  padding-right: 27px;
}
/*.filter_block .filter_item .multiselect {
  border: 2px solid #5d7934;
  background-color: transparent;
  border-radius: 15px;
  outline: none;
  height: 32px;
  text-transform: capitalize;
  padding-right: 27px;
}
.filter_block .filter_item .multiselect .multiselect__tags {
  border-radius: 15px !important;
  font: 16px 'Segoe-UI-Semibold' !important;
  line-height: 26px;
  color: #546c31 !important;
  outline: none !important;
  position: relative !important;
  text-transform: capitalize;
}*/
.filter_block .filter_item .select2-container--default .select2-selection--single {
  border: 2px solid #5d7934;
  background-color: transparent;
  border-radius: 15px;
  outline: none;
  height: 32px;

  padding-right: 27px;
}

.cinema_dropwdown .select2-container{
  width: 196px !important;
}

.cinema_dropwdown {
  width: 196px !important;
}

.cinema_dropwdown select {
  width: 196px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow
{
  right: -4px !important;
}
.filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: -webkit-box;
  display: flex;
  height: 90%;
  -webkit-box-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 25px;
  font: 16px 'Segoe-UI-Semibold';
  color: #5d7934;
  outline: none;

}
.filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 0;
  top: 50%;
}
.filter_block .filter_item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  display: none;
}
.filter_block .filter_item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  font-family: FontAwesome;
  content: "\F107";
  color: #5d7934;
  display: block;
  top: 60%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
.filter_block .filter_item .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0!important;
  border-bottom-right-radius: 0!important;
}
.filter_block .active .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  color: #fff;
}
.filter_block .active .select2-container--default .select2-selection--single {
  background-color: #5e7d2f;
  border-radius: 15px;
  border: none;
}
.filter_block .active .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}
.select2-search--dropdown {
  display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #dcdcdc;
  color: #000;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.select2-results__option {
  font: 14px 'Segoe-UI-Regular';
  padding: 7px 15px;
}
.select2-results__option:last-child {
  padding-bottom: 15px;
}
.select2-container--open .select2-dropdown--below {
  border: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: -1px 15px 18px -4px rgba(0, 0, 0, 0.3);
}
.filter_block .filter_item .select2-container {
  min-width: 170px!important;
}
.c_m{margin-left:10px}
.footer {
  background-color: #ededed;
  padding: 55px 0 0 0;
  overflow: auto;
}
.footer_top {
  display: -webkit-box;
  display: flex;
}
.footer_top .footer_top_item {
  width: 33.33%;
  margin-top: -15px;
}
.footer_top .footer_top_item .copyright {
  margin: 15px 0 20px 0;
}
.footer_top .footer_top_item .copyright span {
  font: 12px 'Segoe-UI-Regular';
}
.footer_top .social_link {
  display: -webkit-box;
  display: flex;
}
.footer_top .social_link li {
  display: block;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  margin-right: 10px;
}
.footer_top .social_link li:last-child {
  margin-right: 0;
}
.footer_top .social_link li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.footer_top .social_link li a i{line-height:24px;}
.footer_top .social_link li .social_link_facebook {
  color: #fff;
  background-color: #3b5998;
}
.nav_footer_block {
  width: 33.33%;
  display: -webkit-box;
  display: flex;
}
.nav_footer_block .footer-menu,
.nav_footer_block .footer-menu_1 {
  width: 40%;
}
.nav_footer_block .footer-menu li,
.nav_footer_block .footer-menu_1 li {
  margin-bottom: 15px;
}
.nav_footer_block .footer-menu li a,
.nav_footer_block .footer-menu_1 li a {
  font: 14px 'Segoe-UI-Semibold';
  color: #000000;
  position: relative;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.nav_footer_block .footer-menu li a:hover:before,
.nav_footer_block .footer-menu_1 li a:hover:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  background-color: #546c31;
  border-radius: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.payment {
  width: 33.33%;
}
.payment h3 {
  font: 17px 'Segoe-UI-Semibold';
}
.payment .payment_item {
  margin: 25px 0;
  display: -webkit-box;
  display: flex;
}
.payment .payment_item .payment_item_img {
  max-width: 80px;
  width: 100%;
  margin-right: 25px;
}
.payment .payment_item .payment_item_img:last-child {
  margin-right: 0px;
}
.footer_bottom {
  background-color: #ededed;
  margin-top: 60px;
}
.footer_bottom .footer_bottom_nav {
  padding: 25px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.footer_bottom .footer_bottom_nav li {
  margin-right: 30px;
}
.footer_bottom .footer_bottom_nav li:last-child {
  margin-right: 0;
}
.footer_bottom .footer_bottom_nav li a {
  font: 12px/24px 'Segoe-UI-Regular';
  color: #000000;
  position: relative;
}
.footer_bottom .footer_bottom_nav li a::after {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: calc(100% + 15px);
  height: 100%;
  width: 1.5px;
  background-color: #202020;
}
.footer_bottom .footer_bottom_nav li:last-child a:after {
  display: none;
}
.login-form {
  max-width: 500px;
  padding-bottom: 40px;
  margin: 0 auto;
}
.login-form h3 {
  font: 25px 'Segoe-UI-Semibold';
  color: #b80000;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.login-form .input-wrap {
  margin-bottom: 20px;
}
.login-form .input-wrap input {
  font: 18px/14px 'Segoe-UI-Regular';
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  background-color: #fafafa;
  width: 100%;
  outline: none;
}
.login-form .login_text {
  margin: 10px 0 30px 0;
}
.login-form .login_text p {
  font: 12px/18px 'Segoe-UI-Light';
  color: #6d6d6d;
}
.login-form .login-subscribe {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
          align-items: flex-end;
}
.login-form .login-subscribe .subcribe input {
  width: 170px;
  height: 30px;
  background-color: #5e7d2f;
  color: #fff;
  border-radius: 15px;
  border: none;
  font: 16px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  outline: none;
}
.cheeck_book_bottom {
  display: -webkit-box;
  display: flex;
  margin-top: 40px;
}
.cheeck_book_bottom .check_all {
  display: block;
  width: 170px;
  height: 30px;
  text-align: center;
}
.cheeck_book_bottom .cheeck_book_cheeck {
  margin-right: 20px;
}
.cheeck_book_bottom .cheeck_book_cheeck a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #b80000;
  color: #fff;
  border-radius: 15px;
  border: none;
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  outline: none;
}
.cheeck_book_bottom .cheeck_book_print a {
  width: 100%;
  display: block;
  height: 100%;
  background-color: #5e7d2f;
  color: #fff;
  border-radius: 15px;
  border: none;
  font: 16px/30px 'Segoe-UI-Semibold';
  text-transform: uppercase;
  outline: none;
}
.register {
  width: 100%;
  max-width: 708px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.register h3 {
  font: 25px 'Segoe-UI-Semibold';
  color: #b80000;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.register p,
.checkbox p
{
  font: 14px/18px 'Segoe-UI-Regular';
  margin-bottom: 20px;
}
.register .form_register {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.register .form_register .input-wrap {
  width: 49%;
  margin-bottom: 20px;
}
.register .form_register .input-wrap input,
.input {
  font: 18px/14px 'Segoe-UI-Regular';
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  background-color: #fafafa;
  width: 100%;
  outline: none;
}
.register .register_submit {
  margin-top: 35px;
}
.register .register_submit input {
  width: 160px;
  height: 30px;
  background-color: #5e7d2f;
  border-radius: 15px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  outline: none;
  font: 16px 'Segoe-UI-Semibold';
}
.cheeckbook {
  margin-bottom: 130px;
}
.checkbox_fields {
  margin-top: 20px;
}
.checkbox_fields label {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.checkbox_fields label .checkbox_text {
  font: 14px/18px 'Segoe-UI-Regular';
  margin-left: 30px;
}
.checkbox_fields label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_fields label .checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1.2px solid #546c31;
  border-radius: 2px;
}
.checkbox_fields label input:checked ~ .checkmark {
  background-color: #fff;
}
.checkbox_fields label .checkmark:after {
  position: absolute;
  display: none;
}
.checkbox_fields label input:checked ~ .checkmark:after {
  display: block;
}
.checkbox_fields label .checkmark:after {
  content: '';
  left: 4px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid #546c31;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.movies_fimls {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin: 0 -15px;
}
.movies_fimls .movies_fimls_item {
  width: 210px;
  margin: 0 15px 7px 15px;
  position: relative;
}
.movies_fimls .movies_fimls_item:hover .movies_overlay {
  opacity: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 99;
}
.movies_fimls .movies_fimls_item .img-movies {
  display: block;
  width: 100%;
  height: 315px;
  /*height: 100%;*/
}
.movies_fimls .movies_fimls_item .movies_overlay {
  position: absolute;
  top: 0;
  opacity: 0;
  bottom: 20px;
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor:pointer;
}
.movies_fimls .movies_fimls_item .movies_overlay:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.movies_fimls .movies_fimls_item .movies_overlay .overlay_content {
  width: 100%;
  position: absolute;
  bottom: 15px;
  text-align: center;
}
.movies_fimls .movies_fimls_item .movies_overlay .overlay_content img {
  width: 80px;
  margin: 0 auto;
}
.movies_fimls .movies_fimls_item .movies_overlay h3 {
  font: 18px 'Segoe-UI-Semibold';
  color: #fff;
  margin-bottom: 8px;
}
.movies_fimls .movies_fimls_item .movies_overlay p {
  color: #fff;
  font: 12px 'Segoe-UI-Regular';
  margin-top: 10px;
}
.movies_fimls .movies_fimls_item .movies_overlay .rating {
  margin-top: 5px;
}
.movies_fimls .movies_fimls_item .movies_overlay .rating span {
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  margin-right: 5px;
}
.movies_fimls .movies_fimls_item .movies_overlay .rating span:last-child {
  margin-right: 0;
}
.movies_fimls .movies_fimls_item .movies_overlay .rating .checked {
  color: #fff;
  font-weight: bold;
}
.info_film_slider {
  position: relative;
}

.info_film_slider .slider {
  padding-top: 50px;
  width: 420px;
  height: 175px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
}
.navigation__dots {
  position: absolute;
  top: 66%;
  left: 55px;
}
.navigation__dots .dot {
  margin-right: 10px;
}

.info_film_slider .slider_block_button .book_now {
  margin-top: 15px;
}
.info_film_slider .slider_block_button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.info_film_slider .slider a.dot,
.dot {
  background: transparent;
  border-radius: 50%;
  border: 1px solid #546c31;
  outline: none;
  color: #fff;
  font: 12px 'Segoe-UI-Regular';
  display: block;
  height: 20px;
  width: 20px;
  line-height: 17px;
  text-align: center;
  cursor: pointer;
}
.info_film_slider .slider .info_slider_item {
  margin-left: 25px;
  z-index: 1;
  outline: none;
}
.info_film_slider .slider .info_slider_item h3 {
  color: #fff;
  font: 22px 'Segoe-UI-Semibold';
  outline: none;
  margin-top: 5px;
}

.info_film_slider .slider .info_slider_item p {
  font: 16px 'Segoe-UI-Semibold';
  color: #fff;
  margin-bottom: 15px;
  margin-top: 5px;
}
.info_slider_item .book_now {
  min-width: 170px;
  width: 240px;
}
.info_slider_item .book_now img {
  width: 20px;
  height: auto;
}
.info_film_slider .slider .slick-dots {
  display: -webkit-box;
  display: flex;
  z-index: 9;
  margin: 20px 0 16px 25px;
}
.info_film_slider .slider .slick-dots li {
  margin-right: 10px;
}
.info_film_slider .slider .slick-dots .slick-active {
  background-color: #546c31;
  color: #fff;
  border-radius: 50%;
}

.slider_img img {
     width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; 
}

.slider_img video {
     width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.movies_readmore {
  overflow: hidden;
}
.film_movies {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
.film_movies .film_left {
  width: 44%;
}
.film_movies .film_left .movies_film_img img {
  width: 100%;
  height: auto;
}
.film_movies .film_right {
  width: 48%;
  position: relative;
  border-radius: 10px;
}
.film-box {
  box-shadow: -1px 15px 18px -4px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.film_movies .film_right .film_title {
  color: #000000;
  font: 20px 'Segoe-UI-Semibold';
  text-transform: uppercase;
}
.film_movies .film_right .film_partners {
  display: -webkit-box;
  display: flex;
  margin: 20px 0;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 20px;
}
.film_movies .film_right .film_partners .img_partner {
  width: 75px;
  height: 40px;
}
.film_movies .film_right .film_partners .img_partner img {
  width: 100%;
}
.film_movies .film_right .film_partners .film_treiler {
  display: -webkit-box;
  display: flex;
}
.film_movies .film_right .film_partners .film_treiler .show_times {
  display: -webkit-box;
  display: flex;
  min-width: 150px;
  height: 30px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 9.4px;
  background-color: #b80000;
  font: 14px 'Segoe-UI-Semibold';
  color: #fff;
  text-transform: uppercase;
  padding: 0 20px;
}
.film_movies .film_right .film_partners .film_treiler .show_times i {
  margin-right: 8px;
  color: #fff;
}
.film_movies .film_right .film_partners .film_treiler .btn-trailer {
  display: -webkit-box;
  display: flex;
  width: 150px;
  height: 30px;
  margin-left: 15px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 9.4px;
  background-color: #546c31;
  font: 14px 'Segoe-UI-Semibold';
  color: #fff;
  text-transform: uppercase;
}
.film_movies .film_right .film_partners .film_treiler .btn-trailer i {
  margin-right: 8px;
  color: #fff;
}
.film_movies .film_right .fims_cast_all {
  margin: 20px 0;
}
.film_movies .film_right .fims_cast_all h5 {
  font: 16px 'Segoe-UI-Semibold';
  color: #191919;
  text-transform: uppercase;
}
.film_movies .film_right .fims_cast_all p {
  font: 14px/24px 'Segoe-UI-Regular';
  margin-top: 5px;
  color: #202020;
}
.film_movies .film_right .fims_cast_all a.films_read_more {
  font: 12px/38px 'Segoe-UI-Regular';
  color: #000000;
}
.film_movies .film_right .fims_cast_all i {
  color: #202020;
  vertical-align: middle;
  margin-left: 3px;
}

/* De prin noul design */
.film_movies_info {
  background-color: #ededed;
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
          justify-content: center;
  z-index: 1;
  padding: 15px;
}

.film_movies_info .film_movies_info_item {
  position: relative;
  -webkit-box-flex:1;
          flex:1;
}

.img-times,
.img-trailer {
  margin-right: 7px;
}

.film_movies_info .film_movies_info_item:after {
  content: '';
  position: absolute;
  display: block;
  max-width: 1px;
  width: 100%;
  right: 0;
  top: 9%;
  height: 12px;

  background-color: #d9d9d9;
}
.film_movies_info .film_movies_info_item:first-child span {
  margin-left: 0;
}
.film_movies_info .film_movies_info_item:last-child:after {
  display: none;
}
.film_movies_info .film_movies_info_item span {
  display: block;
  margin-right: 10px;
  margin-left: 10px;
}
.film_movies_info .film_movies_info_item span h5 {
  font: 14px 'Segoe-UI-Semibold';
  color: #5e7d2f;
  margin-bottom : 0;
}

.film_movies_info .film_movies_info_item span p {
  font: 11px/21px 'Segoe-UI-Regular';
  color: #202020;
  margin-bottom: 0;
}

#rulaj-selector{
  position: absolute;
  bottom: 20px;
  width: 80%;
  right: 15px;
}
.rulaj-day{border-radius: 8px;cursor: pointer;}
.rulaj-options{
  position:absolute;
  z-idex:1;
  display:none;
  box-shadow: -1px 12px 14px -4px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #fff;
  padding-top:15px;
}

.rulaj-options ul {
  max-height: 250px;
  overflow-y: scroll;
}

.rulaj-options ul li {
  cursor: pointer;
  font-size: 14px;
  font-family: Segoe-UI-Regular;
  padding: 8px 15px;
}

.rulaj-options ul li:hover {
  background-color: #ededed;
}

.r-day {
  border-radius: 8px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  text-align: center;
  padding: 2px 15px;
  background-color: #5d7934;
  color: #fff;
  -webkit-box-align: center;
          align-items: center;
  font-size: 20px;
  font-family: Segoe-UI-Semibold;
  cursor: pointer;
}

.r-date {
  border-radius: 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  background-color: #ededed;
  text-align: center;
  padding: 4px 15px;
  font-size: 16px;
  font-family: Segoe-UI-Semibold;
}
.film_movies .film_right .film_movies_info {
  background-color: #ededed;
  display: -webkit-box;
  display: flex;
  position: relative;
   -webkit-box-pack: center;
           justify-content: center; 
  z-index: 1;
  padding: 20px 0 20px 0;
}
.film_movies .film_right .film_movies_info .film_movies_info_item {
  position: relative;
}

.img-times,
.img-trailer {
      margin-right: 7px;
}

.film_movies_info .film_movies_info_item:after {
  content: '';
  position: absolute;
  display: block;
  max-width: 1px; 
   width: 100%;
  right: 0;
  top: 9%;
 height: 12px;
  
  background-color: #d9d9d9;
}
.film_movies .film_right .film_movies_info .film_movies_info_item:first-child span {
  margin-left: 0;
}
.film_movies .film_right .film_movies_info .film_movies_info_item:last-child:after {
  display: none;
}
.film_movies .film_right .film_movies_info .film_movies_info_item span {
  display: block;
 margin-right: 10px;
 margin-left: 10px;
}
.film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
  font: 14px 'Segoe-UI-Semibold';
  color: #5e7d2f;
}

.film_movies .film_right .film_movies_info .film_movies_info_item span p {
  font: 11px/21px 'Segoe-UI-Regular';
  color: #202020;
}
.film_movies .film_right .film_movies_slider {
      margin: 0 20px;
    z-index: 1;
    padding: 30px 0;
}
.film_movies .film_right .film_movies_slider .film_movies_slider_item {
  margin: 0 12px;
  outline: none;
  position: relative;
}
.film_movies .film_right .film_movies_slider .slick-prev {
  position: absolute;
  top: 50%;
  right: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.film_movies .film_right .film_movies_slider .slick-prev i {
  color: #546c31;
  font-weight: bold;
}
.film_movies .film_right .film_movies_slider .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100%;
}
.film_movies .film_right .film_movies_slider .slick-next i {
  color: #546c31;
}
.film_movies .film_right .film_right_top {
  background-image: url(/images/movies_bg.png?26375d5d851438a1e04e7bd5b77b0940);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  position: relative;
  padding: 20px 20px 0 20px;
}
.info_films_block {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 55px;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.info_films_block .info_films_item {
  display: inherit;
  width: 31.5%;
  position: relative;
  margin-top: 25px;
}
.info_films_block .info_films_item img {
  width: 100%;
  height: 194px;
  -o-object-fit: cover;
     object-fit: cover;
}
.info_films_block .info_films_item .info_films_content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 30px;
  text-align: center;
  z-index: 99;
}

.info_films_item:after{
  content:"";
  position:absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.3);
}
.info_films_block .info_films_item .info_films_content h3 {
  font: 22px 'Segoe-UI-Semibold';
  color: #fff;
}
.info_films_block .info_films_item .info_films_content span {
  display: block;
  text-align: center;
  margin: 10px auto;
  width: 90px;
  height: 1.5px;
  background-color: #fff;
}
.info_films_block .info_films_item .info_films_content p {
  font: 16px 'Segoe-UI-Regular';
  color: #fff;
  white-space: pre-wrap;
}
.my_accounts {
  display: -webkit-box;
  display: flex;
  margin: 60px 0;
}
.my_accounts .accounts_tabs {
  width: 380px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  box-shadow: -1px 10px 15px -4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.my_accounts .accounts_tabs .prifile_bg_img {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 190px;
  /*background-image: url(../img/profilebg.png);*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: -30px;
}

.my_accounts .accounts_tabs .prifile_with_bg_img {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 190px;
  background-image: url(/images/profilebg.png?f47c632b101e7f8bedc4252f3b7084f6);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: -30px;
}
.my_accounts .accounts_tabs .profil_img {
  display: block;
  width: 145px;
  /*border-radius: 50%;*/
  height: 145px;
  margin: 0 auto;
  overflow: hidden;
}
.my_accounts .tabs_profile_navbar {
  margin-top: 10px;
}
.my_accounts .tabs_profile_navbar .tabs-profile {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}
.my_accounts .tabs_profile_navbar .tabs-profile:last-child {
  margin-bottom: 0;
}
.my_accounts .tabs_profile_navbar .tabs-profile a {
  color: #5e7d2f;
  font: 20px/18px 'Segoe-UI-Semibold';
  display: -webkit-box;
  display: flex;
  border-radius: 10px;
  -webkit-box-align: center;
          align-items: center;
  border: 2px solid #5e7d2f;
  width: 100%;
  height: 100%;
  text-align: center;
}
.my_accounts .tabs_profile_navbar .tabs-profile a.active {
  background-color: #5e7d2f;
  color: #fff;
}
.my_accounts .tabs_profile_navbar .tabs-profile a i {
  font-size: 24px;
  margin-left: 70px;
}
.my_accounts .tabs_profile_navbar .tabs-profile a span {
  margin-left: 30px;
}
.my_accounts .tabs_profile_navbar .tabs-profile:last-child {
  border-radius: 10px;
}
.my_accounts .tabs_profile_navbar .tabs-profile:last-child a {
  color: #b80000;
  border: 2px solid #b80000;
}
.my_accounts .tabs_profile_navbar .tabs-profile:last-child a.active {
  background-color: #b80000;
  color: #fff;
}
.accounts-right {
  width: 590px;
  margin-left: 30px;
}
.accounts-right .tab-content {
  display: none;
}
.info_acounts {
  margin-bottom: 20px
}
.form { margin-top: 20px }
.accounts-right .accounts_complet .info_acounts h2 {
  font: 25px 'Segoe-UI-Semibold';
  color: #b80000;
  text-transform: uppercase;
}
.accounts-right .accounts_complet .info_acounts p,
.paragraph {
  font: 14px/18px 'Segoe-UI-Regular';
  color: #202020;
  margin: 15px 0;
}
.accounts-right .accounts_complet form input {
  width: 100%;
  padding: 15px 0 15px 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  outline: none;
  font: 18px/16px 'Segoe-UI-Regular';
  background-color: #fafafa;
}
.accounts_complet .change_pass .input-wrap {
  margin-bottom: 20px
}
.accounts-right .accounts_complet .my_conts {
  display: block;
  max-width: 225px;
  margin-top: 20px;
}
.accounts-right .accounts_complet .my_conts input {
  height: 30px;
  line-height: 30px;
  padding: 0;
  background-color: #5e7d2f;
  text-transform: uppercase;
  font: 16px 'Segoe-UI-Semibold';
  border-radius: 15px;
  color: #fff;
}
.accounts-right .accounts_subscribe {
  margin-top: 50px;
}
.accounts-right .accounts_subscribe h2 {
  font: 25px 'Segoe-UI-Semibold';
  color: #b80000;
  text-transform: uppercase;
}
.accounts-right .accounts_subscribe p {
  font: 14px/18px 'Segoe-UI-Regular';
  color: #202020;
  margin: 12px 0;
  max-width: 490px;
}
.accounts-right .accounts_subscribe .accouts_country {
  display: -webkit-box;
  display: flex;
}
.accounts-right .accounts_subscribe .accouts_country .country {
  margin-right: 15px;
}
.accounts-right .tab-content.active {
  display: block;
}
.btn.focus, .btn:focus { box-shadow: none }
.my_bilet {
  border-radius: 10px;
  box-shadow: -1px 15px 18px -4px rgba(0, 0, 0, 0.3);
}
.my_bilet .my_bilet_item {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 auto;
  height: 60px;
  background-color: #fafafa;
}
.my_bilet .my_bilet_item:nth-child(even) {
  background-color: #fff;
}
.my_bilet .my_bilet_item span {
  font: 18px/16px 'Segoe-UI-Regular';
}
.my_bilet .my_bilet_item .bilet_info_left {
  color: #000000;
  max-width: 295px;
  width: 100%;
  text-align: center;
  font: 18px/16px 'Segoe-UI-Regular';
  color: #444444;
}
.my_bilet .my_bilet_item .bilet_info_right {
  color: #444444;
  max-width: 295px;
  width: 100%;
  text-align: center;
}
.my_bilet .bilet_button_bottom {
  display: -webkit-box;
  display: flex;
  padding: 30px 0 30px 30px;
}
.my_bilet .bilet_button_bottom a {
  display: inherit;
  padding: 0 20px;
  height: 30px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border: 1px solid #5e7d2f;
  margin-right: 40px;
  border-radius: 25px;
  text-transform: uppercase;
  font: 16px/16px 'Segoe-UI-Semibold';
  color: #5e7d2f;
}
.actual_comenzi h3 {
  color: #b80000;
  font: 25px 'Segoe-UI-Semibold';
  text-transform: uppercase;
}
.actual_comenzi .actual_comenzi_item {
  margin: 15px 0;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.actual_comenzi .actual_comenzi_item .number_comenzi {
  height: 30px;
  background-color: #fff;
}
.actual_comenzi .actual_comenzi_item .number_link .number_iter {
  border: 1.5px solid #5e7d2f;
}
.actual_comenzi .actual_comenzi_item .number_comenzi.active {
  border-radius: 25px;
  outline: none;
  border: none;
  border: 1.5px solid #5e7d2f;
}
.actual_comenzi .actual_comenzi_item .number_comenzi.active a {
  height: 100%;
}
.actual_comenzi .actual_comenzi_item a.active {
  background-color: #5e7d2f;
  color: #fff;
  border-radius: 15px;
}
.actual_comenzi .actual_comenzi_item a.active .number_text {
  color: #fff;
}
.actual_comenzi .number_link {
  display: -webkit-box;
  display: flex;
  width: 100%;
  color: #5e7d2f;
  padding: 0 20px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-transform: uppercase;
}
.actual_comenzi .number_link .number_iter {
  display: inherit;
  min-width: 20px;
  min-height: 21px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #b80000;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #fff;
  font: 11px 'Segoe-UI-Semibold';
  font: 11px/11px 'Segoe-UI-Semibold';
  /*padding: 3px 3px 4px;*/
}
.actual_comenzi .number_link .number_text {
  font: 16px/16px 'Segoe-UI-Semibold';
  color: #5e7d2f;
  display: inherit;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
}
.actual_comenzi .number_archive {
  font: 16px/16px 'Segoe-UI-Semibold';
  display: -webkit-box;
  display: flex;
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1.5px solid #5e7d2f;
  border-radius: 25px;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 20px;
  margin-left: 40px;
  color: #5e7d2f;
  text-transform: uppercase;
}
.actual_comenzi .number_archive i {
  margin-right: 10px;
}
.tabbilet-content {
  display: none;
}
.tabs1 .number_link.active {
  display: block;
}
.tabbilet-content.active {
  display: block;
}
.cancel_modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.4);
}
/* Modal Content */
.cancel_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px 0;
  position: absolute;
  border: 1px solid #888;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 20px;
  max-width: 655px;
  width: 100%;
}
.cancel_modal_content .close_modal {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.cancel_modal_content .close_modal .line_close {
  display: block;
  width: 38px;
  height: 2px;
  background-color: #5e7d2f;
}
.cancel_modal_content .close_modal .close {
  display: inherit;
  margin-left: 20px;
  margin-right: 20px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #5e7d2f;
  color: #fff;
  font: 18px 'Segoe-UI-Regular';
}
.cancel_modal_content .close_modal .close:hover,
.cancel_modal_content .close_modal .close:focus {
  text-decoration: none;
  cursor: pointer;
}
.cancel_modal_content .modal_content_info {
  max-width: 530px;
  width: 100%;
  text-align: center;
  margin: 60px auto;
}
.cancel_modal_content .modal_content_info h3 {
  font: 30px 'Segoe-UI-Semibold';
  color: #b80000;
  text-align: center;
  margin-bottom: 10px;
}
.cancel_modal_content .modal_content_info p {
  font: 20px 'Segoe-UI-Semibold';
  color: #323232;
}
.cancel_modal_content .modal_camndanou {
  height: 40px;
  line-height: 40px;
}
.modal_camndanou_link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  background-color: #5d7934;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Segoe-UI-Semibold';
  color: #fff;
}
.comanda_expirata .modal_camndanou_link {
  margin-top: 50px;
}
.comanda_expirata .succes_modal_content .succes_content_info h3 {
  margin-bottom: 15px;
}

.expira_modal,
.succes_modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.succes_modal_content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px 0 0 0;
  position: absolute;
  border: 1px solid #888;
  left: 50%;
  top: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  border-radius: 20px;
  max-width: 655px;
  width: 100%;
}
.md_succes {
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.md_cont {
  background-color: #fefefe;
  padding: 40px 0 0 0;
  border: 1px solid #888;
  z-index: 1;
  border-radius: 20px;
  max-width: 655px;
  width: 100%;
  margin: 0 auto;
}
.md_cont .succes_modal_top,
.succes_modal_content .succes_modal_top {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.md_cont .succes_modal_top .line_close,
.succes_modal_content .succes_modal_top .line_close {
  display: block;
  width: 38px;
  height: 2px;
  background-color: #5e7d2f;
}
.md_cont .succes_modal_top .close,
.succes_modal_content .succes_modal_top .close {
  display: inherit;
  margin-left: 20px;
  margin-right: 20px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #5e7d2f;
  color: #fff;
  font: 18px 'Segoe-UI-Regular';
  opacity: 1;
}
.md_cont .succes_content_info,
.succes_modal_content .succes_content_info {
  max-width: 530px;
  width: 100%;
  text-align: center;
  margin: 50px auto;
}
.md_cont .succes_content_info h3,
.succes_modal_content .succes_content_info h3 {
  font: 30px 'Segoe-UI-Semibold';
  color: #b80000;
  text-align: center;
  margin-bottom: 45px;
}
.md_cont .succes_content_info p,
.succes_modal_content .succes_content_info p {
  font: 20px 'Segoe-UI-Semibold';
  color: #323232;
}
.md_cont .succes_info_chek,
.succes_modal_content .succes_info_chek {
  padding: 30px 0 0 50px;
}
.md_cont .succes_info_chek .succes_info_chek_top,
.succes_modal_content .succes_info_chek .succes_info_chek_top {
  margin-bottom: 50px;
}
.md_cont .succes_info_chek .succes_info_chek_top h5,
.succes_modal_content .succes_info_chek .succes_info_chek_top h5 {
  font: 25px 'Segoe-UI-Semibold';
}
.md_cont .succes_info_chek .succes_info_chek_top p,
.succes_modal_content .succes_info_chek .succes_info_chek_top p {
  color: #323232;
  font: 16px 'Segoe-UI-Semibold';
}
.md_cont .succes_info_chek .succes_info_chek_item,
.succes_modal_content .succes_info_chek .succes_info_chek_item {
  margin-bottom: 50px;
}
.md_cont .succes_info_chek .succes_info_chek_item h5,
.succes_modal_content .succes_info_chek .succes_info_chek_item h5 {
  color: #323232;
  font: 22px 'Segoe-UI-Bold';
}
.md_cont .succes_info_chek .succes_info_chek_item p,
.succes_modal_content .succes_info_chek .succes_info_chek_item p {
  color: #323232;
  font: 20px 'Segoe-UI-Semibold';
}
.md_cont .succes_info_chek .succes_info_chek_item span,
.succes_modal_content .succes_info_chek .succes_info_chek_item span {
  color: #323232;
  font: 20px 'Segoe-UI-Semibold';
  display: block;
}
.md_cont .succes_info_chek .succes_info_chek_item a,
.succes_modal_content .succes_info_chek .succes_info_chek_item a {
  font: 20px 'Segoe-UI-Semibold';
  color: #3026f8;
}
.md_cont .info_return h5,
.succes_modal_content .info_return h5 {
  color: #323232;
  font: 22px 'Segoe-UI-Bold';
  padding-left: 50px;
  margin-bottom: 5px;
}
.md_cont .info_return .info_return_item,
.succes_modal_content .info_return .info_return_item {
  padding: 0 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.md_cont .info_return .info_return_item span,
.succes_modal_content .info_return .info_return_item span {
  font: 18px 'Segoe-UI-Regular';
}
.md_cont .info_return .info_totola_price,
.succes_modal_content .info_return .info_totola_price {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
  margin-bottom: 20px;
}
.md_cont .info_return .info_totola_price span,
.succes_modal_content .info_return .info_totola_price span {
  font: 18px 'Segoe-UI-Bold';
}
.md_cont .info_return .subtotal_price,
.succes_modal_content .info_return .subtotal_price {
  max-width: 300px;
  width: 100%;
  padding-right: 50px;
  margin-left: auto;
}
.md_cont .info_return .subtotal_price .subtotola_price_item,
.succes_modal_content .info_return .subtotal_price .subtotola_price_item {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.md_cont .info_return .subtotal_price .subtotola_price_item span,
.succes_modal_content .info_return .subtotal_price .subtotola_price_item span {
  font: 20px 'Segoe-UI-Semibold';
  color: #323232;
  margin-bottom: 3px;
}
.md_cont .info_return .total_price_all,
.succes_modal_content .info_return .total_price_all {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 40px;
  margin-top: 25px;
  background-color: #b80000;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  font-family: Segoe-UI-Bold;
  padding: 0 30px;
}
.md_cont .info_return .total_price_all span:first-child,
.succes_modal_content .info_return .total_price_all span:first-child {
  text-transform: uppercase;
}
.md_cont .info_return .bottom_info_content,
.succes_modal_content .info_return .bottom_info_content {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0 50px;
}
.md_cont .info_return .bottom_info_content p,
.succes_modal_content .info_return .bottom_info_content p {
  font: 20px 'Segoe-UI-Semibold';
  text-align: center;
  color: #323232;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_img,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_img {
  max-width: 150px;
  width: 100%;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_content,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content {
  max-width: 270px;
  width: 100%;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_content h5,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content h5 {
  font: 22px 'Segoe-UI-Bold';
  padding-left: 0;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_content p,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content p {
  text-align: left;
  font: 18px 'Segoe-UI-Semibold';
  margin-top: 10px;
  margin-bottom: 20px;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_content span,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content span {
  font: 18px 'Segoe-UI-Regular';
  color: #323232;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_price,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_price {
  margin-top: 40px;
}
.md_cont .info_return .bottom_info_content .bottom_info_content_product .product_price span,
.succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_price span {
  font: 20px 'Segoe-UI-Bold';
}
.movies_calendar {
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.3);
  margin-bottom: 60px;
  border-radius: 10px;
}
.movies_calendar_item {
  display: -webkit-box;
  display: flex;
  padding: 30px 20px;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.movies_calendar_item .movies_calendar_top {
  -webkit-box-align: center;
          align-items: center;
}
.movies_calendar_item .movies_calendar_top h3 {
  font: 25px 'Segoe-UI-Semibold';
}
.movies_calendar_slider {
  max-width: 900px;
  width: 100%;
  position: relative;
  margin-right: 15px;
}
.movies_calendar_slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #5e7d2f;
}
.movies_calendar_slider .slick-prev {
  left: 0;
  z-index: 10;
}
.movies_calendar_slider .slick-next {
  right: 0;
}
.movies_calendar_slider .movies_calendar_slider_item {
  text-align: center;
  position: relative;
  margin: 5px 23px 2px 23px;
  padding: 15px 0;
  height: 100%;
  background-color: #fff;
  outline: none;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.3);
}

.movies_calendar_slider_link.disabled{
  opacity: 0.6;
  pointer-events: none;
}
.movies_calendar_slider .movies_calendar_slider_item h3 {
  font: 19px/25px 'Segoe-UI-Semibold';
  color: #5e7d2f;
}
.movies_calendar_slider .movies_calendar_slider_item span {
  font: 16px/19px 'Segoe-UI-Regular';
  color: #000000;
}
.movies_calendar_slider .movies_calendar_slider_item.active h3 {
  color: #b80000;
}
.calendar_list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 15px 20px;
  background-color: #f8f8f8;
}
.calendar_list li {
  display: inline-block;
  width: 16.2%;
  text-align: center;
}

.calendar_list li .info_sala_right {
  margin-left: 0;
}
.calendar_list li:nth-child(even) {
  background-color: #fff;
}
.calendar_list li .info_sala_left span {
  display: block;
  font: 20px 'Segoe-UI-Regular';
  color: #000000;
}
.calendar_list li .info_sala_right {
  margin-left: 160px;
}
.calendar_list li .info_sala_right span {
  font: 20px/28px 'Segoe-UI-Semibold';
}
.calendar_list li .info_sala_right .info_time_old {
  color: #b80000;
  text-decoration: line-through;
}
.calendar_list li .info_sala_right .info_more_sala {
  padding: 0px 15px;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
  border-radius: 10.5px;
  font-size: 16px;
  color: #ededed;
  margin-left: 20px;
  background-color: #ffffff;
  cursor: pointer;
}
.calendar_list li .info_sala_right .info_more_sala.active {
  color: #5e7d2f !important;
}

/*News*/
.main-content h1.news-title {
	font-family: "Segoe-UI-Bold";
    font-size: 22px;
    margin-bottom: 14px;
}
.col3 {
	width: 33.3%;
	padding: 0 15px 30px 15px;
}
.top-news { position: relative }
.top-news .date {
	position: absolute;
	top: 10px;
	left: 15px;
	border-radius: 10px;
    background-color: #fff;
    font: 16px 'Segoe-UI-Semibold';
    padding: 5px 10px;
}
.top-news img { width: 100% }
.name {
	padding: 14px 0 8px 0;
	font: 600 22px "Segoe-UI-Bold";
}
.news-desc {
	font: 16px/24px 'Segoe-UI-Regular';
	margin-bottom: 11px;
}
.descript .hover-link {
	font: 16px 'Segoe-UI-Semibold';
}
/*Single Article*/
.col1 {
  width: 33.33%;
  padding-right: 15px;
  padding-left: 15px;
}
.col2 {
  width: 66.66%;
    padding-right: 15px;
    padding-left: 15px;
}
.news-one h2 {
  font: 22px 'Segoe-UI-Semibold';
}
.news-one h3 {
  font: 20px 'Segoe-UI-Semibold';
}
.news-one .date {
  font: 16px 'Segoe-UI-Regular';
  margin-top: 25px;
  margin-bottom: 14px;
}
.news-slider { margin-bottom: 19px }
.news-slider .num { display: none }
.related-title {
  font: 600 22px "Segoe-UI-Bold";
  margin-bottom: 22px;
}
.mb3 { margin-bottom: 30px }
.col5 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}
.preset-movie .title-movie a {
  font: 20px 'Segoe-UI-Semibold';
  color: #000;
  text-transform: uppercase;
}
.preset-movie .janr li a {
  font: 20px 'Segoe-UI-Regular';
  color: #525252;
}
.preset-movie .rating {
  font: 20px 'Segoe-UI-Regular';
  padding-top: 10px;
  padding-bottom: 10px;
}
.single-date {
  font: 16px 'Segoe-UI-Regular';
  margin-bottom: 16px;
}

/*Cinematografe*/
.news-one h1 {
  margin-bottom: 18px;
  font: 600 22px "Segoe-UI-Bold";
}
.kino-left {
  width: 33.33%;
  padding-right: 15px;
  padding-left: 15px;
}
.kino-left img { width: 100% }
.kino-left .cine-title {
  padding-top: 16px;
  padding-bottom: 23px;
  font: 600 22px "Segoe-UI-Bold";
  color: #4f4f4f;
  text-transform: uppercase;
}
.kino-left .cine-desc {
  font: 16px/25px 'Segoe-UI-Regular';
}
.cine-share .h5 {
  font: 600 18px "Segoe-UI-Bold";
}
.kino-right {
  width: 66.66%;
  padding-right: 15px;
  padding-left: 15px;
}
.col50 {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
.col50 .strong,
.col50 .p.strong {
  font-weight: 600;
  font: 16px 'Segoe-UI-Semibold';
}
.col50 .p {
  font: 16px 'Segoe-UI-Regular';
}
.kino-right .cine-title {
  font: 16px 'Segoe-UI-Semibold';
  color: #5d7934;
  padding-top: 12px;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.under { text-decoration: underline !important }
.mb6 { margin-bottom: 60px }
.mt6 { margin-top: 60px }
.visible-xs { display: none }


/*Pagini informații*/
.news-one strong { font-weight: 600 }
.news-one p,
.news-one span,
.news-one h2,
.news-one h2 strong {
  color: #000000 !important
}


/*Hall*/
.title-mov {
  font: 600 25px "Segoe-UI-Bold";
}
.title-mov span {
  font: 600 25px "Segoe-UI-Bold";
  color: #5d5d5d
}
.format ul li {
  font: 16px/18px 'Segoe-UI-Regular';
}
.orders .dop-info { border-top: 0 !important }
.dop-info .titlen {
  font: 20px 'Segoe-UI-Semibold';
}
.dop-info .desc {
  font: 16px/18px 'Segoe-UI-Regular';
}
.dop-info .dates {
  font: 16px/18px 'Segoe-UI-Regular';
}

.tooltip-inner {
  background-color: #fff !important
}
.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #fff !important
}
.tooltip.show{
  top: 3px !important;
  /*left: 9px !important;*/
}
.place-holder {
  width: 160px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #000;
}
.place-holder .holder-left,
.place-holder .holder-right {
  width: 50%;
}
.place-holder .holder-left {
  border: 1px solid #000;
  border-radius: 5px;
  border: 1px solid #ddd;
}


.def-height {
  min-height: 60vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
.title-error {
  margin-bottom: 18px;
  font: 600 32px "Segoe-UI-Bold";
}
.desc-error {
  font: 20px 'Segoe-UI-Semibold';
    color: #b80000;
}
.btns-error {
  margin-top: 20px
}
.btns-error .btn {
  height: 27px;
  padding: 0 18px;
  cursor: pointer;
  border-radius: 15px;
  background-color: #5d7934;
  color: #fff;
  font: 16px 'Segoe-UI-Semibold';
  margin: 10px 15px
}


#phoneReservationModal .modal-header .span { font: 16px 'Segoe-UI-Semibold' }
#phoneReservationModal .dop-info .h4 { font: 600 22px "Segoe-UI-Bold" }

.succes_btns {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.btn_next {
    font: 16px/30px 'Segoe-UI-Semibold';
    text-transform: uppercase;
    color: #fff;
    display: -webkit-box;
    display: flex;
    min-width: 170px;
    height: 32px;
    -webkit-box-pack: center;
            justify-content: center;
    background-color: #b80000;
    text-align: center;
    border-radius: 15px;
    padding: 0 20px;
}
.btn_next:hover {
  color: #fff
}
.loc_rind {
  color: #8a8a8a;
  margin-top: 0px;
  margin-bottom: 0px;
  font: 16px/24px 'Segoe-UI-Regular' !important;
}


#returnReasonModal .modal-body .form-control {
  width: 15px !important;
  margin-right: 15px !important;
}
#returnReasonModal .modal-header .span { font: 16px 'Segoe-UI-Semibold' }
#returnReasonModal .modal-body .h5 {
    font: 400 14px "Segoe-UI-Regular" !important;
    margin-bottom: 15px !important;
}
#returnReasonModal .modal-body p,
#returnReasonModal .modal-body .input-wrap label { font: 400 14px "Segoe-UI-Regular"; }
#returnReasonModal .modal-body .submit {
    min-width: 220px !important;
    width: 220px !important;
    border-radius: 25px !important;
    text-transform: uppercase !important;
    font: 16px/16px 'Segoe-UI-Semibold' !important;
    background-color: #5e7d2f !important;
    color: #fff !important;
}
#returnReasonModal .modal-body .submit:focus {
    outline: none !important;
}

.my_bilet .my_bilet_item.roundbr { border-radius: 10px }
.bilet_info_right a { color: #5e7d2f; }

.movies_calendar_top a, .movies_calendar_top a:hover, .movies_calendar_top a:focus, .movies_calendar_top a:active{
  margin:10px auto;
  display: inline-block;
  min-width:120px;
  font: 16px 'Segoe-UI-Semibold';
  color: #5d7934 !important;
  border-radius: 16px;
  border:2px solid #5d7934 !important;
  border-color:#5d7934 !important; 
  padding:2px 16px;
  background-color:transparent;
  cursor:pointer;
  text-align:center;
  margin:15px 10px;
  opacity:.8;
}
.movies_calendar_top a:hover, .movies_calendar_top a:focus, .movies_calendar_top a:active{opacity:1;}
.movies_calendar_top a.active{background-color:#5d7934; color:#fff !important;opacity:1;}

@media only screen and (max-width: 1200px) {
  .info_films_block .info_films_item img{height: 154px;}
  .nav_logo {
    width: 150px;
  }
  .nav-menu-bar .menu-header li a {
    font: 13px 'Segoe-UI-Semibold';
  }
  .nav-menu-bar .menu-header {
    margin-left: 30px;
  }
  .authorize,
  .my_accounts_user,
  .accounts_exit {
    height: 25px;
    padding: 0 15px;
  }
  .authorize a,
  .my_accounts_user a,
  .accounts_exit a {
    line-height: 25px;
    font-size: 12px;
  }
  .header_top_right .language {
    margin-left: 20px;
  }
  .header_top_right .authorize i,
  .header_top_right .my_accounts_user i,
  .header_top_right .accounts_exit i {
    margin-right: 15px;
    font-size: 14px;
  }
  .header_top_right .social_link {
    margin-left: 20px;
  }
  .filter_block .filter_item select {
    font: 13px 'Segoe-UI-Semibold';
    padding-left: 10px;
    border: 1.5px solid #546c31;
  }
  .filter_block .filter_item .select2-container {
    min-width: 140px !important;
  }
  .filter_block .filter_item.cinema_dropwdown .select2-container
  {
    width: 171px !important;
  }
  .filter_all .book_now,
  .cooming_soon {
    /*width: 140px;*/
    height: 27px;
    padding: 0 15px;
  }
  .cooming_soon { 
    width: 130px;
    margin-right: 0px;
  }
  .filter_all .book_now a,
  .cooming_soon a {
    font: 11px/25px 'Segoe-UI-Semibold';
  }

  .filter_all .book_now a{
    padding-left:4px;
  }
  .filter_all .book_now a i,
  .cooming_soon a i {
    margin-right: 10px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single {
    height: 27px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__rendered {
    font: 14px 'Segoe-UI-Semibold';
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    top: 55%;
  }
  .info_film_slider .slider .info_slider_item h3 {
    font: 20px 'Segoe-UI-Semibold';
  }
  .info_film_slider .slider .info_slider_item p {
    font: 14px 'Segoe-UI-Semibold';
    margin-top: 5px;
  }
  /* .info_film_slider {
    height: 500px;
  } */
  .filter_block .filter_item {
    margin-right: 7px;
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item:after {
    top: 7%;
  }
  .movies_fimls .movies_fimls_item {
    width: 162px;
  }
  .info_films_block .info_films_item .info_films_content p {
    font: 14px 'Segoe-UI-Regular';
    color: #fff;
    white-space: pre-wrap;
  }
  .info_films_block .info_films_item .info_films_content {
    padding: 0px 15px;
  }
  .film_movies .film_right .film_partners .film_treiler .btn-trailer,
  .film_movies .film_right .film_partners .film_treiler .show_times {
    width: 120px;
    font: 12px 'Segoe-UI-Semibold';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item:after {
   height: 10px;
    
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
    font: 10px 'Segoe-UI-Semibold';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span p {
    font: 9px/16px 'Segoe-UI-Regular';
  }
 
  .film_movies .film_right {
    width: 50%;
  }
  .cancel_modal_content {
    max-width: 600px;
  }
  .movies_calendar_slider {
    max-width: 650px;
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    margin-left: 20px;
    margin-right: 20px;
 }
 .navigation__dots {
    /*top: 57%;*/ /*TODO changed*/
  }
  .descript .janr { margin-bottom: 7px }

  .preset-movie .rating {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 992px) {
  .info_films_block .info_films_item img{height: 115px;}
  .nav_logo {
    width: 100px;
  }
  .authorize {
    height: 20px;
    line-height: 20px;
    padding: 0 15px;
    font-size: 10px;
    margin-right: 15px;
  }
  .authorize a {
    line-height: inherit;
  }
  .nav-menu-bar .menu-header {
    margin-left: 15px;
  }
  .nav-menu-bar .menu-header li {
    margin-right: 5px;
  }
  .header_top_right .social_link li {
    margin-right: 5px;
  }
  .header_top_right .social_link li:last-child {
    margin-right: 0;
  }
  .header_top_right .social_link {
    margin-left: 10px;
  }
  .authorize a,
  .my_accounts_user a,
  .accounts_exit a {
    line-height: 20px;
    font-size: 10px;
  }
  .header_top_right .authorize i,
  .header_top_right .my_accounts_user i,
  .header_top_right .accounts_exit i {
    margin-right: 10px;
    font-size: 10px;
  }
  .authorize,
  .my_accounts_user,
  .accounts_exit {
    height: 20px;
    padding: 0 10px;
  }
  .nav-menu-bar .menu-header li a {
    font: 10px 'Segoe-UI-Semibold';
  }
  .header_top_right .social_link {
    margin-left: 10px;
  }
  .header_top_right .language {
    margin-left: 10px;
  }
  .header_top_right .language .language_item {
    width: 20px;
    height: 20px;
    font-size: 8px;
    border: 1px solid #546c31;
  }
  .header_top_right .social_link li {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .filter_block .filter_item select {
    padding-left: 10px;
    height: 25px;
    border: 1.2px solid #546c31;
    line-height: 25px;
  }
  .filter_block .filter_item .select2-container {
    min-width: 80px!important;
    width: 110px!important;
  }
  .filter_block .filter_item.cinema_dropwdown .select2-container
  {
    width: 126px !important;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__rendered {
    font: 11px 'Segoe-UI-Semibold';
    padding-left: 10px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    right: 20%;
    font-size: 12px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single {
    border: 1.5px solid #546c31;
  }
  .select2-results__option {
    padding: 3px 10px;
    font: 10px 'Segoe-UI-Regular';
  }
  .select2-results__option:last-child {
    padding-bottom: 7px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    right: 20%;
    font-size: 12px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single {
    height: 20px;
  }
  .cooming_soon {
    margin-right: 10px;
    width: 90px;
  }
  .filter_all .book_now,
  .cooming_soon {
    /*width: 100px;*/
    height: 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 0 7px;
  }
  .cooming_soon { padding: 0 5px; }
  .book_now { padding: 0 10px }
  .filter_all .book_now a,
  .cooming_soon a {
    font: 9px 'Segoe-UI-Semibold';
  }
  .movies_fimls {
    margin: 0 -10px;
  }
  .movies_fimls .movies_fimls_item {
    margin: 0 10px 20px 10px;
    width: 156px;
  }
  .filter_block .filter_item {
    margin-right: 5px;
  }
  .footer_top .footer_top_item {
    width: 40%;
  }
  .footer_top_item .logo {
    width: 120px;
  }
  .footer_top .footer_top_item .copyright span {
    font: 9px 'Segoe-UI-Regular';
  }
  .nav_footer_block .footer-menu,
  .nav_footer_block .footer-menu_1 {
    width: 40%;
  }
  .nav_footer_block .footer-menu li a,
  .nav_footer_block .footer-menu_1 li a {
    font: 12px 'Segoe-UI-Semibold';
  }
  .nav_footer_block {
    width: 40%;
    display: -webkit-box;
    display: flex;
  }
  .payment {
    width: 40%;
  }
  .info_films_block .info_films_item .info_films_content h3 {
    font: 14px 'Segoe-UI-Semibold';
  }
  .info_films_block .info_films_item .info_films_content p {
    font: 10px/16px 'Segoe-UI-Regular';
  }
  .film_movies .film_left {
    width: 40%;
  }
  .film_movies .film_right {
    width: 55%;
  }
  .film_movies .film_right .film_partners .film_treiler {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .film_movies .film_right .film_partners .film_treiler .btn-trailer {
    margin-left: 0;
    margin-top: 10px;
    height: 22px;
    font: 11px 'Segoe-UI-Semibold';
    min-width: 150px;
  }
  .film_movies .film_right .film_partners .film_treiler .show_times {
    height: 22px;
    font: 11px 'Segoe-UI-Semibold';
    padding: 0 10px;
    min-width: 150px;
  }
  .film_movies .film_right .fims_cast_all p {
    font: 12px/20px 'Segoe-UI-Regular';
  }
  .my_bilet .my_bilet_item .bilet_info_left {
    font: 16px/15px 'Segoe-UI-Regular';
  }
  .film_movies .film_right .film_movies_info {
    padding-left: 5px;
    padding-right: 5px;
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span p {
    font: 8px/14px 'Segoe-UI-Regular';
    /* max-width: 52px; */
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
    font: 9px 'Segoe-UI-Semibold';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span {
    margin-right: 8px;
    margin-left: 8px;
  }

  .film_movies .film_right .film_partners{ padding-right: 0 }
 

  .film_movies .film_right .film_movies_slider {
    margin: 15px 20px;
  }
  .film_movies .film_right .film_movies_slider .film_movies_slider_item {
    margin: 0 7px;
  }
  .accounts-right {
    width: 500px;
  }
  .accounts-right .tab-content .accounts_complet .info_acounts h2 {
    font: 20px 'Segoe-UI-Semibold';
  }
  .accounts-right .tab-content .accounts_complet .info_acounts p {
    font: 12px/16px 'Segoe-UI-Regular';
  }
  .accounts-right .tab-content .accounts_subscribe h2 {
    font: 19px 'Segoe-UI-Semibold';
  }
  .accounts-right .tab-content .accounts_complet .my_conts input {
    height: 30px;
    font: 14px 'Segoe-UI-Semibold';
    margin-top: 10px;
  }
  .my_accounts .tabs_profile_navbar .tabs-profile {
    height: 40px;
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a {
    font: 16px/18px 'Segoe-UI-Semibold';
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a span {
    margin-left: 20px;
  }
  .actual_comenzi .number_link,
  .actual_comenzi .number_archive {
    height: 25px;
    font: 13px 'Segoe-UI-Semibold';
  }
  .actual_comenzi .number_archive {
    margin-left: 30px;
  }
  .actual_comenzi .number_link .number_text {
    font: 13px 'Segoe-UI-Semibold';
  }
  .my_bilet .bilet_button_bottom a {
    height: 25px;
    margin-right: 20px;
    padding: 0 15px;
    font: 13px/25px 'Segoe-UI-Semibold';
  }
  .my_bilet .bilet_button_bottom {
    padding: 20px 0 20px 30px;
  }
  .actual_comenzi .actual_comenzi_item .number_comenzi {
    height: 25px;
  }
  .my_bilet .my_bilet_item {
    height: 50px;
  }
  .my_bilet .my_bilet_item span {
    font: 16px/14px 'Segoe-UI-Regular';
  }
  .movies_calendar_slider {
    max-width: 500px;
 }

 .slider_img  {
   /*height: 440px;*/
   width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
 }

 	/*News*/
	.col3 {
		width: 50%;
	}

  .preset-movie .title-movie a,
  .preset-movie .h3.title-movie {
    font: 14px/16px 'Segoe-UI-Semibold';
  }
  .descript .janr {
    margin-bottom: 5px;
  }
  .preset-movie .janr li a {
    font: 16px 'Segoe-UI-Regular';
  }
  .preset-movie .rating {
    font: 16px 'Segoe-UI-Regular';
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow{right: -2px !important;}
  .accounts-right .accounts_complet .my_conts { margin-top: 0 }
}
@media only screen and (max-width: 767px) {
  .button--no-margin {
    margin-top: 5px;
  }

  .spectacole-timeline {
    font-size: 13px;
  }

  .form form .my_conts input { margin-top: 20px !important }
  .c_m{margin-left:0}
  .info_films_block .info_films_item img{height: 268px;}
  .nav_bar_top {
    display: none;
  }
  .nav_bar_top.active {
    display: block;
    min-height: 100vh;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
  .select2-results__option {
    padding: 3px 10px;
    font: 14px 'Segoe-UI-Regular';
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    right: 50%;
    font-size: 16px;
  }
  .nav-menu-bar .menu-header li .active:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    left: 100%;
    margin-left: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
  }
  .nav-menu-bar .menu-header li a:hover:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 15px;
  }
  .burger_phone {
    display: block;
    height: 75px;
    line-height: 75px;
    position: relative;
  }
  .burger_phone .nav_logo {
    width: 160px;
    display: inline-block;
  }
  .burger_phone .nav_logo img {
    vertical-align: middle;
  }
  .burger_phone .mobile_dispaly {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .nav-menu-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  .nav-menu-bar .menu-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-left: 0;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .nav-menu-bar .nav_logo {
    display: none;
  }
  .header_top_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  .header_top_right .social_link {
    margin-left: 0;
  }
  .nav-menu-bar .menu-header {
    margin-top: 40px;
  }
  .nav-menu-bar .menu-header li {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .nav-menu-bar .menu-header li a {
    font: 18px 'Segoe-UI-Semibold';
  }
  .header_top_right .authorize i,
  .header_top_right .my_accounts_user i,
  .header_top_right .accounts_exit i {
    margin-right: 15px;
    font-size: 16px;
  }
  .authorize,
  .my_accounts_user,
  .accounts_exit {
    height: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  .authorize a,
  .my_accounts_user a,
  .accounts_exit a {
    font-size: 12px;
    line-height: inherit;
  }
  .my_accounts_user {
    margin-left: 0;
  }
  .header_top_right .language {
    margin-left: 0px;
  }
  .accounts_exit {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .my_accounts_user {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .language {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .social_link {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .login-form h3 {
    font: 20px 'Segoe-UI-Semibold';
    margin-bottom: 15px;
  }
  .cheeckbook {
    margin-bottom: 30px;
  }
  .cheeck_book_bottom {
    margin-top: 30px;
  }
  .bar1,
  .bar2,
  .bar3 {
    width: 30px;
    height: 4px;
    background-color: #5e7d2f;
    margin: 5px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 7px);
            transform: rotate(-45deg) translate(-7px, 7px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
    transform: rotate(45deg) translate(-6px, -6px);
  }
  .authorize {
    margin-bottom: 25px;
  }
  .language {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .authorize {
    height: 30px;
    padding: 0 30px;
    font-size: 15px;
    line-height: 30px;
    font-family: 'Segoe-UI-Semibold';
  }
  .header_top_right .language .language_item {
    width: 35px;
    height: 35px;
    font: 15px/25px 'Segoe-UI-Semibold';
    margin-right: 15px;
  }
  .header_top_right .social_link li {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    margin-right: 15px;
  }
  .filter_all {
    flex-wrap: wrap;
  }
  .filter_block {
    flex-wrap: wrap;
    display: block;
    width: 100%;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .filter {
    padding-top: 0;
  }
  .filter_block .filter_item {
    width: 48%;
    margin-right: 0;
    /*margin-bottom: 15px;*/
  }
  #newfilter .filter_item{
  /*margin-right: 5px;*/
}
  .filter_block .filter_item select {
    width: 100%;
    font: 13px 'Segoe-UI-Semibold';
    padding-left: 10px;
    border: 1.5px solid #546c31;
    height: 30px;
  }
  .filter_block .filter_item .select2-container,
  .filter_block .filter_item.cinema_dropwdown .select2-container {
    width: 100%!important;
  }
  
  .filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__rendered {
    font: 16px 'Segoe-UI-Semibold';
    padding-left: 15px;
  }
  .filter_block .filter_item .select2-container--default .select2-selection--single {
    height: 30px;
  }
  .cooming_soon {
    margin-right: 0;
    margin-left:0 !important;
  }
  .filter_all .book_now,
  .cooming_soon {
    width: 100%;
    margin-top: 25px;
    height: 32px;
  }
  .filter_all .book_now a,
  .cooming_soon a {
    font: 15px/30px 'Segoe-UI-Semibold';
    letter-spacing: 1px;
  }
   .coomin_soon.home{margin-left:0 !important;}
  .footer_top {
    flex-wrap: wrap;
  }
  .footer_top .footer_top_item {
    width: 50%;
  }
  .nav_footer_block {
    display: -webkit-box;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .nav_footer_block .footer-menu, 
  .nav_footer_block .footer-menu_1 {
    width: 100%;
  }
  .register .form_register .input-wrap input,
  .input {
    padding: 10px 15px;
  }
  .register p,
  .checkbox p {
    font: 12px/18px 'Segoe-UI-Regular';
  }
  .info_films_block .info_films_item {
    width: 100%;
  }
  .info_films_block .info_films_item .info_films_content {
    padding: 0px 30px;
  }
  .info_films_block .info_films_item .info_films_content h3 {
    font: 22px 'Segoe-UI-Semibold';
  }
  .info_films_block .info_films_item .info_films_content p {
    font: 16px 'Segoe-UI-Regular';
  }
  .info_film_slider .slider_block_button {
    left: 50%;
    bottom: 0;
    /*transform: translateX(-50%);*/ /*TODO changed*/
  }
  .info_film_slider .slider {
    width: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
   
  }
  .film_movies {
    flex-wrap: wrap;
  }
  .film_movies .film_left {
    width: 100%;
  }
  .film_movies .film_right {
    width: 100%;
  }
  .film_movies .film_right .fims_cast_all p {
    font: 14px/24px 'Segoe-UI-Regular';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
    font: 13px 'Segoe-UI-Semibold';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span p {
    font: 11px/18px 'Segoe-UI-Regular';
    /* max-width: 70px; */
    margin-top: 2px;
  }
  .film_movies .film_right .film_movies_info {
    padding: 15px 0 15px 15px!important;
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item:after {
    height: 12px;
    top: 9%;
  }
  .my_accounts {
    flex-wrap: wrap;
  }
  .my_accounts .accounts_tabs {
    width: 100%;
    box-shadow: none;
  }
  .mobile_profiles {
    display: -webkit-box;
    display: flex;
    max-width: 200px;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .my_accounts .tabs_profile_navbar .tabs-profile {
    position: relative;
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a {
    padding-left: calc(100% - 65%);
    width: 100%;
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a i {
    margin-left: 0;
  }
  .film_right {
    margin-top: 40px;
  }
  .accounts-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .accouts_country {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .accounts-right .tab-content .accounts_complet .info_acounts p {
    font: 14px/18px 'Segoe-UI-Regular';
  }
  .accounts-right .tab-content .accounts_complet .my_conts input {
    font: 16px/16px 'Segoe-UI-Semibold';
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a span {
    margin-left: 30px;
  }
  .my_bilet .my_bilet_item .bilet_info_left {
    text-align: left;
    padding: 0 15px;
  }
  .my_bilet .bilet_button_bottom {
    padding-left: 15px;
  }
  .my_bilet .bilet_button_bottom a {
    padding: 0;
    width: 100%;
  }
  .cancel_modal_content .modal_content_info {
    margin: 40px auto;
  }
  .cancel_modal_content .modal_content_info h3 {
    font: 27px 'Segoe-UI-Semibold';
  }
  .cancel_modal_content .modal_content_info p {
    font: 16px 'Segoe-UI-Semibold';
  }
  .cancel_modal_content {
    max-width: 90%;
  }
  .cancel_modal_content .modal_content_info {
    max-width: 430px;
  }
  .succes_modal_content {
    max-width: 95%;
  }
  .succes_modal_content .succes_content_info {
    margin: 30px auto;
  }
  .succes_modal_content .succes_content_info h3 {
    font: 20px 'Segoe-UI-Semibold';
    margin-bottom: 25px;
  }
  .succes_modal_content .succes_content_info p {
    font: 18px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .succes_modal_content .succes_info_chek .succes_info_chek_top h5 {
    font: 18px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .succes_info_chek .succes_info_chek_item h5 {
    font: 18px 'Segoe-UI-Bold';
  }
  .succes_modal_content .succes_info_chek .succes_info_chek_item p {
    font: 18px 'Segoe-UI-Semibold';
    margin: 5px 0;
  }
  .succes_modal_content .succes_info_chek .succes_info_chek_top {
    margin-bottom: 40px;
  }
  .succes_modal_content .succes_info_chek .succes_info_chek_item {
    margin-bottom: 40px;
  }
  .succes_modal_content .info_return h5 {
    font: 18px 'Segoe-UI-Bold';
  }
  .succes_modal_content .info_return .info_return_item span {
    font: 16px 'Segoe-UI-Regular';
  }
  .succes_modal_content .info_return .info_totola_price span {
    font: 14px 'Segoe-UI-Bold';
  }
  .succes_modal_content .info_return .subtotal_price .subtotola_price_item span {
    font: 14px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .info_return .bottom_info_content p {
    font: 18px/28px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .info_return .bottom_info_content {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 50px;
  }
  .succes_modal_content .info_return .total_price_all {
    font-size: 18px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content h5 {
    font: 18px 'Segoe-UI-Bold';
    padding-left: 0;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content {
    max-width: 200px;
    margin-left: 40px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content p {
    font: 14px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_price {
    margin-left: auto;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_img {
    max-width: 130px;
  }
  .movies_calendar_slider {
    max-width: 80%;
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    margin-left: 20px;
    margin-right: 20px;
 }
  .movies_calendar_slider {
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
 }
  .film_movies .film_right .film_movies_info {
    padding: 15px;
 }
  .movies_calendar_slider .movies_calendar_slider_item h3 {
    font: 16px/21px 'Segoe-UI-Semibold';
 }
  .movies_calendar_slider .movies_calendar_slider_item span {
    font: 14px/17px 'Segoe-UI-Regular';
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    padding: 10px 0;
 }
  .movies_calendar_item .movies_calendar_top h3 {
    font: 20px 'Segoe-UI-Semibold';
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    margin-left: 15px;
    margin-right: 15px;
 }
  .movies_calendar_item {
    padding: 0 10px 0 20px;
 }
  .movies_calendar_slider {
    margin-right: 0;
 }
  .calendar_list li .info_sala_left span {
    font: 16px 'Segoe-UI-Regular';
 }
  .calendar_list li .info_sala_right {
    margin-left: 100px;
 }
  .calendar_list li .info_sala_right span {
    font: 16px/24px 'Segoe-UI-Semibold';
 }
 /*News*/
.col2,
.col1,
.col3 { width: 100% }

.preset-movie .title-movie a {
    font: 18px 'Segoe-UI-Semibold';
  }
  .preset-movie .janr li a {
    font: 18px 'Segoe-UI-Regular';
  }
  .preset-movie .rating {
    font: 18px 'Segoe-UI-Regular';
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .descript .janr {
       margin-bottom: 0; 
  }



  /*Cinematograf*/
  .kino-left,
  .kino-right {
    width: 100%;
  }

  .kino-left { padding-bottom: 50px }

  .cooming_soon { -webkit-box-ordinal-group: 4; order: 3 }
  .coomin_soon.home{margin-left:0 !important;}
  .cooming_soon.by_all{width:100%;margin-top:19px;border-width: 2px;}

  /*Header*/
  .accounts_exit { margin-left: 0 }
 
  .actual_comenzi h3 {
    font: 21px 'Segoe-UI-Semibold';
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 575px) {
  .row-flex .input-wrap{
    width: 100%;
  }
  .info_films_block .info_films_item img{max-height: 276px;}
  .footer {
    padding-top: 35px;
  }
  .footer_top_item .logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer_top .footer_top_item .copyright {
    text-align: center;
  }
  .footer_top .footer_top_item .copyright span {
    font: 12px 'Segoe-UI-Regular';
  }
  .footer_top .social_link {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .payment {
    text-align: center;
    margin-top: 25px;
  }
  .payment .payment_item {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .footer_top .footer_top_item {
    width: 100%;
  }
  .payment {
    width: 100%;
  }
  .footer_bottom {
    margin-top: 0;
  }
  .footer_bottom .footer_bottom_nav li {
    border-right: none;
    padding: 0;
    margin-right: 20px;
  }
  .footer_bottom .footer_bottom_nav li a:after {
    display: none;
  }
  .login-form .login-subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .subcribe {
    margin-top: 20px;
  }
  .form_register {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .register .form_register .input-wrap {
    width: 100%;
  }
  .movies_blcks {
    width: 46%;
    height:80%;
    margin: 0 auto 20px auto;
  }
  .movies_fimls .movies_fimls_item .img-movies {
    height : 250px;
  }
  .movies_fimls .movies_fimls_item {
    margin: 0 auto;
    width: 100%;
  }
  .info_films_block .info_films_item .info_films_content p {
    font: 12px 'Segoe-UI-Regular';
  }
  .film_movies .film_right .film_movies_info {
    padding: 15px 5px;
  }
  .film_movies .film_right .fims_cast_all p {
    font: 14px/24px 'Segoe-UI-Regular';
  }
  .film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
    font: 11px 'Segoe-UI-Semibold';
  }

  .film_movies .film_right .film_movies_info .film_movies_info_item span p {
    font: 9px/14px 'Segoe-UI-Regular';
    /* max-width: 52px; */
  }
  .my_accounts .tabs_profile_navbar .tabs-profile a {
    padding-left: calc(100% - 70%);
  }
  .my_bilet .bilet_button_bottom a:last-child {
    margin-right: 0;
  }
  .my_bilet .bilet_button_bottom {
    padding-left: 10px;
    padding-right: 10px;
    justify-content: space-around;
  }
  .succes_modal_content .succes_info_chek {
    padding: 30px 0 0 20px;
  }
  .succes_modal_content .info_return h5 {
    padding-left: 20px;
  }
  .succes_modal_content .info_return .info_return_item {
    padding: 0 20px;
  }
  .succes_modal_content .info_return .info_totola_price {
    padding: 0 20px;
  }
  .succes_modal_content .info_return .bottom_info_content {
    padding: 0 20px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content p {
    font: 12px 'Segoe-UI-Semibold';
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_img {
    max-width: 100px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_price {
    margin-top: auto;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content {
    margin-left: 25px;
    max-width: 170px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content h5 {
    font: 14px 'Segoe-UI-Bold';
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product {
    margin-top: 50px;
  }
  .succes_modal_content .info_return .bottom_info_content .bottom_info_content_product .product_content span {
    font: 12px 'Segoe-UI-Regular';
  }
  .succes_modal_content .info_return .subtotal_price {
    padding-right: 20px;
    max-width: 230px;
  }
  .succes_modal_content .info_return .total_price_all {
    font-size: 14px;
    height: 30px;
  }
  .succes_content_info {
    padding: 0 20px;
  }
  .cancel_modal_content .modal_content_info h3 {
    font: 20px 'Segoe-UI-Semibold';
  }
  .cancel_modal_content .modal_content_info p {
    font: 18px/28px 'Segoe-UI-Semibold';
  }
  .modal_camndanou_link {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
  }

  .info_film_slider .slider a.dot,
  .dot {
    width: 20px;
    height: 20px;
    /*line-height: 20px;*/
    font: 10px/18px 'Segoe-UI-Regular';
  }
  .info_film_slider .slider .slick-dots li {
    margin-right: 7px;
  }
  .movies_calendar_slider {
    max-width: 75%;
 }
  .movies_calendar {
    padding-top: 15px;
 }
  .calendar_list {
    padding-top: 20px;
 }
  .movies_calendar_slider {
    margin-right: 0;
 }
  .film_movies .film_right .film_movies_info {
    padding: 15px;
 }
  .movies_calendar_slider .movies_calendar_slider_item h3 {
    font: 14px/21px 'Segoe-UI-Semibold';
 }
  .movies_calendar_slider .movies_calendar_slider_item span {
    font: 12px/15px 'Segoe-UI-Regular';
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    padding: 7px 0;
 }
  .movies_calendar_item .movies_calendar_top h3 {
    font: 18px 'Segoe-UI-Semibold';
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    margin-left: 10px;
    margin-right: 10px;
 }
  .movies_calendar_item {
    padding: 0 10px 0 20px;
 }
  .movies_calendar_slider {
    margin-right: 0;
 }
  .calendar_list li .info_sala_left span {
    font: 12px 'Segoe-UI-Regular';
    font-weight:bold;
 }
  .calendar_list li .info_sala_right {
    margin-left: 80px;
 }
  .calendar_list li .info_sala_right span {
    font: 14px/22px 'Segoe-UI-Semibold';
 }
 .navigation__dots {
   /*left: 40px;*/ /*TODO changed*/
 }
 .info_film_slider .slider .info_slider_item h3 {
  font: 16px 'Segoe-UI-Semibold';
}
.navigation__dots  {
  /*top: 64%;*/ /*TODO changed*/

}
.info_film_slider .slider {
  height: 150px;
  padding-top: 40px;
  bottom: 20px;
}
.info_slider_item .book_now {
  height: 28px;
  width: 220px;
  
}
.info_slider_item .book_now a{
  font: 14px/28px 'Segoe-UI-Semibold';

}
.film_movies .film_right .film_movies_info .film_movies_info_item:after {
  height: 9px;
}

	/*News*/
	.col3 {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 44px
	}
	.item .name,
	.item .descript {
		padding-left: 22px;
		padding-right: 22px;
	}
	.item .name { font-size: 18px }
	.top-news .date {
		top: 13px;
		left: 18px;
	}
	/*.name { padding: 14px 0 24px }
	.news-desc { padding-bottom: 18px }*/

  /*Cinematografe*/
  .col50 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .kino-left,
  .kino-right {
    padding-left: 0;
    padding-right: 0;
  }
  .kino-left .cine-title,
  .kino-left .cine-desc {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hidden-xs { display: none }
  .visible-xs { display: block }
  .mt6 { margin-top: 30px }

  .actual_comenzi .number_link { padding: 0 10px }

  .preset-movie .rating {
    padding-top: 7px;
    padding-bottom: 7px;
  }

}

@media only screen and (max-width: 812px) {
  .coomin_soon.home {
    margin-left: 0 !important;
  }

  .calendar_list li {
    width: 24%;
  }
}

@media only screen and (max-width: 490px) {
  .calendar_list li {
    width: 32%;
  }

  .info_films_block .info_films_item img {
    max-height: 232px;
  }

  .film_movies .film_right .film_movies_info .film_movies_info_item span h5 {
    font: 2vw 'Segoe-UI-Semibold';
  }
.film_movies .film_right .film_movies_info .film_movies_info_item span p {
  font: 8px'Segoe-UI-Regular';
}
.navigation__dots  {
  top: 69%;

}



.movies_calendar_top a, .movies_calendar_top a.active{min-width:92px;margin:8px 1px;}
.calendar_list{padding-top:0px;margin-top:20px;}
.movies_calendar_slider{max-width:100% !important;}
.placement-wrap svg {width:100% !important;}


}


@media only screen and (max-width: 490px) {
  #rulaj-selector {
    position: relative;
    padding-top : 10px;
  }
}

@media only screen and (max-width: 400px) {

  .info_films_block .info_films_item img{max-height: 184px;}
  
  .film_movies .film_right .film_movies_info .film_movies_info_item span {
    margin-left: 8px;
 
    margin-right: 8px;
  }
  .film_movies_info .film_movies_info_item span h5 {
    font: 8px 'Segoe-UI-Semibold';
    /* word-break: break-all; */
  }
   .film_movies_info .film_movies_info_item span p {
    font: 7px/10px 'Segoe-UI-Regular';
    /* max-width: 52px;
  } */
}
 .film_movies_info {
  padding-left: 15px 20px !important;
}
  
  .movies_calendar_item .movies_calendar_top h3 {
    font: 14px 'Segoe-UI-Semibold';
 }
  .movies_calendar_slider .movies_calendar_slider_item {
    padding: 3px 0;
 }
 .info_film_slider .slider .info_slider_item {
   margin-left: 10px;
 }
 .navigation__dots {
  left: 20px;
   padding-top: 28px;
}
.info_film_slider .slider {
  width: 95%;
}
.navigation__dots .dot {
  margin-right: 7px; 
}
.calendar_list li .info_sala_right {
  margin-left: 60px;
}
.movies_calendar_slider .movies_calendar_slider_item h3 {
  font: 11px'Segoe-UI-Semibold';
}
.movies_calendar_slider .movies_calendar_slider_item span {
  font: 11px/15px 'Segoe-UI-Regular';
}

}
@media only screen and (max-width: 370px) {
  .info_films_block .info_films_item img{max-height: 170px;}
  .footer_bottom .footer_bottom_nav li:nth-child(2) {
    margin-right: 0;
  }

   .film_movies .film_right .film_movies_info .film_movies_info_item span{
    margin-left: 5px;
    margin-right: 5px;
}
.film_movies .film_right .film_movies_info {
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.film_movies .film_right .film_movies_info .film_movies_info_item:after {
  height: 7px;
  width: 1px;
}
.rating-wraps {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.movies_calendar_slider .slick-prev {
  left: 7px;

}
.movies_calendar_slider .slick-prev i {
  font-size: 14px;
}
.movies_calendar_slider .slick-next {
  right: 7px;
}

.movies_calendar_slider .slick-next i {
  font-size: 14px;
}
.filter_block .filter_item .select2-container--default .select2-selection--single .select2-selection__rendered {
  font: 12px 'Segoe-UI-Semibold';
}
.navigation__dots  {
  top: 64%;

}
}


.film_movies {
  display: block;
}

.film_movies .film_left {
  width: 100%;
}

.film_movies .film_right {
  width: 100%;
}

.ResponsiveYTPlayer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.ResponsiveYTPlayer iframe, .ResponsiveYTPlayer object, .ResponsiveYTPlayer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.film_movies .film_left .film_movies_info {
  background-color: #ededed;
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
          justify-content: center;
  z-index: 1;
  padding: 20px 0 20px 0;
}
.film_movies .film_left .film_movies_info .film_movies_info_item {
  position: relative;
  -webkit-box-flex:1;
          flex:1;padding-left: 6px;
}
.film_movies .film_left .film_movies_info .film_movies_info_item:first-child span {
  margin-left: 0;
}
.film_movies .film_left .film_movies_info .film_movies_info_item span h5 {
  font: 14px 'Segoe-UI-Semibold';
  color: #5e7d2f;
}
.film_movies .film_left .film_movies_info .film_movies_info_item span p {
  font: 11px/21px 'Segoe-UI-Regular';
  color: #202020;
}

.film_title {
  color: #000000;
  font: 20px 'Segoe-UI-Semibold';
  text-transform: uppercase;
}


@media only screen and (max-width: 767px){
  .film_movies .film_left, .film_movies .film_right {
    width: 100%;
  }
  .film_movies .film_left .film_movies_info .film_movies_info_item{margin-left:0 !important; margin-right:0 !important;}
}



.st0 {
  fill: #D6D3CE
}

.st1 {
  fill: #283287
}

.shop_slider {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  margin: 30px 0;
}

.shop_slider .slick-prev {
  display: inline-block;
  margin: auto 0;
  width: 32px;
  text-align: center;
}

.shop_slider .slick-next {
  display: inline-block;
  margin: auto 0;
  width: 32px;
  text-align: center;
}

.shop_slider .slick-list {
  -webkit-box-flex: 1;
          flex: 1;
}

.shop_slider .slick-slide {
  padding-top: 15px;
}

.shop_slider .shop_slider_item {
  text-align: center;
}

.shop_slider .shop_slider_item a img {
  max-width: 100px;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 50%;
}

.shop_slider .shop_slider_item a {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.shop_slider .shop_slider_item a:hover {
  color: #b80000
}

.shop_slider .shop_slider_item a:hover img, .shop_slider .shop_slider_item.active a img {
  box-shadow: 0px 0px 8px #b80000;
}

.section-products {
  padding: 15px;
}

.section-products .product-item {
  box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 15px;
  margin: 15px auto;
}

.section-products .product-item.active, .section-products .product-item:hover,  .product-item.active, .product-item:hover{
  box-shadow: 0px 0px 18px -4px rgba(0, 0, 0, 0.3);
}

.product-item .product-title {
  font-weight: bold;
  min-height: 55px;
}

.product-item img {
  max-height: 135px;
}

.product-item .product-price {
  color: #b80000;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

/*.section-products > div {*/
/*  visibility: hidden;*/
/*  height: 0px;*/
/*}*/

.main-content .product-item .product-title:hover {
  color: #5e992f;
}
/*.main-content a:hover {*/
/*  color: #5e992f;*/
/*}*/

.slick-slide img.content-desktop {display: block;}
.slick-slide img.content-mobile {display: none;}

@media screen and (max-width: 768px) {

  .slick-slide img.content-desktop {display: none;}
  .slick-slide img.content-mobile {display: block;}

}
.fast-buy-buy-links:hover {
  color: #FFF;
  text-decoration: none;
}

.cannbuy-button i{color:#5e7d2f;}
.cannbuy-button.active i{color:#fff;}


img.poster-content-desktop {display: block;}
img.poster-content-mobile {display: none;}

@media screen and (max-width: 768px) {

  img.poster-content-desktop {display: none;}
  img.poster-content-mobile {display: block;}

}


.orders-backdrop.show {
    opacity: 0.8;
    z-index: 3000;
}

.orders {
    -webkit-overflow-scrolling: auto;
    z-index: 3010;
    color: #191919;
    overflow: auto;
    background: #FFFFFF;
    padding: 30px 0;
    margin-top: 65px;
    /*pay-step1*/
}

.orders .orders-dialog {
    max-width: 100%;
    padding-left: 17px;
    padding-right: 17px;
    height: auto;
}

.orders .orders-dialog .orders-content {
    max-width: 1110px;
    margin: auto;
    border: 0;
    border-radius: 10px;
}

.orders .orders-dialog .orders-content.square {
    border-radius: 0;
}

.orders .orders-header {
    min-height: 70px;
    border-bottom: 1px solid #dedede;
    padding: 10px 65px 10px 25px;
    position: relative;
}

.orders .close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 16px;
    right: 20px;
    margin: 0;
    padding: 0;
    line-height: 38px;
    background: transparent;
    float: none;
    z-index: 1000;
}

.orders .close.square {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 0;
}

.orders .close.square:hover {
    background-color: #e7e7e7;
}

.orders .close.square svg {
    fill: #7c7c7c;
    width: 32px;
}

.orders .close svg {
    width: 100%;
    height: 100%;
    fill: #FFF;
}

.orders .close:hover svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.orders .orders-body,
.orders .orders-footer {
    padding: 20px 25px;
    min-width: 100%;
}

.orders .dop-info {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
}

.orders .dop-info .h4 {
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.orders .dop-info .addr {
    color: #8a8a8a;
    margin-bottom: 15px;
}

.orders .dop-info .date {
    color: #191919;
}

.orders .pay-step1 {
    display: block;
    /*orders-body*/
}

.orders .pay-step1 .orders-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.orders .pay-step1 .orders-header .span {
    margin-right: 5px;
}

.orders .pay-step1 .orders-body {
    padding-top: 30px;
    /*left-side*/
}

.orders .pay-step1 .orders-body .left-side {
    width: 230px;
    float: left;
    clear: both;
    margin-right: -100%;
}

.orders .pay-step1 .orders-body .left-side .h3 {
    color: #191919;
    font-size: 24px;
    font-weight: 900;
    font-family: "Segoe-UI-Bold";
    margin-bottom: 0;
    text-transform: none;
    margin-bottom: 10px;
}

.orders .pay-step1 .orders-body .left-side .h3 .span {
    font-weight: 400;
}

.orders .pay-step1 .orders-body .left-side .format {
    margin-bottom: 20px;
}

.orders .pay-step1 .orders-body .center-side {
    -webkit-box-ordinal-group: 3;
    order: 2;
    /*padding-top: 20px;*/
    padding-top: 0;
    z-index: 90;
}

.orders .pay-step1 .orders-body .left-side2 {
    -webkit-box-ordinal-group: 4;
    order: 3;
}

.orders .pay-step1 .orders-body .left-side1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
}

.orders .pay-step1 .orders-body .left-side2,
.orders .pay-step1 .orders-body .left-side1 {
    position: relative;
    z-index: 100;
}

.orders .pay-step1 .orders-body .placement {
    margin: 0 auto;
    text-align: center;
    padding-left: 230px;
    padding-right: 230px;
    width: 100%;
}

.orders .pay-step1 .orders-body .placement .pinch-zoom-container,
.orders .pay-step1 .orders-body .placement .placement-wrap {
    margin-bottom: 30px;
}

.orders .pay-step1 .orders-body .placement .placement-wrap {
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: -999px;
    right: -999px;


}
#rezervation{
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    position: static!important;
}

.kino-link{
    color: #fff;
}
.kino-link:hover{
    color: #b98b12;
}
/***************************************************************

Orders orders

***************************************************************/
.orders-mod{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-top: 30px;
}
.orders-mod .span{
    display: -webkit-box;
    display: flex;
}
.orders .left-side1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
    width: 230px;
    float: left;
    clear: both;
    margin-right: -100%;
}
.orders .left-side2 {
    -webkit-box-ordinal-group: 4;
    order: 3;
}
.orders .dop-info{
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
}

.orders .center-side {
    -webkit-box-ordinal-group: 3;
    order: 2;
    padding-top: 20px;
    z-index: 90;
}
.orders .placement {
    margin: 0 auto;
    text-align: center;
    padding-left: 230px;
    padding-right: 230px;
    width: 100%;
}
.orders .left-side .h3 {
    color: #191919;
    font-size: 24px;
    font-weight: 900;
    font-family: "Segoe-UI-Semibold";
    margin-bottom: 0;
    text-transform: none;
    margin-bottom: 10px;
}


.left-side {
    width: 230px;
    float: left;
    clear: both;
    /*margin-right: -100%;*/
}

.orders .left-side .h3 {
    color: #191919;
    font-size: 24px;
    font-weight: 900;
    font-family: "Segoe-UI-Semibold";
    margin-bottom: 0;
    text-transform: none;
    margin-bottom: 10px;
}

.orders .left-side .h3 .span {
    font-weight: 400;
}

.orders .left-side .format {
    margin-bottom: 20px;
}

.orders .center-side {
    -webkit-box-ordinal-group: 3;
    order: 2;
    padding-top: 20px;
    z-index: 90;
}

.orders .left-side2 {
    -webkit-box-ordinal-group: 4;
    order: 3;
}

.orders .left-side1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
}

.orders .left-side2,
.orders .left-side1 {
    position: relative;
    z-index: 100;
}


.orders .pay-step1 .orders-body .placement.placement-data {
    width: 100%;
}

.orders .pay-step1 .orders-body .placement.placement-data .box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.orders .pay-step1 .orders-body .placement.placement-data .box .place {
    margin-left: 2px;
}

.orders .pay-step1 .orders-body .placement .box {
    width: 400px;
    margin: 0 auto 30px;
    max-width: 100%;
    padding-top: 50px;
}

.orders .pay-step1 .orders-body .placement .box:before {
    background: url(/images/place-top.png?3946d220a0f4d649e7f65271821533a2) no-repeat center 0;
    height: 19px;
    content: '';
    margin-bottom: 20px;
    display: block;
    background-size: 100% 100%;
    margin-left: -20px;
    margin-right: -20px;
}

.orders .pay-step1 .orders-body .placement .box .row {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding-left: 21px;
    padding-right: 21px;
}

.orders .pay-step1 .orders-body .placement .box .row2 {
    margin-left: -28px;
    margin-right: -28px;
    -webkit-box-flex: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.orders .pay-step1 .orders-body .placement .zoom-ico {
    display: none;
}

.orders .pay-step1 .orders-body .placement .zoom-ico svg {
    width: 43px;
    max-width: 43px;
    display: none;
    margin: 20px auto 0;
}

.orders .pay-step1 .orders-body .placement .place {
    width: 25px;
    height: 21px;
    background: url(/images/place.png?c9e845b48d087b6845cc5a5712c73dcf) no-repeat;
    margin: 0 1px 10px 2px;
    cursor: pointer;
    background-size: 100% 300%;
}
.orders .pay-step1 .orders-body .placement .place::before {
    content: '';
    width: 25px;
    height: 21px;
    background-color: #000;
    margin: 0 1px 10px 2px;
}




.orders .pay-step1 .orders-body .placement .place.disabled {
    cursor: default !important;
}

.orders .pay-step1 .orders-body .placement .place.disabled .st0 {
    fill: #ff3b3b !important;
}

.orders .pay-step1 .orders-body .placement .place.active .st0,
/*.orders .pay-step1 .orders-body .placement .place:hover .st0,*/
.orders .pay-step1 .orders-body .placement .place.active:focus .st0 {
    fill: #4d792b;
}

.orders .pay-step1 .orders-body .placement .bottom ul,
.orders .pay-step1 .orders-body .placement .bottom ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.orders .pay-step1 .orders-body .placement .bottom ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.orders .pay-step1 .orders-body .placement .bottom ul li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    font-family: 'Segoe-UI-Semibold';
}

.orders .pay-step1 .orders-body .placement .bottom ul li svg {
    width: 25px;
    margin-right: 9px;
    fill: #dddddd;
}

.orders .pay-step1 .orders-body .placement .bottom ul li.active svg {
    fill: #b80000;
}

.orders .pay-step1 .orders-body .placement .bottom ul li.disabled svg {
    fill: #4d792b;
}

.orders .pay-step1 .orders-footer {
    max-width: 75%;
    margin: 0 auto;
    min-width: 75%;
    background: #f1f1f1;
    padding: 0;
    min-height: 90px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    /*margin-left: -17px;
    margin-right: -17px;*/
}

.orders .pay-step1 .orders-footer > :not(:first-child),
.orders .pay-step1 .orders-footer > :not(:last-child) {
    margin-left: 0;
    margin-right: 0;
}

.orders .pay-step1 .orders-footer .div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    align-self: stretch;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-wrap: wrap;
}

.orders .pay-step1 .orders-footer .total-ticket {
    color: #191919;
    font-size: 16px;
    font-weight: 900;
    line-height: 30px;
    padding-right: 25px;
    padding-left: 25px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: -1px;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

/*.orders .pay-step1 .orders-footer .total-ticket .num {
    font-size: 36px;
}*/

.orders .announcement{font-family: 'Segoe-UI-Semibold';display:inline-block;margin-left:30px; text-align: center; vertical-align: top; width:50%;}

.orders .pay-step1 .orders-footer .total-money {
    color: #8a8a8a;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    background: #FFF;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-flex: 10;
    flex-grow: 10;
    min-width: 170px;
    font-family: 'Segoe-UI-Regular';
}

.orders .pay-step1 .orders-footer .total-money .span1 {
    /*font-size: 14px;*/
    line-height: 33px;
}

.orders .pay-step1 .orders-footer .total-money .span1 .num {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Segoe-UI-Semibold';
}

.orders .pay-step1 .orders-footer .total-money .span2 {
    font-size: 16px;
    color: #8a8a8a;
}

.orders .pay-step1 .orders-footer .bilet-numbers {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 10;
    flex-grow: 10;
    padding-left: 30px;
    border-left: 1px solid #e0e0e0;
    margin-bottom: -1px;
}

.orders .pay-step1 .orders-footer .bilet-numbers .div1 {
    margin-right: 30px;
    color: #8a8a8a;
    font-size: 13px;
}

.orders .pay-step1 .orders-footer .bilet-numbers .div1 .span {
    color: #191919;
}

/*.orders .pay-step1 .orders-footer .btn-buy {
    color: #9e9e9e;
    font-size: 18px;
    font-weight: 900;
    cursor: default;
    min-width: 290px;
    padding: 0;
    border: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
}*/

.orders .pay-step1 .orders-footer .btn-buy {
    color: #fff;
    font-size: 16px;
    font-family: 'Segoe-UI-Semibold';
    font-weight: 900;
    cursor: default;
    min-width: 190px;
    padding: 0;
    border: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    text-transform: uppercase;
    margin: 0 20px;
}

.orders .pay-step1 .orders-footer .btn-buy span {
    line-height: 30px;
    display: block;
    width: 100%;
    border-radius: 15px;
}

.orders .pay-step1 .orders-footer .btn-buy .span1 {
    /*padding-left: 55px;*/
    background-color: #b80000;
    text-align: center;

}

.orders .pay-step1 .orders-footer .btn-buy:focus {
    outline: none
}

.orders .pay-step1 .orders-footer .btn-buy .span2 {
    display: none;
}

.orders .pay-step1 .orders-footer .btn-buy.continue {
    cursor: pointer;
}

.orders .pay-step1 .orders-footer .btn-buy.continue .span1 {
    display: none;
}

.orders .pay-step1 .orders-footer .btn-buy.continue .span2 {
    display: block;
    color: #ffffff;
    background-color: #5e7d2f;
    width: 100%;
    text-align: center;
}

.orders .pay-step1 .orders-footer .total-money,
.orders .pay-step1 .orders-footer .btn,
.orders .pay-step1 .orders-footer .total-ticket,
.orders .pay-step1 .orders-footer .bilet-numbers {
    height: 70px;
}



.orders .pay-step2 .orders-header {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    min-height: 70px;
}

.orders .pay-step2 .orders-header .close {
    width: 49px;
    height: 49px;
    top: 13px;
}

.orders .pay-step2 .orders-header .div1 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

.orders .pay-step2 .orders-header .div2 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 1000;
    flex-grow: 1000;
    -webkit-box-ordinal-group: 6;
    order: 5;
}

.orders .pay-step2 .orders-header .btn-return {
    width: 49px;
    height: 49px;
    border: 1px solid #9a9a9a;
    border-radius: 100px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    margin-right: 25px;
    position: relative;
}

.orders .pay-step2 .orders-header .btn-return:before {
    font-family: 'awesome';
    content: '\F060';
    color: #9a9a9a;
    font-size: 36px;
    font-weight: 300;
    line-height: 46px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.orders .pay-step2 .orders-header .btn-return:hover span {
    width: 49px;
    height: 49px;
}

.orders .pay-step2 .orders-header .btn-return span {
    position: absolute;
    left: 23px;
    top: 28px;
    display: block;
    width: 49px;
    height: 0;
    border-radius: 100px;
    font-size: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: rotate(100deg);
    transform: rotate(100deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.orders .pay-step2 .orders-header .btn-return span:after {
    display: block;
    content: '';
    width: 49px;
    height: 49px;
    border: 3px solid #9a9a9a;
    border-radius: 100px;
}

.orders .pay-step2 .orders-header .pay-logo {
    margin-right: 50px;
}

.orders .pay-step2 .orders-header .caption {
    color: #8a8a8a;
    text-transform: uppercase;
    font-size: 12px;
}

.orders .pay-step2 .orders-header .timer-wrap {
    text-align: right;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 28px;
}

.orders .pay-step2 .orders-header .timer-wrap:after {
    content: '';
    width: 40px;
    height: 37px;
    background: url(/images/timer.svg?4684cb84bfcf84be893e681206fdf8e7) no-repeat center;
    margin-left: 12px;
    background-size: 144%;
}

.orders .pay-step2 .orders-header .timer-wrap .countdown {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    /*align-items: center;*/
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.orders .pay-step2 .orders-header .podderjka {
    text-align: left;
    margin-right: 20px;
}

.orders .pay-step2 .orders-header .podderjka .span2 {
    font-size: 18px;
    font-weight: 700;
}

.orders .pay-step2 .orders-header .hover-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
}

.orders .pay-step2 .orders-body {
    display: -webkit-box;
    display: flex;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.orders .pay-step2 .orders-body .h3 {
    font-size: 18px;
    color: #191919;
    text-transform: none;
}

.orders .pay-step2 .orders-body .left-side {
    min-width: 354px;
    max-width: 354px;
    padding-left: 25px;
    padding-right: 30px;
    padding-bottom: 100px;
    position: relative;
    background-color: #f1f1f1;
    box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.orders .pay-step2 .orders-body .left-side .box1 {
    background-position: center;
    background-size: cover;
    padding: 27px 25px;
    margin-left: 0 -25px 25px;
    position: relative;
    margin-left: -25px;
    margin-right: -30px;
}

.orders .pay-step2 .orders-body .left-side .box1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #181818;
    opacity: 0.8;
}

.orders .pay-step2 .orders-body .left-side .box1 .in {
    position: relative;
    z-index: 100;
}

.orders .pay-step2 .orders-body .left-side .box1 .in .h3 {
    color: #FFF;
    margin-bottom: 0;
}

.orders .pay-step2 .orders-body .left-side .box1 .in .h3:first-child {
    margin-bottom: 10px;
}

.orders .pay-step2 .orders-body .left-side .box1 .in .format {
    margin-bottom: 10px;
}

.orders .pay-step2 .orders-body .left-side .total-money {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-align: right;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-flex: 10;
    flex-grow: 10;
    min-width: 190px;
    padding-right: 0;
}

.orders .pay-step2 .orders-body .left-side .total-money .span1 {
    font-size: 14px;
}

.orders .pay-step2 .orders-body .left-side .total-money .span1 .num {
    font-size: 18px;
    font-weight: 900;
}

.orders .pay-step2 .orders-body .left-side .total-money .span2 {
    font-size: 12px;
    color: #8a8a8a;
}

.orders .pay-step2 .orders-body .left-side .dop-info {
    margin-bottom: 35px;
}

.orders .pay-step2 .orders-body .left-side .place-list {
    margin-bottom: 35px;
}

.orders .pay-step2 .orders-body .left-side .place-list ul,
.orders .pay-step2 .orders-body .left-side .place-list ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li {
    position: relative;
    margin-bottom: 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li .span1 {
    color: #191919;
    font-size: 14px;
    padding-right: 5px;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li .span2 {
    padding-left: 5px;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li .grey {
    color: #8a8a8a;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li .span1,
.orders .pay-step2 .orders-body .left-side .place-list ul li .span2 {
    background: #f1f1f1;
    position: relative;
    z-index: 100;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li.skidka {
    cursor: pointer;
}

.orders .pay-step2 .orders-body .left-side .place-list ul li:before {
    z-index: 90;
    content: '....................................................................................................................................................................................';
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.orders .pay-step2 .orders-body .left-side .btn-map {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    cursor: pointer;
}

.orders .pay-step2 .orders-body .right-side {
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding: 30px 30px 0;
}

.orders .pay-step2 .orders-body .right-side .payment-list {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
}

.orders .pay-step2 .orders-body .right-side .payment-list ul {
    max-width: 530px;
}

.orders .pay-step2 .orders-body .right-side .form {
    padding: 25px 0 0;
}

.orders .pay-step2 .orders-body .right-side .form .row,
.orders .pay-step2 .orders-body .right-side .form .checkbox {
    max-width: 670px;
}

.orders .pay-step2 .orders-body .submit {
    height: 80px;
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
    background-color: #5e7d2f;
    display: block;
    margin-left: -30px;
    margin-right: -30px;
    box-shadow: none;
    border: 0;
    width: calc(100% + 60px);
}

.orders#ordersSkidka .orders-content {
    border-radius: 0;
}

.orders#ordersSkidka .orders-body {
    padding-top: 60px;
    padding-bottom: 75px;
    max-width: 550px;
    margin: 0 auto;
    min-width: 550px;
}

.orders#ordersSkidka .orders-body .skidka-step2 {
    display: none;
    max-width: 418px;
    margin: 0 auto;
}

.orders#ordersSkidka .orders-body .skidka-step2 .submit {
    color: #191919;
    font-size: 18px;
    font-weight: 900;
    width: 220px;
    background: #FFF;
    border: 1px solid #dddddd;
}

.orders#ordersSkidka .orders-body .skidka-step2 .form-control {
    padding-right: 230px;
}

.orders#ordersSkidka .orders-body .h4 {
    color: #191919;
    font-size: 18px;
    padding-top: 65px;
    text-align: center;
    margin-bottom: 26px;
    position: relative;
}

.orders#ordersSkidka .orders-body .h4:before {
    content: '';
    display: block;
    width: 51px;
    height: 34px;
    border: 2px solid #ffa70f;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 0;
}

.orders#ordersSkidka .orders-body .h4:after {
    font-family: 'awesome';
    content: '\F295';
    font-size: 22px;
    line-height: 34px;
    color: #ffa70f;
    display: block;
    width: 51px;
    height: 34px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 0;
    font-weight: 400;
}

.orders#ordersSkidka .orders-body .form-group {
    position: relative;
    margin-bottom: 0;
}

.orders#ordersSkidka .orders-body .form-control {
    width: 100%;
    background-color: #f1f1f1;
    padding-left: 22px;
    padding-right: 165px;
    font-size: 18px;
    line-height: 20px;
    position: relative;
    z-index: 90;
}

.orders#ordersSkidka .orders-body .form-control:-moz-placeholder {
    color: #8a8a8a;
}

.orders#ordersSkidka .orders-body .form-control::-moz-placeholder {
    color: #8a8a8a;
}

.orders#ordersSkidka .orders-body .form-control::-webkit-input-placeholder {
    color: #8a8a8a;
}

.orders#ordersSkidka .orders-body .form-control:-ms-input-placeholder {
    color: #8a8a8a;
}

.orders#ordersSkidka .orders-body .submit {
    width: 151px;
    height: 60px;
    background-color: #ffbd0f;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

.orders.ordersNote {
    text-align: center;
}

.orders.ordersNote#ordersMax .orders-body {
    padding-top: 5px;
    padding-bottom: 5px;
}

.orders.ordersNote#ordersMax .orders-body .h4 {
    margin-bottom: 0;
}

.orders.ordersNote .h4 {
    margin-bottom: 54px;
    position: relative;
    font-size: 18px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: left;
}

.orders.ordersNote .h4 .close {
    position: static;
    margin-left: 94px;
}

.orders.ordersNote .h4 .pay-complete {
    margin-right: 25px;
    min-width: 57px;
    max-width: 57px;
}

.orders.ordersNote .h4 .div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.orders.ordersNote .btn-orange {
    white-space: nowrap;
}

.orders.ordersNote .orders-body {
    padding-top: 70px;
    padding-bottom: 70px;
}

.orders.ordersNote svg.money {
    margin-right: 45px;
}

.orders#ordersEnter:before {
    background: url(/images/enter-img.jpg?306233508dbca6e782aaedd3229c8cd0) no-repeat right center;
    background-size: 100%;
}

.orders#ordersEnter .row .col:first-child {
    padding-bottom: 15px;
}

.orders#ordersEnter .close,
.orders#ordersRegistr .close {
    left: 50%;
    margin-left: -88px;
    width: 70px;
    height: 70px;
}

.orders#ordersEnter .orders-dialog,
.orders#ordersRegistr .orders-dialog {
    width: 50%;
    left: 0;
}

.orders#ordersEnter .orders-dialog:before,
.orders#ordersRegistr .orders-dialog:before {
    z-index: 100;
    content: '';
    height: 100px;
    background: #191919;
    position: fixed;
    left: 0;
    top: 0;
    width: 600px;
    margin-left: -300px;
}

.orders#ordersEnter .orders-dialog .orders-content,
.orders#ordersRegistr .orders-dialog .orders-content {
    padding-top: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.orders#ordersAuthorize .close {
    width: 70px;
    height: 70px;
    margin-left: -35px;
    top: 18px;
}

.orders#ordersAuthorize .ul ul,
.orders#ordersAuthorize .ul ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.orders#ordersAuthorize .ul ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.orders#ordersAuthorize .ul ul:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    background-color: #2f2f2f;
    width: 1px;
}

.orders#ordersAuthorize .ul ul li {
    color: #d3d3d3;
    font-family: "Segoe-UI-Regular";
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    height: 400px;
    width: 400px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

.orders#ordersAuthorize .ul ul li:hover {
    background: #131313;
}

.orders#ordersAuthorize .ul ul li .svg {
    display: block;
    margin-bottom: -35px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.orders#ordersAuthorize .ul ul li .svg svg {
    display: block;
}

.orders#ordersAuthorize .ul ul li.enter {
    margin-right: 85px;
}

.orders#ordersAuthorize .ul ul li.enter svg {
    width: 190px;
}

.orders#ordersAuthorize .ul ul li.reg {
    margin-left: 85px;
}

.orders#ordersAuthorize .ul ul li.reg svg {
    width: 200px;
}

.orders .forget {
    position: absolute;
    right: 15px;
    top: -25px;
    font-size: 12px;
}

.orders#ordersRegistr:before {
    background: url(/images/autorize-img.jpg?7e1ca085d24c13c38b6bbbdf35b1359e) no-repeat -109px center;
    background-size: 100%;
}

.orders#ordersRegistr:after {
    left: auto;
    right: 0;
}

.orders#ordersRegistr .orders-dialog {
    left: auto;
    right: 0;
}

.orders#ordersRegistr .orders-dialog:before {
    left: 50%;
    width: 50%;
    margin-left: 0;
}

.orders#ordersRegistr .close {
    margin-left: 20px;
}

.orders#ordersForget .orders-body {
    padding-top: 0;
}

.orders#ordersForget .input-wrap {
    max-width: 300px;
    margin: 0 auto 30px;
}

.orders#ordersForget .return-link {
    margin-top: 40px;
}

.orders.black {
    background-color: #191919;
}

.orders.black .h2 {
    color: #FFF;
}

.orders.black:before,
.orders.black:after {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    content: '';
    background-size: cover;
    opacity: 0.5;
}

.orders.black:after {
    background: #191919;
    width: 50%;
    left: 0;
    opacity: 1;
}

.orders.black .close {
    position: fixed;
    left: 50%;
    margin-left: -20px;
    top: 30px;
}

.orders.black .orders-dialog {
    z-index: 100;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background: #191919;
}

.orders.black .orders-dialog .orders-content {
    background: transparent;
    max-width: 100%;
    float: right;
    overflow: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.orders.black .orders-dialog .orders-content .orders-body {
    -webkit-box-flex: 0;
    flex: 0;
    border: 0;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.orders.black .orders-dialog .orders-content .orders-body .p {
    color: #d3d3d3;
    margin-bottom: 24px;
}

.orders.black .orders-dialog .orders-content .orders-body .p-bottom {
    color: #8a8a8a;
}

.orders.black .checkbox {
    color: #8a8a8a;
    line-height: 18px;
}

.orders .btn-orange {
    margin-bottom: 30px;
}

.orders .hover-link {
    cursor: pointer !important;
}

.orders#ordersThanks:before {
    display: none;
}

.orders#ordersThanks svg {
    width: 170px;
    fill: #ffbd0f;
    margin-bottom: 40px;
}

/*end orders*/

.doubleorders .orders-two {
    z-index: 4000;
}

.doubleorders .orders-backdrop {
    z-index: 3900;
    opacity: 0.6;
}

.orders-open .page {
    height: 100%;
}

.orders-open .footer {
    display: none;
}

.orders-link-hidden {
    position: absolute;
    left: -9999px;
}


/**/
#hall-form div {
    font: 25px 'Segoe-UI-Semibold';
}
#hall-form .total {
    font: 28px 'Segoe-UI-Regular';
}


.tooltip.show {
    top: 5px !important;
    opacity: 1;
}

.holder-left .span1 {
	font-size: 14px;
    font-family: "Segoe-UI-Regular";
}
.holder-left .span2 {
	font-size: 16px;
    font-family: "Segoe-UI-Semibold";
}

.holder-left .span3 {
	font-size: 14px;
    font-family: "Segoe-UI-Semibold";
}

.holder-right .span1 {
	font-size: 14px;
    font-family: "Segoe-UI-Regular";
}
.holder-right .span2 {
	font-size: 14px;
    font-family: "Segoe-UI-Semibold";
}


@media screen and (max-width: 1200px) {

    .orders .dop-info .addr {
        margin-bottom: 0;
    }

    .orders .pay-step1 .orders-body {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
    }

    .orders .pay-step1 .orders-body > div {
        min-width: 100%;
        max-width: 100%;
    }

    .orders .pay-step1 .orders-body .left-side {
        width: 100%;
        float: none;
        margin: 0 0 30px;
        text-align: center;
    }

    .orders .pay-step1 .orders-body .left-side .h3 .span {
        display: inline;
    }

    .orders .pay-step1 .orders-body .left-side .format {
        /*display: none;*/
    }

    .orders .pay-step1 .orders-body .center-side {
        padding-top: 0;
    }

    .orders .pay-step1 .orders-body .left-side2 {
        margin-bottom: 0;
        -webkit-box-ordinal-group: 3;
                order: 2;
    }

    .orders .dop-info {
    	padding: 0 0 20px 0
    }

    .orders .pay-step1 .orders-body .placement {
        padding-left: 0;
        padding-right: 0;
    }

    .orders#ordersAuthorize .ul ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .orders#ordersAuthorize .ul ul:before {
        display: none;
    }

    .orders#ordersAuthorize .ul ul li {
        margin: 0 0 20px !important;
    }

    .orders#ordersAuthorize .ul ul li .svg svg {
        height: 280px;
    }

    .orders .pay-step1 .orders-footer {
	    max-width: 60%;
	    margin: 0 auto;
	    min-width: 60%;
	}

	.orders { padding: 0 0 30px 0 }
	
    .orders .orders-dialog {
        padding-left: 0;
        padding-right: 0;
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 991px) {

    .orders .pay-step2 .orders-header .pay-logo {
        margin-right: 30px;
    }

    .orders .pay-step2 .orders-body .right-side {
        padding: 25px 25px 0;
    }

    .orders .pay-step2 .orders-body .right-side .payment-list {
        padding-left: 25px;
        padding-right: 25px;
        margin-left: -25px;
        margin-right: -25px;
    }

    .orders .pay-step2 .orders-body .right-side .form .col {
        min-width: 100%;
        max-width: 100%;
    }

    .orders .pay-step2 .orders-body .submit {
        margin-left: -25px;
        margin-right: -25px;
        width: calc(100% + 50px);
    }

    .orders#ordersSkidka .orders-body {
        padding-top: 50px !important;
    }

    .orders#ordersSkidka .orders-body {
        padding-top: 0;
    }

    .orders#ordersEnter:before {
        background: #191919;
    }

    .orders#ordersEnter .close,
    .orders#ordersRegistr .close {
        right: auto;
        left: 50%;
        margin-left: -35px;
    }

    .orders#ordersEnter .orders-dialog,
    .orders#ordersRegistr .orders-dialog {
        padding-top: 50px;
        width: 100%;
    }

    .orders#ordersEnter .orders-dialog,
    .orders#ordersRegistr .orders-dialog {
        max-width: 100%;
        margin-left: 0;
        left: 0;
    }

    .orders#ordersRegistr:before {
        background: #191919;
    }

    .orders.black:before,
    .orders.black:after {
        height: 120px;
        z-index: 105;
        background: #191919;
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        /* IE 5.5+*/
        -moz-opacity: 1;
        /* Mozilla 1.6 и ниже */
        -khtml-opacity: 1;
        /* Konqueror 3.1, Safari 1.1 */
        opacity: 1;
        /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9+ */
    }

    .orders.black {
        padding-top: 160px;
    }

    .orders.black .close {
        top: 46px;
        left: 50%;
        margin-left: -24px;
        z-index: 110;
    }

    .orders.black .orders-dialog {
        max-width: 100%;
        width: 100%;
        padding-top: 120px;
    }

    .orders.black .orders-dialog .orders-content .orders-body {
        max-width: 600px;
        min-width: inherit;
    }

	.orders .pay-step1 .orders-footer {
	    max-width: 80%;
	    margin: 0 auto;
	    min-width: 80%;
	}


}

@media screen and (max-width: 990px) {


    .orders .orders-header {
        padding-right: 25px;
        text-align: center;
    }

    .orders .close {
        position: static;
        margin: 0 auto 36px;
    }

    .orders .pay-step1 .orders-header {
        display: block;
    }

    .orders .pay-step1 .orders-header .span {
        margin: 0;
        display: block;
    }

    .orders .pay-step1 .orders-body .left-side1 {
        margin-bottom: 10px;
    }

    .orders .pay-step1 .orders-body .placement .zoom-ico {
        display: block;
    }

    .orders .pay-step2 .orders-header .close {
        position: static;
        margin: 0;
        -webkit-box-ordinal-group: 5;
        order: 4;
    }
    .orders .pay-step2 .orders-header .podderjka {
        text-align: right;
    }

    .orders .pay-step2 .orders-header .hover-link {
        margin-right: 0;
    }

    .orders .pay-step2 .orders-body {
        display: block;
    }

    .orders .pay-step2 .orders-body .left-side {
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .orders .pay-step2 .orders-body .left-side .box1 .in .h3 {
        text-align: left;
    }

    .orders .pay-step2 .orders-body .right-side {
        padding: 25px 15px 0;
    }

    .orders .pay-step2 .orders-body .right-side .h3 {
        text-align: left;
    }

    .orders .pay-step2 .orders-body .right-side .payment-list {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .orders .pay-step2 .orders-body .right-side .form {
        max-width: 100%;
    }

    .orders .pay-step2 .orders-body .submit {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .orders#ordersSkidka .orders-body {
        padding-top: 0 !important;
    }

    .orders#ordersSkidka .orders-body {
        max-width: 100%;
        min-width: 100%;
    }

    .orders.ordersNote .h4 {
        flex-wrap: wrap;
    }

    .orders.ordersNote .h4 .close {
        margin: 0 auto 20px;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }

    .orders.ordersNote .h4 .span {
        -webkit-box-ordinal-group: 4;
        order: 3;
    }

    .orders.ordersNote .h4 .div {
        -webkit-box-ordinal-group: 3;
        order: 2;
        -webkit-box-flex: 1;
        flex-grow: 1;
        min-width: 100%;
    }

    .orders.ordersNote .btn-orange {
        padding-left: 20px;
        padding-right: 20px;
    }

    .orders.ordersNote .orders-body {
        padding-top: 30px;
    }

    .orders#ordersAuthorize .ul ul li {
        font-size: 24px;
        height: 170px;
        width: 170px;
        letter-spacing: -0.5px;
    }

    .orders#ordersAuthorize .ul ul li .svg {
        height: 75px;
        margin-bottom: 20px;
    }

    .orders#ordersAuthorize .ul ul li .svg svg {
        margin: 0 auto;
        position: absolute;
        margin: auto;
        left: -999px;
        right: -999px;
        top: -999px;
        bottom: -999px;
    }

    .orders#ordersAuthorize .ul ul li.enter svg {
        width: 98px;
    }

    .orders#ordersAuthorize .ul ul li.reg svg {
        width: 109px;
    }

    .orders.black:before,
    .orders.black:after {
        height: 120px;
    }

    .orders.black .orders-dialog {
        padding-top: 90px;
    }

    .orders.black .orders-dialog .orders-content .orders-body .p {
        font-size: 12px;
    }

    .orders#ordersThanks svg {
        width: 100px;
    }

    .orders .pay-step1 .orders-footer .div { padding: 10px }

    .orders .announcement{width:100%;margin-left:0;padding:15px 0;}


}

@media screen and (max-width: 600px) {
    .orders .pay-step1 .orders-body .placement {
        width: 300px;
        margin: 0 auto;
    }

    .orders .pay-step1 .orders-body .placement .box {
        width: 100%;
    }

    .orders .pay-step1 .orders-body .placement .place {
        margin-left: 1px;
        width: 18px;
        height: 15px;
    }

    .orders .pay-step1 .orders-body .placement .bottom ul li {
        font-size: 11px;
    }

	/*.orders { padding: 0 0 30px 0 }

    .orders .orders-dialog {
        padding-left: 0;
        padding-right: 0;
        margin: 0 0 20px 0;
    }*/

    .orders .orders-body,
    .orders .orders-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .orders .pay-step1 .orders-body .placement .bottom ul {
    	-webkit-box-orient: vertical;
    	-webkit-box-direction: normal;
    	        flex-direction: column;
    	-webkit-box-align: start;
    	        align-items: flex-start;
    }

    .orders .pay-step1 .orders-body .left-side {
	    text-align: left;
	    padding-left: 20px;
	}

	.orders .pay-step1 .orders-footer {
	    max-width: 100%;
	    margin: 0 auto;
	    min-width: 100%;
	}

	#hall-form div { font: 14px 'Segoe-UI-Semibold'; }

	#hall-form .total { font: 18px 'Segoe-UI-Regular' }

	.orders .pay-step1 .orders-footer .total-money,
	.orders .pay-step1 .orders-footer .total-money .span2 { font-size: 12px }

	.orders .pay-step1 .orders-footer .total-money .span1 .num { font-size: 14px }

	.orders .pay-step1 .orders-footer .total-money { min-width: 107px }

	.orders .pay-step1 .orders-footer .btn-buy {
		min-width: 98px;
		font-size: 10px;
	}

	.orders .pay-step1 .orders-footer .btn-buy span { line-height: 25px }

	.orders .pay-step1 .orders-footer .total-ticket { padding-right: 15px }


}

@media screen and (max-width: 542px) {
	.orders .pay-step1 .orders-footer .btn-buy {
		margin: 20px 10px 10px;
	}
}

@media screen and (max-width: 479px) {


    .orders .orders-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    .orders .pay-step1 .orders-body .placement .box:before {
        height: 14px;
    }

    .orders .pay-step1 .orders-footer .bilet-numbers {
        padding-left: 15px;
    }

    .orders .pay-step2 .orders-header .pay-logo {
        display: none;
    }

    .orders#ordersSkidka .orders-body .skidka-step2 .form-control {
        padding-right: 20px;
    }

    .orders#ordersSkidka .orders-body .form-group {
        text-align: center;
    }

    .orders#ordersSkidka .orders-body .form-control {
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .orders#ordersSkidka .orders-body .submit {
        position: static;
        margin: 20px auto 0;
    }

    .orders.black .orders-dialog .orders-content .orders-body {
        max-width: 320px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .orders.black .orders-dialog .orders-content .orders-body .row {
        display: block;
    }

    .orders.black .orders-dialog .orders-content .orders-body .col {
        width: 100%;
    }

    .orders.black .orders-dialog .orders-content .orders-body .checkbox {
        font-size: 12px;
    }

}
/*Schedule*/

.main-content .schedule-cinema-option {
    margin-left: -15px !important;
    background-color: #ffffff;
    display: inline-block;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 16px;
    padding: 0 15px;
    color: #546c31;
    font: 15px/28px 'Segoe-UI-Semibold';
    text-transform: uppercase;
    border: 1px solid #546c31;
    cursor: pointer;
    margin: 6px 0;
    margin-right: 30px;
}

.main-content .schedule-cinema-option-selected {
    margin-left: -15px !important;
    background-color: #546c31;
    display: inline-block;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 16px;
    padding: 0 15px;
    color: #ffffff;
    font: 15px/28px 'Segoe-UI-Semibold';
    text-transform: uppercase;
    border: 1px solid #546c31;
    cursor: pointer;
    margin: 6px 0;
    margin-right: 30px;
}

.main-content .date-option-selected {
    margin-bottom: 8px;
    background-color: #546c31;
    display: inline-block;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 8px;
    padding: 0 15px;
    color: #ffffff;
    font: 10px/20px 'Segoe-UI-Semibold';
    text-transform: uppercase;
    border: 1px solid #546c31;
    margin-right: 5px;
    cursor: pointer;
}



.main-content .date-option {
    margin-bottom: 8px;
    background-color: #ffffff;
    display: inline-block;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    border-radius: 8px;
    padding: 0 15px;
    color: #546c31;
    font: 10px/20px 'Segoe-UI-Semibold';
    text-transform: uppercase;
    border: 1px solid #546c31;
    margin-right: 5px;
    cursor: pointer;
}

.main-content .date-option-selected a:hover {
    color : white;
}

.main-content .date-option-selected{
    color : white;
}

.main-content .date-option a:hover {
    color : white;
}

.main-content .schedule-cinema-option-selected a:hover {
    color : white;
}

.main-content .schedule-cinema-option a:hover {
    color : white;
}@charset "UTF-8";

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #5e992f;
  --indigo: #6574cd;
  --purple: #9561e2;
  --pink: #f66d9b;
  --red: #e3342f;
  --orange: #f6993f;
  --yellow: #ffed4a;
  --green: #38c172;
  --teal: #4dc0b5;
  --cyan: #6cb2eb;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #5e992f;
  --secondary: #6c757d;
  --success: #38c172;
  --info: #6cb2eb;
  --warning: #ffed4a;
  --danger: #e3342f;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Nunito", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #f8fafc;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #5e992f;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #3a5e1d;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2.25rem;
}

h2,
.h2 {
  font-size: 1.8rem;
}

h3,
.h3 {
  font-size: 1.575rem;
}

h4,
.h4 {
  font-size: 1.35rem;
}

h5,
.h5 {
  font-size: 1.125rem;
}

h6,
.h6 {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f8fafc;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #f66d9b;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
          order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

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

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #d2e2c5;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #abca93;
}

.table-hover .table-primary:hover {
  background-color: #c5dab4;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #c5dab4;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c7eed8;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #98dfb6;
}

.table-hover .table-success:hover {
  background-color: #b3e8ca;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b3e8ca;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d6e9f9;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #b3d7f5;
}

.table-hover .table-info:hover {
  background-color: #c0ddf6;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c0ddf6;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fffacc;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #fff6a1;
}

.table-hover .table-warning:hover {
  background-color: #fff8b3;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #fff8b3;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f7c6c5;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f09593;
}

.table-hover .table-danger:hover {
  background-color: #f4b0af;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f4b0af;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #9ed473;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.125rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.7875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #38c172;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(56, 193, 114, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #38c172;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.4em + 0.1875rem);
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #38c172;
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #38c172;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #38c172;
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}

.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #38c172;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #38c172;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #38c172;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #5cd08d;
  background-color: #5cd08d;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #38c172;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #38c172;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #38c172;
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e3342f;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(227, 52, 47, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #e3342f;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e3342f' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e3342f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.4em + 0.1875rem);
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #e3342f;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e3342f' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e3342f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #e3342f;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #e3342f;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #e3342f;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e9605c;
  background-color: #e9605c;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #e3342f;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e3342f;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-align: center;
          align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    -webkit-box-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.btn-primary:hover {
  color: #fff;
  background-color: #4c7c26;
  border-color: #467223;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(118, 168, 78, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #467223;
  border-color: #406820;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(118, 168, 78, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #38c172;
  border-color: #38c172;
}

.btn-success:hover {
  color: #fff;
  background-color: #2fa360;
  border-color: #2d995b;
}

.btn-success:focus,
.btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #38c172;
  border-color: #38c172;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #2d995b;
  border-color: #2a9055;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}

.btn-info:hover {
  color: #fff;
  background-color: #4aa0e6;
  border-color: #3f9ae5;
}

.btn-info:focus,
.btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #3f9ae5;
  border-color: #3495e3;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}

.btn-warning:hover {
  color: #212529;
  background-color: #ffe924;
  border-color: #ffe817;
}

.btn-warning:focus,
.btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffe817;
  border-color: #ffe70a;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}

.btn-danger:hover {
  color: #fff;
  background-color: #d0211c;
  border-color: #c51f1a;
}

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c51f1a;
  border-color: #b91d19;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #5e992f;
  border-color: #5e992f;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #5e992f;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #38c172;
  border-color: #38c172;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #38c172;
  border-color: #38c172;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #38c172;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #38c172;
  border-color: #38c172;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}

.btn-outline-info {
  color: #6cb2eb;
  border-color: #6cb2eb;
}

.btn-outline-info:hover {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #6cb2eb;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}

.btn-outline-warning {
  color: #ffed4a;
  border-color: #ffed4a;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffed4a;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}

.btn-outline-danger {
  color: #e3342f;
  border-color: #e3342f;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #e3342f;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #5e992f;
  text-decoration: none;
}

.btn-link:hover {
  color: #3a5e1d;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.9rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #5e992f;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.7875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
          justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.44rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #5e992f;
  background-color: #5e992f;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #9ed473;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b9e09a;
  border-color: #b9e09a;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.22rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.22rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #5e992f;
  background-color: #5e992f;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(94, 153, 47, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(94, 153, 47, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(94, 153, 47, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.22rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(94, 153, 47, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #9ed473;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.7875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #9ed473;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.6em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #5e992f;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b9e09a;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #5e992f;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b9e09a;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #5e992f;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b9e09a;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #f8fafc;
  border-color: #dee2e6 #dee2e6 #f8fafc;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #5e992f;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  -webkit-box-flex: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  -webkit-box-flex: 1;
          flex-grow: 1;
  -webkit-box-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }

  .card-group > .card {
    -webkit-box-flex: 1;
            flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: -1px;
}

.breadcrumb {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #5e992f;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #3a5e1d;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    transition: none;
  }
}

a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #5e992f;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #467223;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 153, 47, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #38c172;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #2d995b;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
}

.badge-info {
  color: #212529;
  background-color: #6cb2eb;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #212529;
  background-color: #3f9ae5;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffed4a;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #ffe817;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #e3342f;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #c51f1a;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.85rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #315018;
  background-color: #dfebd5;
  border-color: #d2e2c5;
}

.alert-primary hr {
  border-top-color: #c5dab4;
}

.alert-primary .alert-link {
  color: #19290c;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #1d643b;
  background-color: #d7f3e3;
  border-color: #c7eed8;
}

.alert-success hr {
  border-top-color: #b3e8ca;
}

.alert-success .alert-link {
  color: #123c24;
}

.alert-info {
  color: #385d7a;
  background-color: #e2f0fb;
  border-color: #d6e9f9;
}

.alert-info hr {
  border-top-color: #c0ddf6;
}

.alert-info .alert-link {
  color: #284257;
}

.alert-warning {
  color: #857b26;
  background-color: #fffbdb;
  border-color: #fffacc;
}

.alert-warning hr {
  border-top-color: #fff8b3;
}

.alert-warning .alert-link {
  color: #5d561b;
}

.alert-danger {
  color: #761b18;
  background-color: #f9d6d5;
  border-color: #f7c6c5;
}

.alert-danger hr {
  border-top-color: #f4b0af;
}

.alert-danger .alert-link {
  color: #4c110f;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.675rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #5e992f;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }

  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #315018;
  background-color: #d2e2c5;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #315018;
  background-color: #c5dab4;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #315018;
  border-color: #315018;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #1d643b;
  background-color: #c7eed8;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #1d643b;
  background-color: #b3e8ca;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #1d643b;
  border-color: #1d643b;
}

.list-group-item-info {
  color: #385d7a;
  background-color: #d6e9f9;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #385d7a;
  background-color: #c0ddf6;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #385d7a;
  border-color: #385d7a;
}

.list-group-item-warning {
  color: #857b26;
  background-color: #fffacc;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #857b26;
  background-color: #fff8b3;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #857b26;
  border-color: #857b26;
}

.list-group-item-danger {
  color: #761b18;
  background-color: #f7c6c5;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #761b18;
  background-color: #f4b0af;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #761b18;
  border-color: #761b18;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.6;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.7875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.7875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^=right] > .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^=left] > .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: 0s 0.6s opacity;
  transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #5e992f !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #467223 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #38c172 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #2d995b !important;
}

.bg-info {
  background-color: #6cb2eb !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #3f9ae5 !important;
}

.bg-warning {
  background-color: #ffed4a !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ffe817 !important;
}

.bg-danger {
  background-color: #e3342f !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c51f1a !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #5e992f !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #38c172 !important;
}

.border-info {
  border-color: #6cb2eb !important;
}

.border-warning {
  border-color: #ffed4a !important;
}

.border-danger {
  border-color: #e3342f !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

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

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #5e992f !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #3a5e1d !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #38c172 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #27864f !important;
}

.text-info {
  color: #6cb2eb !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #298fe2 !important;
}

.text-warning {
  color: #ffed4a !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #fde300 !important;
}

.text-danger {
  color: #e3342f !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #ae1c17 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-family: Raleway;
  scroll-behavior: smooth;
}

.landing__wrap {
  background-image: url(/images/cineplex-background-2.jpg?cb21eb7eb47cfaf274518f58f199bbf9);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.landing__logo {
  margin-bottom: 70px;
}

.height-seat {
  width: 27px;
  height: 35px;
}

.screen-width {
  width: 75%;
}

.title--location {
  color: #273166;
  font-family: "Raleway", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
}

button:focus {
  outline: 0;
}

.button {
  background-color: #5d7934;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 30px;
  border: 0;
  text-align: center;
  padding: 4px 40px;
  margin-top: 15px;
}

.flex1 {
  -webkit-box-flex: 1;
          flex: 1;
}

.button:hover {
  text-decoration: none;
}

.button--white-hover:hover {
  color: #fff;
  text-decoration: none;
}

.button--padding {
  padding: 4px 40px;
}

.location__wrap {
  height: calc(100vh - 115px);
}

.download-app-title {
  font-family: Raleway;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

.download-app {
  margin-bottom: 15px;
}

.card {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}

.topbar__wrap {
  width: 100%;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.27);
  background-color: #ffffff;
  height: 80px;
  border-bottom: 2px solid #5d7934;
}

.padding0 {
  padding: 0;
}

.topbar {
  height: 80px;
}

.mobile__cart-icon {
  width: 35px;
}

.landing__copyright {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #ffffff;
}

.social__icon {
  margin-left: 5px;
  margin-right: 5px;
}

.social__icon:hover path {
  fill: #5d7934;
}

.social--ig:hover path {
  fill: #fff;
}

.social--ig:hover rect {
  fill: #5d7934;
}

.socials {
  margin-right: 20px;
}

.top-menu {
  height: 78px;
  font-size: 0;
  margin: 0;
  padding: 0;
  z-index: 9999999;
}

.top-menu__item {
  border-left: 1px solid #AFADAD;
  height: 100%;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin: 0;
  font-family: Raleway;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  box-sizing: border-box;
}

.top-menu__item a {
  color: #273166;
  text-transform: uppercase;
  font-size: 14px;
  display: -webkit-box;
  display: flex;
  padding: 0 25px;
  height: inherit;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.top-menu__item a:hover {
  text-decoration: none;
  border-bottom: 1px solid #5d7934;
}

.top-menu__item .sub-menu__item a {
  padding: 0;
}

.top-menu__item:last-child {
  border-right: 1px solid #AFADAD;
}

.sub-menu {
  display: none;
  background-color: #5d7934;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  margin-top: 75px;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.top-menu__item:hover {
  background-color: #EAFCFF;
}

.top-menu__item:hover .sub-menu {
  display: -webkit-inline-box;
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  max-height: 60px;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.sub-menu__item {
  display: inline;
  margin-left: 15px;
  margin-right: 15px;
  color: #fff;
}

.sub-menu__item a {
  color: #fff;
  font-size: 12px;
}

.sub-menu__item a:hover {
  text-decoration: underline;
}

.controls {
  padding: 0px 15px;
}

.controls__item {
  width: 59px;
  margin-left: -2px;
  margin-right: -2px;
  cursor: pointer;
}

.carousel__preview-item {
  width: 100%;
  padding-bottom: 23%;
  height: 550px;
  background-color: #dedede;
  display: -webkit-box;
  display: flex;
  background-size: cover;
}

.carousel__wrap {
  padding: 0;
}

.carousel__control {
  background-color: red;
}

.carousel__preview-item {
  background-position: center center, center center;
  background-size: 100% 100%, 100%;
  position: relative;
}

.carousel__link {
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

.carousel__title {
  position: absolute;
  bottom: 10%;
  padding-bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-family: Raleway;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px solid #5d7934;
  text-align: center;
}

.cumpara-bilet__wrap {
  position: absolute;
  top: auto;
  bottom: 6%;
  left: 2%;
  z-index: 100;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #fbfbfb;
  cursor: pointer;
}

.cumpara-bilet__wrap a {
  text-decoration: none;
  color: #fff;
}

.cumpara-bilet {
  width: 50px;
  height: 30px;
  margin-right: 5px;
}

.now-soon__wrap {
  background-color: #5d7934;
  padding: 0;
  z-index: 3000000;
}

.now-soon__tabs {
  margin-top: 25px;
}

.now-soon__tab {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  cursor: pointer;
}

.now-soon__tab span,
.title-with-line,
.movie__section-title {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #9ea8b2;
  padding-left: 15px;
  box-sizing: border-box;
  display: inline-block;
  border-left: 3px solid #5d7934;
  line-height: 1.5;
}

.title-with-line {
  font-size: 28px;
  margin-top: 15px;
}

.movie__section-title {
  font-size: 26px;
  color: #5d7934;
  margin-top: 30px;
  margin-bottom: 25px;
}

.movie__synopsis {
  font-family: Raleway;
  font-size: 16px;
  color: #28282D;
  height: 100px;
  overflow: hidden;
}

.movie__synopsis--show {
  height: auto;
  overflow: auto;
}

.show-more__synopsis {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.now-soon__tab--active {
  width: 450px;
  margin-right: 15px;
  border-radius: 0px 8px 8px 0px;
}

.now-soon__tab--inactive {
  -webkit-box-flex: 1;
          flex: 1;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
  border-radius: 8px 0px 0px 8px;
}

.new-soon__dates {
  font-size: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 25px;
}

.new-soon__date,
.pick__menu {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border: 2px solid transparent;
  padding: 20px 20px 15px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.new-soon__date {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  color: #fbfbfb;
  box-sizing: border-box;
}

.new-soon__date--active {
  border: 2px solid #fff;
}

.new-soon__nr {
  font-family: Raleway;
  font-size: 42px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fbfbfb;
  line-height: 1.17;
}

.new-soon__date:hover {
  background-color: #ffffff;
}

.new-soon__date:hover .new-soon__nr,
.new-soon__date:hover .new-soon__day {
  color: #9EA8B2;
}

.new-soon__date:hover .new-soon__arrow path {
  fill: #5d7934;
}

.new-soon--dark {
  color: #9EA8B2;
}

.new-soon__arrow {
  margin-top: 10px;
}

.new-soon__movie-wrap {
  display: none;
  background-color: #fff;
  min-width: 250px;
  padding: 30px 25px;
  position: absolute;
  top: 90%;
  left: -2px;
  z-index: 200000;
  height: 350px;
  overflow: hidden;
}

.new-soon__date:hover .new-soon__movie-wrap {
  display: block;
}

.pick__date:hover,
.pick__date--active {
  border: 2px solid #5d7934;
  border-radius: 2px;
}

.pick__menu {
  padding: 20px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
}

.pick__menu--selected,
.pick__menu:hover {
  border: 2px solid #5d7934;
}

.pick__menu-img {
  width: 50%;
}

.new-soon__movie-list {
  padding: 0;
  margin: 0;
}

.new-soon__movie {
  text-align: left;
  margin-bottom: 10px;
}

.new-soon__movie a {
  color: #9EA8B2;
  font-size: 16px;
}

.new-soon__movie a:hover {
  text-decoration: none;
  color: #5d7934;
}

.title--medium {
  font-family: Raleway;
  font-size: 28px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.subtitle--medium {
  font-family: Raleway;
  font-size: 22px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: left;
  color: #e7e8ef;
}

.choose-when {
  padding-left: 30px;
}

.choose-when-icon {
  margin-left: 30px;
}

.movie-carousel__wrap {
  padding: 0;
}

.movie-carousel__item {
  width: 25%;
  height: 200px;
  background-color: #dedede;
}

.movie__shadow--left {
  height: 100%;
  width: 240px;
  background-image: url(/images/left_black_bg.png?2246c51bc747f823ad3f2f53eb2bf89c);
  background-size: 100% 300%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
}

.movie__shadow--right {
  height: calc( 100% - 15px );
  width: 240px;
  background-image: url(/images/right_black_bg.png?31eeceaddf8ec2a8f94678b2a67de279);
  background-size: 100% 300%;
  background-repeat: no-repeat;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  z-index: 10000;
}

.movie-carousel__wrap {
  position: relative;
}

.glide__arrow--left {
  position: absolute;
  top: 50%;
  left: -35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100000;
  background-image: url(/images/carousel_left_arrow@2x.png?f67b64001d544a30321a7af05630f033);
  width: 38px;
  height: 78px;
  border: 0;
  background-color: transparent;
  background-size: 100%;
  background-repeat: no-repeat;
}

.glide__arrow--right {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10000;
  background-image: url(/images/carousel_right_arrow@2x.png?9b4198096abee59d88a371e6f6a8dbdd);
  width: 38px;
  height: 78px;
  border: 0;
  background-color: transparent;
  background-size: 100%;
  background-repeat: no-repeat;
}

.glide__arrow--small {
  top: 0;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  width: 12px;
  height: 32px;
}

.glide__arrow--medium {
  top: 0;
  -webkit-transform: translateY(-330%);
          transform: translateY(-330%);
  width: 24px;
  height: 48px;
  right: -50px;
}

.glide__arrow--small-left {
  top: -55px;
  left: -25px;
  background-image: url(/images/grey_right_arrow@2x.png?d57697b6831e2d4675b725694e556e4c);
}

.glide__arrow--small-right {
  top: -55px;
  right: -25px;
  background-image: url(/images/grey_left_arrow@2x.png?a4331661e46269a379a55e3ff2b56337);
}

.glide__arrow--campaign-left {
  top: 40%;
  left: 85px;
}

.glide__arrow--campaign-right {
  top: 40%;
  right: 85px;
}

.glide__arrow--left--white {
  width: 20px;
  height: 45px;
  background-image: url(/images/carousel_left_arrow_white.svg?90d3df98dd472412f296a764aa2fbdb0);
  left: 15px;
}

.glide__arrow--right--white {
  width: 20px;
  height: 45px;
  background-image: url(/images/carousel_right_arrow_white.svg?62560d5a7a96ecab1d6c066901809e04);
  right: -20px;
}

.carousel__wrap {
  padding-right: 0px;
  box-sizing: border-box;
}

.title__blue-shape {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: left;
  color: #fbfbfb;
  background-color: #5d7934;
  padding: 12px 45px;
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-left: 15px;
  display: inline-block;
}

.title__blue--extra-margin {
  margin-left: 30px;
}

.title__blue-shape--full {
  -webkit-box-flex: 1;
  flex: 1;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px;
}

a.title__blue-shape:hover {
  text-decoration: none;
  color: #ffffff;
}

.campaigns__title-area {
  padding-left: 42px;
  padding-right: 0;
}

.glide2__wrap {
  padding: 0 45px;
  box-sizing: border-box;
}

.glide__slide-img {
  width: 100%;
}

.glide__slide2 {
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #dedede;
  margin-top: 25px;
}

.glide__slide2,
.campaign__poster {
  width: 100%;
}

.campaigns__title {
  font-family: Raleway;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #273166;
  white-space: normal;
}

.choose-when__wrap {
  display: -webkit-box;
  display: flex;
  background-color: #5d7934;
}

.campaign__duration {
  font-family: Raleway;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #9ea8b2;
  padding: 0;
  margin: 0;
}

.campaign__duration-label {
  color: #5d7934;
}

.campaign__icon {
  width: 43px;
  height: 43px;
}

.button__outline {
  border: 1px solid #5d7934;
  background-color: transparent;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 9px;
  text-align: center;
  font-family: Raleway;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: center;
  color: #5d7934;
}

.button__outline--white {
  color: #fff;
  border-color: #fff;
}

.button__outline:hover {
  color: #fff;
  text-decoration: none;
  background-color: #5d7934;
}

.button__outline--m-right {
  margin-right: 15px;
}

.button__outline--inactive {
  border-color: #9EA8B2;
  color: #9EA8B2;
}

.button__outline--inactive:hover {
  border-color: #9EA8B2;
  color: #9EA8B2;
  background-color: transparent;
}

.button--filled {
  color: #fff;
  background-color: #5d7934;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.button__login {
  margin: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.button--icon {
  background-image: url(/images/cineplex-background-2.jpg?cb21eb7eb47cfaf274518f58f199bbf9);
  background-repeat: no-repeat;
  background-position: 2% center;
}

.button--flex {
  -webkit-box-flex: 1;
          flex: 1;
}

.campaign__status {
  margin-top: 15px;
}

.info-box__wrap {
  padding-left: 45px;
  padding-right: 45px;
}

.info-box {
  height: 250px;
  border-radius: 9px;
  background-color: #5d7934;
  padding: 15px 25px 25px;
}

.info-box__content {
  width: 50%;
}

.info-box__title {
  font-family: Raleway;
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
}

.info-box__title--smaller {
  font-size: 24px;
}

.info-box__text {
  font-family: Raleway;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: normal;
  text-align: left;
  color: #d5d5d5;
}

.button__white {
  padding: 12px 30px;
  font-family: Raleway;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: left;
  color: #5d7934;
  border-radius: 9px;
  text-align: center;
  background-color: #ffffff;
}

.info-box__pic1 {
  width: 280px;
  position: absolute;
  z-index: 100;
  bottom: 15px;
  right: -10px;
}

.info-box__pic2 {
  position: absolute;
  z-index: 100;
  bottom: 0px;
  right: 15px;
  width: 200px;
  height: auto;
}

.info-box__pic3 {
  position: absolute;
  z-index: 100;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
  height: auto;
  width: 220px;
}

.back-top {
  margin-top: 15px;
  margin-bottom: 25px;
  cursor: pointer;
}

.footer__wrap {
  padding: 75px 45px;
  border-top: 2px solid #5d7934;
  margin-top: 30px;
}

.footer__title {
  font-family: Raleway;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #2b2b31;
}

.download-appstore path {
  fill: #5d7934;
}

.download-gstore path {
  fill: #5d7934;
}

.download-gstore {
  margin-top: 15px;
}

.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu-elem {
  list-style: none;
}

.facebook__wrap {
  width: 100%;
  max-width: 20%;
  height: 150px;
  background-color: #dedede;
  border-radius: 8px;
}

.credits {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
  width: 100%;
  margin: 0;
}

.credits__wrap {
  background-color: #5d7934;
}

.credits__wrap--margin-top {
  margin-top: 50px;
}

.schedule__title-wrap {
  padding: 25px 35px;
}

.schedule__title-wrap--45 {
  padding-left: 50px;
}

.schedule__bar {
  background: #00a0e0;
  background: -webkit-gradient(linear, left bottom, left top, from(#00a0e0), to(#0190cc));
  background: linear-gradient(0deg, #00a0e0 0%, #0190cc 100%);
  box-shadow: 0 9px 18px 0 rgba(0, 0, 0, 0.16);
}

.schedule__content {
  padding: 0 45px;
}

.schedule__item:nth-child(odd) {
  background-color: #E7E8EF;
}

.schedule__item:nth-child(even) {
  background-color: #ffffff;
}

.schedule__movie {
  padding-top: 22px;
  padding-bottom: 22px;
  height: 70px;
  font-family: Raleway;
}

.event__buble {
  border-radius: 25px;
  border: solid 2px #5d7934;
  background-color: #5d7934;
  padding: 6px 15px;
  font-family: Raleway;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.19;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  min-width: 70px;
  min-height: 32px;
}

.event__buble:hover {
  text-decoration: none;
}

.event__buble--inactive {
  border-radius: 15px;
  border: solid 1px #9ea8b2;
  background-color: #ffffff;
}

.movie__banner {
  height: calc( 100vh - 80px );
  background-position: center bottom, center center;
  background-size: 100%, cover;
  background-repeat: no-repeat, no-repeat;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0;
}

.movie__cart-wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 25px;
  margin-right: 25px;
  left: auto;
  z-index: 100000;
}

.movie__cart-button {
  background-color: #5d7934;
  padding: 11px 22px;
  display: -webkit-box;
  display: flex;
  color: #fff;
  border-radius: 12px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  align-self: flex-end;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.movie__cart-button:hover {
  color: #fff;
  text-decoration: none;
}

.movie__cart-icon {
  width: 28px;
  margin-left: 15px;
}

.movie__info {
  width: 100%;
}

.movie__poster {
  width: auto;
  max-height: 525px;
  margin-right: 25px;
}

.movie__title {
  font-family: Raleway;
  font-size: 28px;
  color: #5d7934;
  font-weight: bold;
  text-transform: uppercase;
  height: 75px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  margin: 0;
}

.movie__genre {
  font-family: Raleway;
  font-size: 20px;
  color: #9EA8B2;
  margin-top: 30px;
  display: inherit;
}

.movie__badges {
  margin-top: 12px;
  -webkit-box-flex: 1;
          flex: 1;
}

.movie__badge {
  margin-left: 12px;
}

.movie__badge:nth-child(1) {
  margin-left: 0;
}

.badge__imdb {
  border: 1px solid #9EA8B2;
  border-radius: 8px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  max-width: 160px;
  width: 100%;
  padding: 2px 14px;
  height: 32px;
}

.imdb__val {
  font-family: Raleway;
  font-weight: 800;
  font-style: italic;
  font-size: 21px;
  color: #5d7934;
  margin-top: -4px;
}

.details__label,
.details__value {
  font-family: Raleway;
  font-size: 14px;
  vertical-align: top;
}

.details__label {
  color: #5d7934;
  width: 40%;
  font-weight: 700;
}

.details__value {
  width: 60%;
  color: #9EA8B2;
}

.movie__details {
  margin-top: -90px;
  padding-left: 35px;
}

.movie__table-details {
  margin-top: 15px;
}

.tickets__header {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-family: Raleway;
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #9EA8B2;
}

.ticket__date,
.ticket__hour {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  font-family: Raleway;
  font-size: 24px;
  color: #9EA8B2;
}

.ticket__hour img,
.ticket__date img {
  width: 26px;
  margin-right: 8px;
}

.tickets__time {
  background-color: #E7E8EF;
  padding: 3px 15px;
}

.tickets__table {
  width: 100%;
}

.tickets__table-room {
  width: 15%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-room2 {
  width: 25%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-room3 {
  width: 20%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-row {
  width: 10%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-seat {
  width: 10%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-type {
  width: 45%;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-total {
  width: 20%;
  text-align: right;
  padding: 8px 16px;
  font-size: 18px;
  color: #9EA8B2;
  font-family: Raleway;
}

.tickets__table-header {
  font-family: Raleway;
  color: #5d7934;
  font-size: 18px;
  padding: 8px 16px;
}

.tickets__table tr:nth-child(even) {
  background-color: #E7E8EF;
}

.control__button {
  border: 1px solid #B4B6C5;
  padding: 10px 0;
  width: 31%;
  text-align: center;
  font-family: Raleway;
  font-size: 14px;
  color: #B4B6C5;
  border-radius: 8px;
  margin-top: 25px;
  font-weight: 700;
}

.control__button--lg {
  width: 49%;
}

.control__button--active,
.control__button:hover {
  background-color: #5d7934;
  border: 1px solid #5d7934;
  color: #fff;
  text-decoration: none;
}

.movie__right--no-padding-left {
  padding-right: 0;
}

.movie__right-wrap {
  margin-top: -550px;
}

.movie__right-column {
  background-color: #fff;
  border-radius: 15px 0 0 15px;
  padding: 15px 44px;
  margin-top: 550px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.ticket__label {
  font-family: Raleway;
  color: #9EA8B2;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}

.ticket__label:hover {
  text-decoration: none;
  color: #5d7934;
}

.ticket__label-config-ticket {
  width: 45px;
}

.ticket__label-cart-icon {
  width: 35px;
}

.ticket__label path {
  fill: #9EA8B2;
}

.ticket__label:hover path {
  fill: #5d7934;
}

.movie__hour {
  padding: 2px 15px;
  display: inline-block;
  text-align: center;
  color: #9EA8B2;
  border: 2px solid #9EA8B2;
  border-radius: 50px;
  margin-right: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.movie__hour:hover,
.movie__hour--active,
.movie__hour--selected {
  border: 2px solid #5d7934;
}

.movie__seats {
  width: 100%;
  background-image: url(/images/screen_bg@2x.png?c827ae883a3cedd35a71f63c308b57d4);
  min-height: 300px;
  background-size: 100%;
  background-position: top top;
  background-repeat: no-repeat;
  overflow-x: scroll;
}

.seat {
  cursor: pointer;
}

.seat,
.seat-legend {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  margin-right: 2px;
  margin-bottom: 2px;
  display: inline-block;
}

.seat--taken,
.seat-legend--taken {
  background-color: #E7E8EF;
}

.seat--available,
.seat-legend--available {
  background-color: #707070;
}

.seat--selected,
.seat-legend--selected {
  background-color: #00AEEF;
}

.seat--big,
.seat--big-inactive,
.seat--big-selected,
.seat-legend--big,
.seat-legend--big-inactive,
.seat-legend--big-selected {
  width: 53px;
  background-size: 100%;
  background-repeat: no-repeat;
  border: 0;
}

.seat--big:hover {
  background-color: #00AEEF;
}

.movie__screen {
  width: 100%;
  height: 150px;
}

.menu__label {
  font-family: Raleway;
  color: #9EA8B2;
  margin-top: 20px;
}

.shop__menu-list {
  width: calc( 100% - 220px );
  box-sizing: border-box;
  margin-right: 80px;
  box-sizing: border-box;
  padding-bottom: 15px;
}

.category__title {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: block;
  font-family: Raleway;
  font-size: 24px;
  font-weight: bold;
  margin-left: -15px;
  color: #5d7934;
}

.category__side {
  width: 100px;
  height: 100%;
}

.category__product {
  width: 100px;
}

.category__title--product {
  color: #fff;
  width: 300px;
  text-align: center;
  margin-left: -115px;
}

.category__side-arrow--product {
  margin-left: -128px;
}

.shop__product {
  padding: 20px;
  box-sizing: border-box;
  background-color: #ffffff;
  width: 15%;
  height: 100%;
  box-sizing: border-box;
  margin: 10px;
  border-radius: 15px;
  min-height: 300px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.category__side-arrow--product path {
  fill: #fff;
}

.category__side-arrow {
  margin-left: -40px;
}

.shop__product-bg {
  background-color: #5d7934;
}

.shop__products {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
}

.shop__product-list {
  background-color: #5d7934;
  min-height: 300px;
  width: 100%;
  display: none;
  flex-wrap: wrap;
  padding-left: 15px;
  padding-right: 50px;
}

.product__title {
  font-size: 16px;
  font-family: Raleway;
  font-weight: bold;
  color: #5d7934;
  text-align: center;
  display: block;
}

.product__price {
  font-size: 22px;
  font-family: Raleway;
  color: #9EA8B2;
  display: block;
  text-align: center;
  width: 100%;
}

.button__addtocart {
  width: 100%;
  display: block;
  padding: 4px 0px;
  border: 1px solid #5d7934;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}

.button__addtocart:hover {
  text-decoration: none;
  background-color: #5d7934;
  color: #fff;
}

.shop__cart-button {
  display: inline-block;
  padding: 6px 20px;
  background-color: #5d7934;
  border-radius: 8px;
  font-family: Raleway;
  font-size: 22px;
  color: #fff;
  align-self: center;
}

.shop__cart-button img {
  margin-left: 15px;
  width: 30px;
}

.shop__cart-button:hover {
  text-decoration: none;
  color: #fff;
}

.mini-cart__content {
  position: absolute;
  width: 300px;
  background-color: #fff;
  height: auto;
  display: none;
  top: 45px;
  right: 0;
  left: auto;
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 15px;
  overflow: hidden;
}

.mini-cart__content--empty {
  height: auto;
}

.cart__elements {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
}

.movie__cart-button:hover .mini-cart__content {
  display: block;
}

/* imported */

.cart__elem,
.cart__tickets {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  position: relative;
}

.cart__elem {
  margin-top: 15px;
}

.cart__tickets {
  border: 1px solid #D99D45;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}

.cart__elem-details {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-left: 15px;
  width: 100%;
}

.cart__elements {
  height: 100%;
  max-height: 200px;
}

.cart__thumb {
  width: 50px;
}

.cart__thumb img {
  width: 100%;
  height: auto;
  max-height: 80px;
  border-radius: 3px;
}

.cart__thumb--large {
  height: auto;
}

.cart__thumb--large img {
  width: 50px;
  max-height: 90px;
  height: auto;
  border-radius: 3px;
}

.product__cart-wrap {
  background-color: #1B1B1B;
  border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 15px;
  position: relative;
}

.black__bg {
  width: 100%;
  height: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.7);
  display: none;
}

.modal__wrap {
  width: 640px;
  padding: 25px;
  min-height: 400px;
  background-color: #000;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100000;
  display: none;
}

.modal__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.select--margin {
  margin-top: 25px;
}

.select--margin:after {
  margin-top: -15px;
}

.orange__link,
.page--orange_links a {
  color: #D99D45;
}

.cart__elem-title,
.cart__elem-total {
  font-family: Raleway;
  font-size: 15px;
  color: #5d7934;
  font-weight: 700;
}

.cart__elem-date {
  font-weight: 400;
}

.cart__elem-price {
  font-family: Raleway;
  font-size: 14px;
  color: #9EA8B2;
}

.cart__remove {
  background-color: red;
  border-radius: 4px;
  width: 24px;
  height: 23px;
  font-family: Gotham;
  text-align: center;
  display: none;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: auto;
  cursor: pointer;
  cursor: pointer;
}

.cart__elem:hover .cart__remove,
.cart__tickets:hover .cart__remove {
  display: -webkit-box;
  display: flex;
  right: 10px;
}

/* end imported */

.modal__menu {
  width: 600px;
  height: 400px;
  background-color: #fff;
  position: absolute;
  z-index: 9999999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
  padding: 70px;
  box-sizing: border-box;
  border-radius: 18px;
}

.checkout__header {
  text-align: center;
  padding: 15px;
  background-color: #5d7934;
  font-family: Raleway;
  color: #fff;
  font-size: 22px;
  border-radius: 15px 15px 0 0;
}

.checkout__row {
  padding: 15px 50px;
  box-sizing: border-box;
  width: 100%;
}

.checkout__row:nth-child(odd) {
  background-color: #fff;
}

.checkout__row:nth-child(even) {
  background-color: #E7E8EF;
}

.checkout__product-image {
  width: 15%;
  margin-right: 15px;
}

.checkout__image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  align-self: flex-start;
}

.checkout__product-column {
  width: 35%;
  color: #5d7934;
}

.checkout__qty-column {
  width: 30%;
  color: #5d7934;
}

.checkout__price-column {
  width: 20%;
  color: #5d7934;
}

.checkout__column-header {
  font-family: Raleway;
  font-size: 18px;
  color: #5d7934;
}

.checkout__column {
  font-family: Raleway;
  font-size: 18px;
}

.checkout__column--bold {
  font-weight: 600;
}

.checkout__poster {
  width: 87px;
  border-radius: 5px;
  margin-right: 15px;
}

.checkout__icon {
  width: 20px;
  height: 20px;
}

.checkout__grey-text {
  color: #9EA8B2;
  padding-right: 15px;
}

.checkout__controls {
  width: 100%;
}

.checkout__logo-text {
  font-family: Raleway;
  color: #9EA8B2;
  font-size: 28px;
}

.checkout__logo {
  width: 100%;
}

.padding-left--55 {
  padding-left: 55px;
}

.padding-right--55 {
  padding-right: 55px;
}

.box__offer {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  padding-bottom: 3px;
  box-sizing: border-box;
}

.offer__picture {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 350px;
}

.offer__title {
  font-family: Raleway;
  font-size: 19px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: normal;
  text-align: left;
  color: #273166;
  padding: 21px 12px;
  width: 100%;
}

.offer__title--no-pad-left {
  padding-left: 0;
}

.offer__cover {
  width: 100%;
  height: auto;
}

.login__wrap--no-padding-right {
  padding-right: 0;
}

.login__wrap {
  background-color: #FBFBFB;
  border-radius: 15px 0 0 15px;
  box-shadow: 0 9px 18px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  margin-top: 50px;
}

.login__header {
  font-family: Raleway;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  background-color: #9EA8B2;
  padding-top: 16px;
  padding-bottom: 12px;
  text-align: center;
  border-radius: 8px 0px 0 0;
}

.login__lable {
  font-family: Raleway;
  color: #9EA8B2;
  font-size: 18px;
  font-weight: 600;
}

.login__lable--no-bold {
  font-weight: 400;
}

.login__input {
  border: 1px solid #5d7934;
  border-radius: 5px;
}

.login__content {
  padding: 30px 50px;
}

.login__column-input {
  width: 55%;
}

.login__column-input--25px {
  width: 25px;
}

.login__column-labels--flex1 {
  -webkit-box-flex: 1;
          flex: 1;
  width: auto;
  margin-right: 15px;
}

.login__row {
  margin-top: 15px;
  margin-bottom: 15px;
}

.login__input {
  width: 100%;
  padding: 6px;
}

*:focus {
  outline: none;
}

.login__column-labels {
  width: 45%;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  background-color: #eee;
}

.checkbox-original {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* On mouse-over, add a grey background color */

.ckbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.ckbox {
  position: relative;
}

.ckbox--fixed-width {
  width: 25px;
  height: 25px;
}

/* When the checkbox is checked, add a blue background */

.ckbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.ckbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.ckbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.login__captcha-message {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #5d7934;
  font-weight: 700;
}

.data__gdpr {
  font-family: Raleway;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  padding: 0 45px;
}

.data__gdpr a {
  color: #fff;
  font-weight: 700;
}

.blue__bar-data {
  width: 51%;
  height: 250px;
  background-color: #5d7934;
  position: absolute;
  z-index: 0;
  top: 70%;
  translate: transformY(-50%);
  left: 0;
}

.blue__bar-data .row {
  height: 100%;
}

.account__box {
  background-color: #fff;
  border-radius: 18px;
  padding: 40px 70px;
  border: 2px solid #5d7934;
  position: absolute;
  z-index: 9999999;
  top: 85px;
  right: 25px;
  max-width: 350px;
  font-family: Raleway;
}

.account__box--full {
  width: 100%;
}

.all-tabs__box {
  right: 0;
  width: 100%;
  max-width: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 40px 20px;
}

.account__box--contact {
  padding: 40px;
}

.account__blue-arrow {
  position: absolute;
  top: -23px;
  right: 70px;
  width: 30px;
  height: 30px;
  z-index: -1000;
}

.contact__blue-arrow {
  position: absolute;
  top: -23px;
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: -1000;
}

.location__blue-arrow {
  position: absolute;
  top: -23px;
  right: 126px;
  width: 30px;
  height: 30px;
  z-index: -1000;
}

.language__blue-arrow {
  position: absolute;
  top: -23px;
  right: 124px;
  width: 30px;
  height: 30px;
  z-index: -1000;
}

.account__box-title {
  font-size: 21px;
  font-family: Raleway;
  font-weight: 800;
  color: #273166;
  padding-left: 15px;
  border-left: 2px solid #5d7934;
  display: inline-block;
}

.account__box-subtitle {
  color: #273166;
  font-family: Raleway;
  font-weight: 600;
  font-size: 14px;
  padding-left: 16px;
}

.account__box-lable {
  font-size: 14px;
  font-family: Raleway;
  font-weight: 600;
  color: #273166;
}

.account__input {
  width: 100%;
  border: 1px solid #5d7934;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
}

.all-tabs__menu {
  width: 100%;
}

.all-tabs__main {
  width: 19px;
  height: auto;
  margin-right: 15px;
}

.button__account-login {
  margin-top: 5px;
  border-radius: 50px;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.account__social-login:nth-of-type(1) {
  margin-top: 10px;
}

.account__section {
  margin-top: 20px;
}

.account__section:nth-of-type(1) {
  margin-top: 0;
}

.movies-soon__wrap {
  background-color: #fff;
  padding: 0;
}

.movies-soon__tabs {
  margin-top: 25px;
}

.movies-soon__tab {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  cursor: pointer;
}

.movies-soon__tab--inactive {
  -webkit-box-flex: 1;
          flex: 1;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
}

.movie-soon__tab--right.movies-soon__tab--inactive {
  -webkit-box-flex: 1;
          flex: 1;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
  border-radius: 8px 0px 0px 8px;
}

.movie-soon__tab--left.movies-soon__tab--inactive {
  border-radius: 0px 8px 8px 0px;
}

.movies-soon__tab--active {
  width: 450px;
  background-color: #5d7934;
}

.movie-soon__tab--left.movies-soon__tab--active {
  margin-right: 15px;
  border-radius: 0px 8px 8px 0px;
}

.movie-soon__tab--right.movies-soon__tab--active {
  margin-left: 15px;
  border-radius: 8px 0px 0px 8px;
}

.movies-soon__tab span {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  padding-left: 15px;
  box-sizing: border-box;
  display: inline-block;
  border-left: 3px solid #fff;
  line-height: 1.5;
}

.movies-soon__tab--inactive span {
  color: #9ea8b2;
  padding-left: 15px;
  box-sizing: border-box;
  display: inline-block;
  border-left: 3px solid #5d7934;
}

.movies__all-container {
  padding: 0 40px;
}

.movies__all-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  margin-top: 25px;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.item__poster-wrap {
  position: relative;
  display: block;
}

.item__poster-wrap:hover .item__poster--hover {
  display: -webkit-box;
  display: flex;
}

.item__poster {
  width: 100%;
  height: auto;
}

.item__poster--hover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
  background-size: cover;
}

.item__hover--icon {
  width: 100px;
  height: 100px;
}

.item__hover-text {
  font-family: Raleway;
  font-size: 27px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  margin-top: 15px;
  display: inline-block;
}

.action__icon {
  width: 21px;
  margin-top: -3px;
}

.action__icon path {
  fill: #5d7934;
}

.item__actions {
  padding: 15px;
}

.action__lable {
  font-family: Raleway;
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #9ea8b2;
}

.item__title {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: normal;
  text-align: left;
  color: #5d7934;
}

.item__title a {
  color: #5d7934;
}

.item__title a:hover {
  text-decoration: none;
}

.item__badges .badge__3d {
  width: 39px;
  align-self: flex-start;
}

.item__badges .badge__imdb {
  width: auto;
}

.item__badges .badge__imdb {
  padding: 1px 6px;
}

.item__badges .badge__imdb img {
  width: 32px;
  margin-right: 5px;
}

.item__badges .imdb__val {
  font-size: 14px;
}

.item__content-padding {
  padding: 0 15px 15px;
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.campaign__item {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  margin-top: 15px;
  overflow: hidden;
}

.campaign__item a {
  display: block;
}

.campaign__padding {
  padding: 0px 35px 35px;
}

.campaign__modal {
  display: -webkit-box;
  display: flex;
  width: calc( 100vw - 80px );
  height: 130vh;
  position: absolute;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100000;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.campaign__poster-wrap {
  width: 40%;
}

.campaign__rules {
  padding: 0px 50px;
  -webkit-box-flex: 1;
          flex: 1;
  background-color: #fff;
  height: 400px;
  overflow-y: scroll;
}

.rules__state {
  width: 50px;
  height: 50px;
}

.rules__title-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
}

.rules__title {
  font-family: Raleway;
  font-size: 28px;
  color: #5d7934;
  font-weight: 600;
}

.rules__text {
  font-family: Raleway;
  font-weight: 400;
  color: #5d7934;
  font-size: 26px;
}

.rules__period {
  font-family: Raleway;
  font-weight: 400;
  color: #828282;
}

.rules__content {
  font-family: Raleway;
  font-size: 14px;
  font-weight: 400;
  color: #28282D;
}

@media (max-width: 2560px) {
  .blue__bar-data {
    top: 50%;
  }
}

.campaign__close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #5d7934;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  cursor: pointer;
}

.movie__cta {
  background-color: #EAF5FF;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  align-self: flex-end;
  -webkit-transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
}

.movie__cta:hover {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
}

.movie__cta:hover,
.movie__cta a:hover {
  text-decoration: none;
}

.faq__title {
  width: 100%;
  padding: 12px 30px;
  font-family: Raleway;
  border-radius: 12px;
  color: #707070;
  background-color: #E7E8EF;
  cursor: pointer;
  line-height: 40px;
}

.faq__toggler {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #5d7934;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #5d7934;
}

.gdpr__toggler {
  width: auto;
  height: auto;
  padding: 1px 10px;
  border-radius: 18px;
}

.faq__toggler--active {
  color: #fff;
  border: 1px solid #fff;
}

.faq__toggler--active .faq__toggler {
  color: #fff;
  border: 1px solid #fff;
}

.faq__icon {
  display: block;
  margin-top: 0px;
  font-family: Raleway;
  font-size: 31px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gdpr__icon {
  margin-top: 0;
  font-size: 14px;
}

.gdpr__icon {
  margin-top: -5px;
}

.faq__title--active {
  background-color: #5d7934;
  color: #fff;
}

.faq__body {
  font-family: Raleway;
  font-size: 14px;
  color: #28282D;
  height: auto;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.faq__body--active {
  padding: 15px 30px;
  max-height: 1000px;
}

.faq__wrap {
  padding: 0 35px;
}

.faq__border {
  margin-top: 15px;
}

.faq__border--active {
  border: 2px solid #5d7934;
  background-color: #fff;
  border-radius: 15px;
}

.gdpr__banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  padding: 50px;
  box-sizing: border-box;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
}

.gdpr__banner-wrap {
  padding: 0 35px;
}

.gdpr__disclaimer {
  width: 40%;
  font-family: Raleway;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.gdpr__cta {
  font-family: Raleway;
  font-size: 32px;
  color: #9EA8B2;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}

.about__banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}

.about__left,
.about__right {
  width: 50%;
}

.about__banner-desc {
  font-family: Raleway;
  font-size: 14px;
  color: #fff;
}

.about__banner-img {
  width: 70%;
}

.about__intro {
  margin-top: 50px;
  padding: 0 45px;
}

.about__title {
  font-size: 36px;
  font-family: Raleway;
  font-weight: 700;
  color: #5d7934;
}

.about__title--dark {
  color: #273166;
}

.about__desc {
  color: #9EA8B2;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 600;
}

.about__numbers {
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__numbers-title {
  font-family: Raleway;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.about__numbers-text {
  font-family: Raleway;
  font-size: 28px;
  color: #fff;
  text-align: center;
}

.numbers--bold {
  font-weight: 700;
}

.contact__tab--bold {
  font-weight: 600;
}

.account__section-row {
  margin-top: 5px;
}

.account__box-p {
  font-family: Raleway;
  font-size: 14px;
  line-height: 18px;
  color: #707070;
}

.account__section-row a {
  text-decoration: none;
  color: #707070;
}

.account__section-row svg {
  width: 25px;
  height: 25px;
}

.login__modal {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  bottom: 0;
  left: 50%;
  padding: 50px;
  box-sizing: border-box;
}

.loyalty__title {
  font-size: 24px;
  color: #5d7934;
  font-family: Raleway;
  font-weight: 700;
  margin-top: 30px;
}

.loyalty__desc {
  color: #9EA8B2;
  font-family: Raleway;
  font-size: 16px;
}

.loyalty__logo {
  width: 80%;
}

.loyalty__text-wrap {
  padding-left: 35px;
}

.loyalty__bg {
  background-image: url(/images/cineplex-background-2.jpg?cb21eb7eb47cfaf274518f58f199bbf9);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 65px 15px;
}

.loyalty__form-wrap {
  width: 100%;
  padding: 50px;
  background-color: #fff;
  border-radius: 15px;
}

.form__input {
  border: 1px solid #5d7934;
  border-radius: 5px;
}

.loyalty__title--grey {
  color: #9EA8B2;
  margin: 0 0 50px;
}

.arrow--margin-left {
  left: 25px;
}

.contact__title--white {
  color: #fff;
}

.loyalty__form {
  width: 100%;
}

.form__input {
  padding: 8px;
}

.form__lable {
  font-family: Raleway;
  color: #5d7934;
  font-weight: 700;
  display: block;
  margin-top: 5px;
}

.form--margin-left {
  margin-left: 15px;
}

.form--margin-right {
  margin-right: 15px;
}

.loyalty__rules-wrap,
.terms__wrap {
  padding: 0 45px;
}

.loyalty__rules,
.terms__content {
  padding: 60px 130px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-top: -25px;
  background-color: #fff;
  border-radius: 18px;
}

.terms__content {
  padding-left: 50px;
  margin-top: 15px;
}

.terms__paragraph h1 {
  font-family: Raleway;
  font-size: 24px;
  color: #5d7934;
}

.terms__paragraph h2 {
  font-family: Raleway;
  font-size: 14px;
  font-weight: 700;
  color: #5d7934;
}

.loyalty__paragraph,
.terms__paragraph {
  font-family: Raleway;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  margin-top: 25px;
  height: auto;
  max-height: 400px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.terms__paragraph {
  margin-top: 0;
  padding-left: 50px;
}

.loyalty__paragraph--read-more,
.terms__paragraph--read-more {
  max-height: 10000px;
}

.term__icon {
  width: 90px;
  height: 100px;
}

.terms_icon img {
  width: 100%;
}

.contact__wrap {
  padding-left: 45px;
}

.contact__left {
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 50px;
  border-radius: 18px 0 0 18px;
}

.contact__left,
.contact__right {
  min-height: 400px;
}

.contact__logo-and-maps {
  width: 40%;
  height: 100%;
}

.contact__logo {
  width: 100%;
  height: auto;
}

.contact__map {
  width: 100%;
  height: 350px;
  background-color: #dedede;
}

.contact__info {
  width: 45%;
}

.contact__right {
  background-color: #5d7934;
  padding: 50px;
}

.form__lable--white {
  color: #fff;
}

.cart__elem-total {
  width: 100%;
}

.control__button--100 {
  width: 100%;
}

.button--no-margin {
  margin: 0;
}

.cart__total {
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  text-align: right;
}

.legend__item {
  margin: 7.5px;
}

.legend__lable {
  font-family: Raleway;
  font-size: 14px;
  color: #555555;
  font-weight: 600;
}

.modal__menu-title {
  font-family: Raleway;
  font-size: 24px;
  color: #5d7934;
}

.menu__modal-buttons {
  width: 70%;
  margin-top: 15px;
}

.loader__bar {
  width: 0;
  height: 4px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #5d7934;
}

.body__preloader {
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  background-color: #ffffff;
  top: 0;
  left: 0;
  position: fixed;
}

.prices__banners {
  padding: 0;
}

.prices__banner {
  width: 100%;
}

.prices__disclaimer-wrap {
  padding: 45px;
}

.prices__disclaimer {
  color: #9EA8B2;
  font-family: Raleway;
  font-size: 16px;
}

.app__wrap {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-left: 30px;
}

.app__left {
  padding: 40px 70px;
  box-sizing: border-box;
  min-height: 350px;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 600;
  color: #9EA8B2;
}

.app__right {
  min-height: 350px;
}

.app__buttons {
  margin-top: 50px;
}

.checkout__box {
  width: 100%;
  padding: 40px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 18px;
}

.reset__box-wrap {
  padding: 0 30px;
}

.reset__box {
  width: 100%;
  height: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 50px;
  box-sizing: border-box;
}

.padding-left--50 {
  padding-left: 50px;
}

.padding-left--45 {
  padding-left: 45px;
}

.padding-left--40 {
  padding-left: 40px;
}

.room__tooltip {
  font-family: Raleway;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.multiselect__option--highlight {
  background: #5d7934 !important;
}

.reset__box-wrap--margin {
  margin-top: 50px;
}

.reset__left {
  width: 23%;
  padding: 0 80px 0 50px;
  border-right: 1px solid #dedede;
  box-sizing: border-box;
}

.reset__right {
  -webkit-box-flex: 1;
          flex: 1;
  padding: 0 50px 0 80px;
  box-sizing: border-box;
}

.profile__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile__menu a {
  color: #5d7934;
  text-decoration: none;
}

.profile__item {
  list-style: none;
  font-weight: 700;
  color: #5d7934;
  border-bottom: 1px solid #dedede;
  padding: 15px 0;
}

.profile__item:last-child {
  border-bottom: 0;
}

.ticket__border {
  background-image: url(/images/ticket_border.svg?7fd1f22412f0d30b5121f98f91239553);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 350px;
}

.ticket__title {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 700;
  color: #5d7934;
}

.ticket__detail {
  font-family: Raleway;
  font-size: 14px;
  color: #9EA8B2;
  font-weight: 700;
}

.ticket__code {
  padding: 50px;
  border-left: 3px solid #5d7934;
  margin-left: 50px;
}

.ticketing__info {
  padding-top: 10px;
  font-family: Raleway;
  color: #5d7934;
  font-size: 12px;
  font-weight: 700;
}

.rules__header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.checkout__ticket {
  border: 4px solid #5d7934;
  border-radius: 8px;
}

.faq__toggler .gdpr__icon {
  margin-top: 0;
}

.burger-icon,
.search-icon {
  cursor: pointer;
}

.mobile__menu {
  margin: 30px 0 0 0;
  padding: 0;
}

.mobile__item,
.mobile__sub-item {
  list-style: none;
  text-align: center;
}

.mobile__link,
.mobile__sub-link {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 700;
  color: #273166;
}

.mobile__sub-menu {
  display: none;
  padding: 0;
  margin: 0;
}

.mobile__sub-link,
.mobile__sub-item {
  color: #9EA8B2;
}

.mobile__item:hover > .mobile__sub-menu {
  display: block;
}

.all-tabs__big-menu,
.all-tabs__contact,
.all-tabs__account,
.all-tabs__location {
  margin-top: 30px;
}

.all-tabs__socials {
  margin-top: 30px;
}

.shop__cart-qty {
  position: absolute;
  top: -8px;
  z-index: 100000;
  background-color: red;
  border-radius: 8px;
  padding: 2px 4px;
  font-size: 14px;
  color: #fff;
}

.glide__slides {
  margin-bottom: 0;
}

.glide__slides2 {
  overflow: visible !important;
}

@media (max-width: 1920px) {
  .blue__bar-data {
    top: 55%;
  }
}

@media (min-width: 1690px) {
  .movie__cta {
    margin-left: 15px;
  }
}

@media (min-width: 1680px) {
  .blue__bar-data {
    top: 60%;
  }

  .movie__cta {
    margin-top: 15px;
  }
}

@media (min-width: 1440px) {
  .movie__poster {
    max-height: 400px;
  }

  .blue__bar-data {
    top: 60%;
  }
}

@media (min-width: 1280px) {
  .choose-when__wrap {
    display: -webkit-box;
    display: flex;
  }
}

@media (min-width: 960px) {
  .seat--available:hover {
    background-color: #00AEEF;
  }
}

@media (max-width: 960px) {
  .about__left,
  .about__right {
    width: 100%;
  }

  .terms__icon {
    display: none;
  }

  .loyalty__rules-wrap,
  .terms__wrap {
    padding: 0 15px;
  }

  .terms__content {
    padding: 25px;
  }
}

@media (min-width: 1140px) and (max-width: 1400px) {
  .movie__poster {
    max-height: 325px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .login__modal {
    bottom: 30%;
  }
}

@media (max-width: 960px) {
  .reset__left {
    width: 100%;
    padding: 0 50px;
  }

  .reset__right {
    width: 100%;
    padding: 0 50px;
  }

  .profile__menu {
    text-align: center;
    padding: 0 50px;
  }

  .ticket__code {
    border-left: 0;
    margin-left: 0;
    border-bottom: 3px solid #5d7934;
    padding: 25px 0 50px;
  }

  .ticket__detail {
    text-align: center;
  }

  .ticket__border {
    background-image: none;
    height: auto;
  }

  .ticket__recap {
    margin-top: 50px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .schedule__content {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .button--no-margin {
    margin-top: 5px;
  }

  .height-seat {
    width: auto;
    height: 30px;
  }

  .screen-width {
    width: 100%;
  }

  .campaign__padding {
    padding: 15px;
    box-sizing: border-box;
  }

  .campaign__modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 100%;
    position: relative;
  }

  .campaign__rules {
    padding: 0;
  }

  .rules__header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-bottom: 15px;
  }

  .campaign__close {
    right: 30px;
  }

  .campaign__poster-wrap {
    width: 100%;
  }

  .choose-when {
    display: none;
  }

  .overflow-x-scroll {
    overflow-x: scroll;
  }

  .checkout__row {
    padding: 15px;
  }

  .reset__left {
    border: 0;
  }

  .loyalty__text-wrap {
    padding-left: 15px;
  }

  .menu__modal-buttons {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .carousel__title {
    font-size: 12px;
  }

  .cumpara-bilet__wrap {
    display: none;
  }

  .new-soon__dates {
    padding-left: 0;
  }

  .now-soon__tab {
    padding-left: 15px;
  }

  .now-soon__tab span,
  .title-with-line,
  .movie__section-title {
    font-size: 14px;
  }

  .now-soon__tab--active {
    width: 200px;
  }

  .glide__arrow--left {
    width: 12px !important;
    height: 34px;
    left: 15px;
  }

  .glide__arrow--right {
    width: 12px !important;
    height: 34px;
  }

  .movie__shadow--left {
    background-position: center right;
    background-size: cover;
    max-width: 80px;
  }

  .movie__shadow--right {
    background-position: center left;
    background-size: cover;
    max-width: 80px;
  }

  .no-padding-mobile {
    padding: 0;
  }

  .campaigns__title-area {
    padding-left: 15px;
  }

  .title__blue-shape {
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .title__blue-shape--full {
    padding-left: 0px;
    text-align: center;
  }

  .glide2__wrap {
    padding: 0 15px;
  }

  .glide__arrow--campaign-right {
    right: 45px;
  }

  .glide__arrow--campaign-left {
    left: 45px;
  }

  .info-box__wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-box {
    min-height: 350px;
    height: auto;
    margin-top: 15px;
  }

  .info-box__pic1 {
    width: 220px;
    right: 0;
  }

  .info-box__pic2 {
    width: 170px;
  }

  .footer__col {
    margin-top: 25px;
  }

  .new-soon__date {
    font-size: 14px;
  }

  .new-soon__nr {
    font-size: 28px;
  }

  .new-soon__date:hover .new-soon__movie-wrap {
    display: none;
  }

  .body__preloader {
    height: 105vh;
  }

  .schedule__content {
    padding: 0 15px;
  }

  .event__buble {
    margin-bottom: 15px;
  }

  .schedule__title-wrap {
    padding: 25px 15px;
  }

  .subtitle--medium {
    font-size: 16px;
  }

  .choose-when {
    padding-left: 15px;
  }

  .movie__details {
    padding-left: 15px;
  }

  .movie__poster {
    margin-right: 0;
  }

  .movie__right-column {
    padding: 25px;
  }

  .login__modal {
    padding: 25px;
  }

  .glide__arrow--small-right {
    right: 0;
  }

  .padding-left--40 {
    padding-left: 15px;
  }

  .checkout__header {
    margin-top: 50px;
  }

  .padding-left--50 {
    padding-left: 15px;
  }

  .control__button--active,
  .control__button:hover {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }

  .checkout__logo {
    width: 80%;
    margin: 50px auto;
  }

  .checkout__logo-text {
    text-align: center;
  }

  .category__title {
    font-size: 18px;
  }

  .category__side-arrow {
    margin-left: -30px;
    width: 10px;
  }

  .shop__menu-list {
    width: calc( 100% - 120px );
  }

  .cart__title {
    padding-left: 25px;
  }

  .shop__product {
    width: 48%;
    box-sizing: border-box;
    margin: 0 0 10px 0;
  }

  .shop__menu-list .glide__arrow--right {
    width: 24px;
    height: 45px;
  }

  .shop__product-list {
    padding-left: 0;
    padding-right: 0px;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }

  .padding-right--55 {
    padding-right: 30px;
  }

  .padding-left--55 {
    padding-left: 30px;
  }

  .box__offer {
    margin-bottom: 15px;
  }

  .faq__title {
    line-height: 24px;
  }

  .faq__toggler {
    min-width: 30px;
  }

  .faq__toggler--active {
    width: 30px;
  }

  .faq__toggler--active .faq__icon {
    margin-top: -3px;
  }

  .faq__title {
    padding: 12px;
  }

  .faq__wrap {
    padding: 0 15px;
  }

  .reset__box-wrap--margin {
    margin: 0px;
    box-sizing: border-box;
  }

  .reset__box-wrap {
    padding: 15px;
    box-sizing: border-box;
  }

  .reset__box {
    padding: 25px;
  }

  .footer__wrap {
    padding: 35px 20px;
  }

  .tickets__table-header {
    font-size: 12px;
  }

  .ticket__date,
  .ticket__hour {
    font-size: 18px;
  }

  .login__column-input {
    width: 100%;
  }

  .data__gdpr {
    text-align: center;
    padding: 15px;
  }

  .blue__bar-data {
    position: relative;
    width: 100%;
    padding: 50px 15px;
    height: auto;
  }

  .login__column-labels {
    width: 100%;
  }

  .tickets__table-row,
  .tickets__table-seat,
  .tickets__table-type {
    font-size: 12px;
    padding: 0;
  }

  .terms__paragraph {
    padding-left: 0;
  }
}

@media (max-width: 375px) {
  .movie__poster {
    align-self: center;
    max-width: 98%;
  }

  .movie__right-wrap {
    margin-top: 0;
  }

  .movie__right-column {
    margin-top: 0;
  }
}

@media (max-height: 730px) {
  .movie__right-wrap {
    margin-top: -500px;
  }
}

.rules-main p {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.offer-main-div {
  width: 66.66%;
  padding-right: 15px;
  padding-left: 15px;
}

.offer-ongoing-div {
  width: 33.33%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}

.offer-ongoing-info {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.offer-ongoing-info > h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  font: 20px "Segoe-UI-Semibold";
  color: #000;
  text-transform: uppercase;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.offer-ongoing-info > ul > li {
  font: 20px "Segoe-UI-Regular";
  color: #525252;
}

.nav_bar_top {
  height: 80px;
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.nav-menu-bar {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.menu-header {
  display: -webkit-box;
  display: flex;
  margin-left: 60px;
  margin-bottom: 0;
}

.nav-menu-bar .menu-header li.active a:before {
  content: "";
  position: absolute;
  top: 100%;
  width: 7px;
  height: 7px;
  background-color: #546c31;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}

.header_top_right {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.authorize,
.my_accounts_user {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 27px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 18px;
  cursor: pointer;
  border-radius: 15px;
  background-color: #5d7934;
  color: #fff;
}

.authorize a,
.my_accounts_user a,
.accounts_exit a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  font-size: 12px;
  line-height: 18.45px;
  font-family: "Segoe-UI-Semibold";
}

.header_top_right .language {
  display: -webkit-box;
  display: flex;
  margin-left: 30px;
}

.header_top_right .language .language_item {
  display: inherit;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  color: #546c31;
  font: 10px/20px "Segoe-UI-Semibold";
  text-transform: uppercase;
  border: 1px solid #546c31;
  margin-right: 5px;
}

.header_top_right .social_link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: 60px;
  margin-bottom: 0;
}

.header_top_right .language .language_item.active {
  color: #fff;
  background-color: #546c31;
}

@media only screen and (max-width: 767px) {
  .burger_phone {
    display: block;
    height: 75px;
    line-height: 75px;
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  .burger_phone .nav_logo {
    width: 160px;
    display: inline-block;
  }
}

@media only screen and (max-width: 767px) {
  .burger_phone .mobile_dispaly {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .bar1,
  .bar2,
  .bar3 {
    width: 30px;
    height: 4px;
    background-color: #5e7d2f;
    margin: 5px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media only screen and (max-width: 767px) {
  .nav_bar_top {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .nav_bar_top.active {
    display: block;
    min-height: 100vh;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
}

@media only screen and (max-width: 767px) {
  .nav-menu-bar .menu-header li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .nav-menu-bar .menu-header li {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .nav-menu-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .nav-menu-bar .nav_logo {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .nav-menu-bar .menu-header {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .nav-menu-bar .menu-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-left: 0;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .header_top_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .authorize {
    height: 30px;
    padding: 0 30px;
    font-size: 15px;
    line-height: 30px;
    font-family: "Segoe-UI-Semibold";
  }
}

@media only screen and (max-width: 767px) {
  .header_top_right .language {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 992px) {
  .header_top_right .language {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .header_top_right .social_link {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .header_top_right .social_link {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 992px) {
  .header_top_right .language .language_item {
    width: 20px;
    height: 20px;
    font-size: 8px;
    border: 1px solid #546c31;
  }
}

@media only screen and (max-width: 767px) {
  .header_top_right .language .language_item {
    width: 35px;
    height: 35px;
    font: 15px/25px "Segoe-UI-Semibold";
    margin-right: 15px;
  }
}

.reset_password_submit {
  height: 43px !important;
  border-radius: 20px !important;
  width: 230px !important;
}

html,
body {
  overflow: inherit;
  width: 100%;
}

.product-item .product-title a:hover {
  color: #5e992f;
}

.btn-primary {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.btn-primary:hover {
  color: #fff;
  background-color: #5e992f;
  border-color: #5e992f;
}

.ck-link_selected a {
  background: #5e992f;
  color: #5e992f;
}

@media screen and (max-width: 820px) {
  .offer-ongoing-div {
    display: none;
  }

  .offer-main-div {
    width: 100%;
  }
}

