/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
VARIABLES
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
BODY
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  height: 100%;
  width: 100%;
  min-height: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004) !important;
  color: #2d0113;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande";
}

body {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.1px;
  color: #2d0113;
  letter-spacing: 0.3px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
}

select::-ms-expand {
  display: none;
}

.icon {
  width: 24px;
  height: 24px;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

::-webkit-input-placeholder {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande";
  opacity: 0.45;
}

:-ms-input-placeholder {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande";
  opacity: 0.45;
}

:-moz-placeholder {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Lucida Grande";
  opacity: 0.45;
}

.errors {
  display: inline-block;
  margin-top: 0;
  color: red;
  font-size: 11px;
  transform: translate(0, -15px);
}

.login-form .errors {
  margin-top: 10px;
  text-align: left;
  width: 100%;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
COOKIES
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.cookies-content {
  position: fixed;
  z-index: 1001;
  top: 0;
  width: 100%;
  padding: 40px 0;
  background-color: #1E87F0;
  color: #fff;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cookies-content h3 {
  max-width: 800px;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.cookies-content p {
  max-width: 800px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2rem;
}
.cookies-content p a {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
}
.cookies-content .agree-btn {
  display: block;
  margin: 0px auto;
  margin-top: 20px;
  font-size: 1.6rem;
  background-color: #fff;
  text-align: center;
  padding: 10px 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-weight: 600;
  color: #1E87F0;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
POP BOX
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.pop-content {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  top: 0;
  display: none;
}
.pop-content .pop-box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pop-content .pop-box .pop-card {
  width: 460px;
  background-color: #fff;
  padding: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  opacity: 0;
  transform: translate(0px, 25px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.pop-content .pop-box .pop-card .pop-header {
  margin-bottom: 15px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.pop-content .pop-box .pop-card .pop-header .pop-title {
  font-size: 2.4rem;
  font-weight: 600;
}
.pop-content .pop-box .pop-card .pop-header .explication {
  font-size: 1.4rem;
  opacity: 0.5;
}
.pop-content .pop-box .pop-card .pop-header .close-pop {
  margin-top: -2px;
  font-size: 3.6rem;
  color: #2d0113;
  padding: 0px 12px 5px 13px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.pop-content .pop-box .pop-card .pop-header .close-pop:hover {
  opacity: 1;
}
.pop-content .pop-box .pop-card .pop-subtitle {
  opacity: 0.5;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 20px;
}
.pop-content .pop-box .pop-card .user-type {
  font-size: 1.8rem;
  font-weight: 600;
  color: #C60554;
  margin-bottom: 2px;
}
.pop-content .pop-box .pop-card .user-type-alternative {
  font-size: 1.3rem;
  margin-bottom: 20px;
  opacity: 0.5;
  cursor: pointer;
}
.pop-content .pop-box .pop-card .user-type-alternative:hover {
  text-decoration: underline;
}
.pop-content .pop-box .pop-card .form-user .field-group .field-error {
  display: none;
}
.pop-content .pop-box .pop-card .form-user .field-group-error input[type=text],
.pop-content .pop-box .pop-card .form-user .field-group-error input[type=password],
.pop-content .pop-box .pop-card .form-user .field-group-error input[type=email] {
  border-color: #d93025;
}
.pop-content .pop-box .pop-card .form-user .field-group-error .field-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  transform: translate(0px, -15px);
}
.pop-content .pop-box .pop-card .form-user .form-user-row {
  border: 2px solid #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 20px;
  color: #2d0113;
  margin-bottom: 5px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pop-content .pop-box .pop-card .form-user .form-user-row:hover {
  border-color: #C60554;
}
.pop-content .pop-box .pop-card .form-user .form-user-row:hover .form-user-title {
  color: #C60554;
}
.pop-content .pop-box .pop-card .form-user .form-user-row:hover .form-user-subtitle {
  opacity: 1;
}
.pop-content .pop-box .pop-card .form-user .form-user-row:last-child {
  margin-bottom: 0px;
}
.pop-content .pop-box .pop-card .form-user .form-user-row .form-user-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2d0113;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pop-content .pop-box .pop-card .form-user .form-user-row .form-user-subtitle {
  font-size: 1.4rem;
  opacity: 0.75;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pop-content .pop-box .pop-card .form-user .remember-text {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 20px;
}
.pop-content .pop-box .pop-card .form-user label {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 10px;
  display: block;
}
.pop-content .pop-box .pop-card .form-user input[type=text],
.pop-content .pop-box .pop-card .form-user input[type=password],
.pop-content .pop-box .pop-card .form-user input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pop-content .pop-box .pop-card .form-user input[type=text]:focus,
.pop-content .pop-box .pop-card .form-user input[type=password]:focus,
.pop-content .pop-box .pop-card .form-user input[type=email]:focus {
  border-color: #1E87F0;
}
.pop-content .pop-box .pop-card .form-user .sales-input {
  margin-top: -10px;
}
.pop-content .pop-box .pop-card .form-user select {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.pop-content .pop-box .pop-card .form-user .sales-input {
  display: none;
}
.pop-content .pop-box .pop-card .form-user input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.pop-content .pop-box .pop-card .form-user input[type=submit]:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.pop-content .pop-box .pop-card .as-guest-text {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E8E8E8;
  font-size: 1.4rem;
  opacity: 0.5;
}
.pop-content .pop-box .pop-card .as-guest {
  margin-top: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  border: 1px solid #C60554;
  text-align: center;
  color: #C60554;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  display: inline-block;
  cursor: pointer;
}
.pop-content .pop-box .pop-card .as-guest:hover {
  background-color: #C60554;
  color: #fff;
}
.pop-content .pop-box .pop-card-position {
  opacity: 1;
  transform: translate(0px, 0px);
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NAV-SCROLL
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.nav-scroll {
  width: 100%;
  margin-top: -70px;
  z-index: 1000;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.nav-scroll .nav {
  width: 100%;
  height: 70px;
  background-color: #fff;
  border-bottom: 1px solid #f9f9f9;
}
.nav-scroll .nav .nav-scroll-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  height: 70px;
}
.nav-scroll .nav .nav-scroll-content .main-brand {
  background-image: url("../img/brand-color.svg");
  width: 90px;
  height: 44.2px;
}
.nav-scroll .nav .nav-scroll-content .nav-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.nav-scroll .nav .nav-scroll-content .nav-right form {
  margin-right: 20px;
}
.nav-scroll .nav .nav-scroll-content .nav-right form select {
  width: 70px;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.nav-scroll .nav .nav-scroll-content .nav-right .nav-login {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .nav-login .login-btn,
.nav-scroll .nav .nav-scroll-content .nav-right .nav-login .register-btn {
  font-size: 1.6rem;
  color: #2d0113;
}
.nav-scroll .nav .nav-scroll-content .nav-right .nav-login .register-btn {
  margin-left: 20px;
  font-weight: 700;
  color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  height: 70px;
  cursor: pointer;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-box .user-img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #f6f6f6;
  margin-right: 20px;
  background-image: url("../img/userPlaceholder.png");
  background-size: 35px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-box .profile-drop-icon {
  margin-left: 5px;
  width: 45px;
  height: 45px;
  background-image: url(../img/ico35Drop.svg);
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options {
  position: absolute;
  top: 70px;
  right: 0px;
  min-width: 230px;
  border: 1px solid #f1f1f1;
  border-top: 0px;
  background-color: #fff;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: none;
  transform: translate(0px, -10px);
  opacity: 0;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .user-options-box {
  padding: 20px 30px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.35;
  letter-spacing: 0.3px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn {
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 0.75;
  margin-bottom: 8px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn:last-child {
  margin-bottom: 0px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn:hover {
  opacity: 1;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options form {
  padding: 20px 30px;
  border-top: 1px solid #f1f1f1;
  margin: 0px;
  padding: 20px 30px;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options form select {
  width: 100%;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options .log-out {
  padding: 20px 30px;
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 1;
  border-top: 1px solid #f1f1f1;
  font-weight: 600;
}
.nav-scroll .nav .nav-scroll-content .nav-right .user-options-animation {
  transform: translate(0px, 0px);
  opacity: 1;
}
.nav-scroll .nav .nav-scroll-content .hamburger {
  width: 24px;
  height: 24px;
  background-image: url("../img/ico24menu.svg");
  background-size: 18px;
  background-position: center;
  display: none;
}

.nav-scroll-down {
  margin-top: 0px;
}

.nav-general .nav {
  width: 100%;
  height: 70px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-bottom: 1px solid #f9f9f9;
}
.nav-general .nav .nav-scroll-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  height: 70px;
}
.nav-general .nav .nav-scroll-content .main-brand {
  background-image: url("../img/brand-color.svg");
  width: 90px;
  height: 44.2px;
}
.nav-general .nav .nav-scroll-content .nav-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.nav-general .nav .nav-scroll-content .nav-right form {
  margin-right: 20px;
}
.nav-general .nav .nav-scroll-content .nav-right form select {
  width: 70px;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.nav-general .nav .nav-scroll-content .nav-right .nav-login {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.nav-general .nav .nav-scroll-content .nav-right .nav-login .login-btn,
.nav-general .nav .nav-scroll-content .nav-right .nav-login .register-btn {
  font-size: 1.6rem;
  color: #2d0113;
}
.nav-general .nav .nav-scroll-content .nav-right .nav-login .register-btn {
  margin-left: 20px;
  font-weight: 700;
  color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  height: 70px;
  cursor: pointer;
}
.nav-general .nav .nav-scroll-content .nav-right .user-box .user-img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #f6f6f6;
  margin-right: 20px;
  background-image: url("../img/userPlaceholder.png");
  background-size: 35px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-box .profile-drop-icon {
  margin-left: 5px;
  width: 45px;
  height: 45px;
  background-image: url(../img/ico35Drop.svg);
}
.nav-general .nav .nav-scroll-content .nav-right .user-options {
  position: absolute;
  top: 70px;
  right: 0;
  min-width: 230px;
  border: 1px solid #f1f1f1;
  border-top: 0px;
  background-color: #fff;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: none;
  transform: translate(0px, -10px);
  opacity: 0;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .user-options-box {
  padding: 20px 30px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.35;
  letter-spacing: 0.3px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn {
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 0.75;
  margin-bottom: 8px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn:last-child {
  margin-bottom: 0px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .user-options-box .user-options-btn:hover {
  opacity: 1;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options form {
  padding: 20px 30px;
  border-top: 1px solid #f1f1f1;
  margin: 0px;
  padding: 20px 30px;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options form select {
  width: 100%;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options .log-out {
  padding: 20px 30px;
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 1;
  border-top: 1px solid #f1f1f1;
  font-weight: 600;
}
.nav-general .nav .nav-scroll-content .nav-right .user-options-animation {
  transform: translate(0px, 0px);
  opacity: 1;
}
.nav-general .nav .nav-scroll-content .hamburger {
  width: 30px;
  height: 30px;
  background-image: url("../img/ico24menu.svg");
  background-size: 30px;
  background-position: center;
  margin-top: 10px;
  display: none;
}

.menu-responsive-content {
  position: fixed;
  z-index: 500;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
}
.menu-responsive-content .menu-responsive-box {
  width: 100%;
  background-color: #fff;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 30px;
  position: fixed;
  bottom: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transform: translate(0, 100%);
}
.menu-responsive-content .menu-responsive-box .content {
  flex-grow: 1;
}
.menu-responsive-content .menu-responsive-box .content .main-brand {
  background-image: url("../img/brand-color.svg");
  width: 120px;
  height: 58px;
  margin: 0px auto;
  transform: translate(-10px, 0px);
  margin-bottom: 60px;
}
.menu-responsive-content .menu-responsive-box .content .responsibe-menu-btn {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  margin: 0px auto;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #E8E8E8;
}
.menu-responsive-content .menu-responsive-box .content .responsibe-menu-btn:last-child {
  border-bottom: none;
}
.menu-responsive-content .menu-responsive-box .content form {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive-content .menu-responsive-box .content form label {
  display: block;
  margin-right: 60px;
  opacity: 0.25;
  flex-grow: 1;
}
.menu-responsive-content .menu-responsive-box .content form select {
  width: 100px;
  padding: 14px 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.menu-responsive-content .menu-responsive-box .close-responsive-menu {
  width: 100%;
  margin-top: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #2d0113;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.menu-responsive-content .menu-responsive-box-position {
  transform: translate(0, 0);
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
INDEX SLIDE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.index-slide {
  width: 100%;
  min-height: 500px;
  background-color: #333;
  background-position: right;
  background-size: cover;
}
.index-slide .index-slide-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  padding-top: 50px;
}
.index-slide .index-slide-header .main-brand {
  background-image: url("../img/brand-white.svg");
  width: 130px;
  height: 63.2px;
  margin-left: -25px;
}
.index-slide .index-slide-header .hamburger {
  width: 24px;
  height: 24px;
  background-image: url("../img/ico24menu.svg");
  background-size: 18px;
  background-position: center;
  display: none;
}
.index-slide .index-slide-header .login-register {
  color: #fff;
  margin-top: 20px;
}
.index-slide .index-slide-header .login-register span {
  opacity: 0.5;
  margin: 0px 10px;
  cursor: default;
}
.index-slide .index-slide-header .login-register a {
  display: inline-block;
  color: #fff;
  opacity: 0.75;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.index-slide .index-slide-header .login-register a:hover {
  opacity: 1;
}
.index-slide .index-slide-header .nav-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.index-slide .index-slide-header .nav-right form {
  margin-top: 20px;
  margin-right: 30px;
}
.index-slide .index-slide-header .nav-right form select {
  width: 60px;
  padding: 6px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #666;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.index-slide .index-slide-header .nav-right .nav-login {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-left: 10px;
}
.index-slide .index-slide-header .nav-right .nav-login .login-btn,
.index-slide .index-slide-header .nav-right .nav-login .register-btn {
  font-size: 1.6rem;
  color: #2d0113;
}
.index-slide .index-slide-header .nav-right .nav-login .register-btn {
  margin-left: 20px;
  font-weight: 700;
  color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.index-slide .index-slide-header .nav-right .user-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  height: 70px;
  cursor: pointer;
}
.index-slide .index-slide-header .nav-right .user-box .user-img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #f6f6f6;
  margin-right: 20px;
  background-image: url("../img/userPlaceholder.png");
  background-size: 35px;
}
.index-slide .index-slide-header .nav-right .user-box .user-name {
  color: #fff;
}
.index-slide .index-slide-header .nav-right .user-box .profile-drop-icon {
  margin-left: 5px;
  width: 45px;
  height: 45px;
  background-image: url(../img/ico35DropWhite.svg);
}
.index-slide .index-slide-header .nav-right .user-options-index {
  position: absolute;
  top: 70px;
  right: 0;
  min-width: 230px;
  border-top: 0px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.25);
  display: none;
  transform: translate(0px, -10px);
  opacity: 0;
}
.index-slide .index-slide-header .nav-right .user-options-index .user-options-box {
  padding: 20px 30px;
}
.index-slide .index-slide-header .nav-right .user-options-index .user-options-box .user-options-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.35;
  letter-spacing: 0.3px;
}
.index-slide .index-slide-header .nav-right .user-options-index .user-options-box .user-options-btn {
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 0.75;
  margin-bottom: 8px;
}
.index-slide .index-slide-header .nav-right .user-options-index .user-options-box .user-options-btn:last-child {
  margin-bottom: 0px;
}
.index-slide .index-slide-header .nav-right .user-options-index .user-options-box .user-options-btn:hover {
  opacity: 1;
}
.index-slide .index-slide-header .nav-right .user-options-index form {
  padding: 20px 30px;
  border-top: 1px solid #f1f1f1;
  margin: 0px;
  padding: 20px 30px;
}
.index-slide .index-slide-header .nav-right .user-options-index form select {
  width: 100%;
}
.index-slide .index-slide-header .nav-right .user-options-index .log-out {
  padding: 20px 30px;
  color: #2d0113;
  font-size: 1.5rem;
  opacity: 1;
  border-top: 1px solid #f1f1f1;
  font-weight: 600;
}
.index-slide .index-slide-header .nav-right .user-options-animation {
  transform: translate(0px, 0px);
  opacity: 1;
}
.index-slide form {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 40px;
}
.index-slide form h1 {
  color: #fff;
  font-size: 2.4rem;
  max-width: 400px;
  margin-bottom: 10px;
}
.index-slide form h2 {
  color: #fff;
  font-size: 1.5rem;
  max-width: 450px;
  opacity: 0.75;
  font-weight: 400;
  margin-bottom: 30px;
}
.index-slide form input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.8rem;
  padding: 0px 20px;
  background-image: url("../img/ico24searchGreyInput.svg");
  background-repeat: no-repeat;
  background-position: right;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.index-slide form input[type=text]:focus {
  background-image: url("../img/ico24searchColorInput.svg");
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.index-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-bottom: 100px;
}
.index-content .index-content-header {
  -webkit-align-items: center;
  align-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.index-content .index-content-header .content-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.index-content .index-content-header .header-btn-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.index-content .index-content-header .header-btn-group .header-btn {
  color: #2d0113;
  font-size: 1.2rem;
  opacity: 0.75;
  padding: 6px 12px;
  background-color: transparent;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #f1f1f1;
  letter-spacing: 0.5px;
}
.index-content .index-content-header .header-btn-group .header-btn:hover {
  background-color: #dbdbdb;
  color: #2d0113;
}
.index-content .index-content-header .header-btn-group .header-btn-selected {
  opacity: 1;
  background-color: #2d0113;
  color: #fff;
}
.index-content .index-content-header .header-btn-group .header-btn-selected:hover {
  background-color: #2d0113;
  color: #fff;
}
.index-content .index-content-header .header-btn-group .capacity-info {
  color: #2d0113;
  font-size: 1.6rem;
  margin-left: 10px;
  letter-spacing: 0.5px;
}
.index-content .event-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0px -12.5px 0px -12.5px;
  flex-wrap: wrap;
}
.index-content .event-content .event-element {
  width: 33.33%;
  max-width: 33.33%;
  padding: 0px 12.5px 40px 12.5px;
  color: #2d0113;
}
.index-content .event-content .event-element:hover .event-img {
  transform: scale(1.009);
  -webkit-box-shadow: 0 25px 65px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 25px 65px -20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 25px 65px -20px rgba(0, 0, 0, 0.5);
}
.index-content .event-content .event-element .event-img {
  width: 100%;
  height: 180px;
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-size: cover;
  background-position: center;
  position: relative;
}
.index-content .event-content .event-element .event-img .event-img-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  background-color: #1E87F0;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.index-content .event-content .event-element .event-info {
  margin-top: 15px;
}
.index-content .event-content .event-element .event-info .event-date {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fa1e78;
}
.index-content .event-content .event-element .event-info .event-date span {
  color: #2d0113;
  margin-left: 10px;
}
.index-content .event-content .event-element .event-info .event-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-content .event-content .event-element .event-info .event-place {
  font-size: 1.2rem;
  margin-bottom: 10px;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.75;
}
.index-content .event-content .event-element .event-info .event-price {
  font-size: 1.4rem;
  opacity: 0.5;
}
.index-content .no-results {
  width: 100%;
  padding: 40px 0px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index-content .no-results .not-found-img {
  width: 40%;
  margin-bottom: 20px;
}
.index-content .no-results .not-found-text {
  width: 100%;
  max-width: 40%;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  opacity: 0.75;
}
.index-content .no-results .not-found-subtext {
  width: 100%;
  max-width: 40%;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  opacity: 0.5;
}
.index-content .more-btn-content {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.index-content .more-btn-content .pagination {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  list-style-type: none;
}
.index-content .more-btn-content .pagination li {
  margin: 0px 2px;
}
.index-content .more-btn-content .pagination li a {
  font-size: 1.6rem;
  padding: 10px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  color: #2d0113;
  border: 2px solid transparent;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.index-content .more-btn-content .pagination li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.index-content .more-btn-content .pagination li:first-child a, .index-content .more-btn-content .pagination li:last-child a {
  border: 2px solid #E8E8E8;
  padding: 10px 15px;
  opacity: 0.75;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.index-content .more-btn-content .pagination li:first-child a:hover, .index-content .more-btn-content .pagination li:last-child a:hover {
  opacity: 1;
  background-color: #E8E8E8;
  text-decoration: none;
}
.index-content .more-btn-content .pagination li:first-child {
  margin-right: 15px;
}
.index-content .more-btn-content .pagination li:last-child {
  margin-left: 15px;
}
.index-content .more-btn-content .pagination .active a {
  padding: 8px 10px;
  opacity: 1;
  background-color: #2d0113;
  border: 2px solid #2d0113;
  color: #fff;
}
.index-content .more-btn-content .more-btn {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  padding: 12px 25px;
  background-color: #f1f1f1;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.index-content .more-btn-content .more-btn:hover {
  background-color: #2d0113;
  color: #fff;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GENERAL CONTAINER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
.general-container {
  flex-grow: 1;
  width: 100%;
  padding-top: 70px;
}
.general-container form {
  position: relative;
  background-color: #fff;
}
.general-container .legal-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
  margin-bottom: 120px;
}
.general-container .legal-content .legal-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.general-container .legal-content .legal-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  margin-top: 40px;
}
.general-container .legal-content .legal-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  opacity: 0.65;
  margin-bottom: 20px;
}
.general-container .legal-content ul {
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  opacity: 0.65;
}
.general-container .legal-content ul li {
  margin-left: 20px;
  margin-bottom: 20px;
}
.general-container .legal-content .cookies-ul {
  list-style-type: none;
}
.general-container .legal-content .cookies-ul li {
  margin-bottom: 10px;
}
.general-container .legal-content .cookies-ul li:last-child {
  margin-bottom: 20px;
}
.general-container .legal-content .cookies-ul li a {
  display: inline-block;
  color: #1E87F0;
}
.general-container .legal-content .cookies-btn {
  margin-top: 40px;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.general-container .legal-content .cookies-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .legal-content form {
  width: 100%;
  max-width: 100%;
}
.general-container .legal-content form label {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 10px;
  display: block;
}
.general-container .legal-content form input[type=text],
.general-container .legal-content form input[type=password],
.general-container .legal-content form input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.general-container .legal-content form input[type=text]:focus,
.general-container .legal-content form input[type=password]:focus,
.general-container .legal-content form input[type=email]:focus {
  border-color: #1E87F0;
}
.general-container .legal-content form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-image: url(../img/ico35Drop.svg);
  background-position: right;
  background-repeat: no-repeat;
}
.general-container .legal-content form select:focus {
  border-color: #1E87F0;
}
.general-container .legal-content form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  resize: none;
}
.general-container .legal-content form textarea:focus {
  border-color: #1E87F0;
}
.general-container .legal-content form .checkbox-content p {
  opacity: 0.75;
}
.general-container .legal-content form .checkbox-content p a {
  display: inline-block;
  color: #503bff;
}
.general-container .legal-content form .checkbox-content .control {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0.5;
}
.general-container .legal-content form .checkbox-content .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.general-container .legal-content form .checkbox-content .control__indicator {
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .legal-content form .checkbox-content .control--radio .control__indicator {
  border-radius: 50%;
}
.general-container .legal-content form .checkbox-content .control:hover input ~ .control__indicator,
.general-container .legal-content form .checkbox-content .control input:focus ~ .control__indicator {
  background: #dbdbdb;
}
.general-container .legal-content form .checkbox-content .control input:checked ~ .control__indicator {
  background: #1E87F0;
}
.general-container .legal-content form .checkbox-content .control:hover input:not([disabled]):checked ~ .control__indicator,
.general-container .legal-content form .checkbox-content .control input:checked:focus ~ .control__indicator {
  background: #1E87F0;
}
.general-container .legal-content form .checkbox-content .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.general-container .legal-content form .checkbox-content .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.general-container .legal-content form .checkbox-content .control input:checked ~ .control__indicator:after {
  display: block;
}
.general-container .legal-content form .checkbox-content .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.general-container .legal-content form .checkbox-content .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.general-container .legal-content form .buy-tickets-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  margin-top: 40px;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.general-container .legal-content form .buy-tickets-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .legal-content .agree-btn {
  display: block;
  margin: 0px auto;
  margin-top: 20px;
  font-size: 1.6rem;
  background-color: #fff;
  text-align: center;
  padding: 10px 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-weight: 600;
  color: #1E87F0;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.general-container .login-form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 60px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.general-container .login-form .short-brand {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.general-container .login-form .login-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.general-container .login-form .login-subtitle {
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 30px;
}
.general-container .login-form .login-subtitle a {
  display: inline-block;
  color: #2d0113;
}
.general-container .login-form .field-group {
  width: 100%;
}
.general-container .login-form .field-group .field-error {
  display: none;
}
.general-container .login-form .field-group .select-province {
  margin-right: 10px;
  width: 100%;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #E8E8E8;
  font-size: 1.4rem;
  height: 40px;
  color: #2d0113;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
.general-container .login-form .field-group-error input[type=text],
.general-container .login-form .field-group-error input[type=password],
.general-container .login-form .field-group-error input[type=email],
.general-container .login-form .field-group-error .select-province {
  border-color: #d93025;
}
.general-container .login-form .field-group-error .field-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.general-container .login-form input[type=text],
.general-container .login-form input[type=password],
.general-container .login-form input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.general-container .login-form input[type=text]:focus,
.general-container .login-form input[type=password]:focus,
.general-container .login-form input[type=email]:focus {
  border-color: #1E87F0;
}
.general-container .login-form .checkbox-content {
  margin-top: 15px;
  margin-bottom: 15px;
}
.general-container .login-form .checkbox-content label a {
  opacity: 0.75;
  display: inline-block;
  color: #1E87F0;
  margin-top: -5px;
}
.general-container .login-form .checkbox-content label a:hover {
  text-decoration: underline;
}
.general-container .login-form .checkbox-content .control {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0.5;
}
.general-container .login-form .checkbox-content .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.general-container .login-form .checkbox-content .control__indicator {
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .login-form .checkbox-content .control--radio .control__indicator {
  border-radius: 50%;
}
.general-container .login-form .checkbox-content .control:hover input ~ .control__indicator,
.general-container .login-form .checkbox-content .control input:focus ~ .control__indicator {
  background: #dbdbdb;
}
.general-container .login-form .checkbox-content .control input:checked ~ .control__indicator {
  background: #1E87F0;
}
.general-container .login-form .checkbox-content .control:hover input:not([disabled]):checked ~ .control__indicator,
.general-container .login-form .checkbox-content .control input:checked:focus ~ .control__indicator {
  background: #1E87F0;
}
.general-container .login-form .checkbox-content .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.general-container .login-form .checkbox-content .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.general-container .login-form .checkbox-content .control input:checked ~ .control__indicator:after {
  display: block;
}
.general-container .login-form .checkbox-content .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.general-container .login-form .checkbox-content .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.general-container .login-form input[type=submit] {
  width: 100%;
  margin-top: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.general-container .login-form input[type=submit]:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .login-form .remember-password {
  font-size: 1.4rem;
  margin-top: 20px;
  opacity: 0.5;
  color: #2d0113;
  cursor: pointer;
}
.general-container .no-results {
  width: 100%;
  padding: 80px 0px 40px 0px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.general-container .no-results .not-found-img {
  width: 40%;
  margin-bottom: 20px;
}
.general-container .no-results .not-found-text {
  width: 100%;
  max-width: 500px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  opacity: 0.75;
}
.general-container .no-results .not-found-subtext {
  width: 100%;
  max-width: 500px;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  opacity: 0.5;
}
.general-container .no-results .spinner {
  animation: rotate 2s linear infinite;
  width: 50px;
  height: 50px;
  margin-bottom: 40px;
}
.general-container .no-results .spinner .path {
  stroke: #1E87F0;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.general-container .no-results .back-to-home {
  font-size: 1.4rem;
  background-color: #f1f1f1;
  text-align: center;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  margin-top: 20px;
}
.general-container .no-results .back-to-home:hover {
  background-color: #2d0113;
  color: #fff;
}
.general-container .event-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
.general-container .event-image .event-image-box {
  width: 100%;
  height: 400px;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.general-container .event-image-alone {
  width: 100%;
  height: 400px;
}
.general-container .event-image-alone .event-image-box {
  width: 1140px;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
.general-container .event-image-blur-container {
  position: relative;
  width: 100%;
  height: 220px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
}
.general-container .event-image-blur-container .event-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  transform: scale(1.1);
  overflow: hidden;
}
.general-container .event-image-blur-container .event-image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.general-container .event-image-blur-container .event-title-content {
  z-index: 1;
  width: 100%;
  height: 220px;
  background: rgb(1, 1, 1);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d0113", endColorstr="#2d0113", GradientType=1);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
.general-container .event-image-blur-container .event-title-content .event-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  margin-bottom: 40px;
}
.general-container .event-image-blur-container .event-title-content .event-title-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
.general-container .error-block {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 40px;
}
.general-container .error-block ul {
  width: 100%;
  padding: 15px 20px;
  list-style-type: none;
  color: #d93025;
  background-color: #fce8e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.3rem;
}
.general-container .login-form .error-block {
  width: 100%;
  padding: 0px;
  margin-bottom: 20px;
}
.general-container #photoForm .error-block {
  width: 100%;
  padding: 15px 20px;
  list-style-type: none;
  color: #d93025;
  background-color: #fce8e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 40px;
}
.general-container .ok-block {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 40px;
}
.general-container .ok-block p {
  width: 100%;
  padding: 15px 20px;
  list-style-type: none;
  color: #41a7b3;
  background-color: #D8FFFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .event-info-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 60px;
  padding-bottom: 180px;
}
.general-container .event-info-content .event-info {
  flex-grow: 1;
  padding-right: 60px;
}
.general-container .event-info-content .event-info .event-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.general-container .event-info-content .event-info .event-subtitle {
  font-size: 1.6rem;
  opacity: 0.85;
  margin-top: -20px;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 2.4rem;
}
.general-container .event-info-content .event-info .social-box-content {
  display: inline-block;
  margin-left: -5px;
  margin-bottom: 30px;
}
.general-container .event-info-content .event-info .social-box-content .social-box {
  background-color: #f6f6f6;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  padding: 8px 12px 8px 20px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  float: left;
}
.general-container .event-info-content .event-info .social-box-content .social-box .social-title {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-right: 10px;
}
.general-container .event-info-content .event-info .social-box-content .social-box .social-icon {
  width: 25px;
  height: 25px;
  margin-left: 8px;
}
.general-container .event-info-content .event-info .when-where-responsive {
  display: none;
  padding: 30px;
  border: 1px solid #E8E8E8;
  margin-bottom: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.general-container .event-info-content .event-info .when-where-responsive .event-resume-row {
  margin-bottom: 15px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  opacity: 0.5;
}
.general-container .event-info-content .event-info .when-where-responsive .event-resume-row:last-child {
  margin-bottom: 0px;
}
.general-container .event-info-content .event-info .when-where-responsive .event-resume-row .event-resume-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  background-size: 18px;
  margin-right: 15px;
  min-width: 18px;
}
.general-container .event-info-content .event-info .when-where-responsive .event-resume-row .event-resume-text {
  font-size: 1.4rem;
  color: #2d0113;
}
.general-container .event-info-content .event-info .event-alerts-box {
  width: 100%;
  margin-bottom: 40px;
}
.general-container .event-info-content .event-info .event-alerts-box .event-alert {
  background-color: #D8EAFC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px;
  font-size: 1.4rem;
  color: #1E87F0;
  margin-bottom: 5px;
}
.general-container .event-info-content .event-info .event-alerts-box .event-alert:last-child {
  margin-bottom: 0px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive {
  display: none;
  width: 100%;
  padding: 30px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 30px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .resume-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E8E8E8;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .resume-row .resume-left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .resume-row .resume-left .resume-amount {
  font-size: 1.3rem;
  margin-right: 10px;
  min-width: 17px;
  opacity: 0.75;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .resume-row .resume-left .resume-concept {
  font-size: 1.3rem;
  opacity: 0.75;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .resume-row .resume-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 40px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .total-row {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  /* Safari */
  justify-content: flex-end;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .total-row .title {
  font-size: 1.2rem;
  opacity: 0.5;
  margin-top: 2px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .total-row .total-price {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 15px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .event-responsive-btns {
  padding-top: 30px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .event-responsive-btns .print-tickets-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  width: 100%;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .event-responsive-btns .print-tickets-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .event-info-content .event-info .event-print-resume-responsive .event-responsive-btns .back-to-home {
  font-size: 1.4rem;
  background-color: #f1f1f1;
  text-align: center;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  margin-top: 10px;
}
.general-container .event-info-content .event-info .event-print-resume-responsive .event-responsive-btns .back-to-home:hover {
  background-color: #2d0113;
  color: #fff;
}
.general-container .event-info-content .event-info .event-label {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.general-container .event-info-content .event-info .event-description {
  width: 100%;
  margin-bottom: 40px;
}
.general-container .event-info-content .event-info .event-description .field-group .field-error {
  display: none;
}
.general-container .event-info-content .event-info .event-description .field-group-error input[type=text],
.general-container .event-info-content .event-info .event-description .field-group-error input[type=password],
.general-container .event-info-content .event-info .event-description .field-group-error input[type=email] {
  border-color: #d93025;
}
.general-container .event-info-content .event-info .event-description .field-group-error .field-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  transform: translate(0px, -15px);
}
.general-container .event-info-content .event-info .event-description .event-description-text-box {
  width: 100%;
  height: 150px;
  min-height: 150px;
  overflow: hidden;
  background: rgb(255, 255, 255);
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.general-container .event-info-content .event-info .event-description .event-description-text-box .event-description-gradient {
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}
.general-container .event-info-content .event-info .event-description .event-description-text-box .event-decription-text {
  font-size: 1.6rem;
  line-height: 24px;
  opacity: 0.75;
}
.general-container .event-info-content .event-info .event-description .event-description-show {
  font-size: 1.4rem;
  cursor: pointer;
  color: #C60554;
  font-weight: 500;
}
.general-container .event-info-content .event-info .event-description .event-description-show span {
  margin-left: 2px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.general-container .event-info-content .event-info .event-description .event-description-show:hover span {
  margin-left: 4px;
}
.general-container .event-info-content .event-info .event-ticket-options {
  margin-bottom: 40px;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box {
  width: 100%;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row {
  padding: 20px;
  border-bottom: 1px solid #E8E8E8;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row:last-child {
  border-bottom: 0px;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-left .option-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-left .option-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.5;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-right select {
  margin-right: 10px;
  width: 60px;
  padding: 8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  background-color: #f6f6f6;
  color: #2d0113;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-image: url("../img/ico35Drop.svg");
  background-position: right;
  background-repeat: no-repeat;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-right .option-row-price {
  font-size: 1.4rem;
  font-weight: 700;
}
.general-container .event-info-content .event-info .event-ticket-options .ticket-options-box .ticket-options-row .option-row-right .option-row-price span {
  font-weight: 100;
  margin-right: 10px;
  opacity: 0.5;
}
.general-container .event-info-content .event-info .how-to {
  padding: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 40px;
  background-color: #f9f9f9;
}
.general-container .event-info-content .event-info .how-to .how-title {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.75;
  margin-bottom: 20px;
}
.general-container .event-info-content .event-info .how-to .how-label {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.75;
  margin-bottom: 10px;
}
.general-container .event-info-content .event-info .how-to .how-text {
  font-size: 1.4rem;
  line-height: 21px;
  opacity: 0.5;
  margin-bottom: 20px;
}
.general-container .event-info-content .event-info .how-to .how-text:last-child {
  margin-bottom: 0px;
}
.general-container .event-info-content .event-info .form-guest {
  width: 100%;
  max-width: 500px;
}
.general-container .event-info-content .event-info .form-guest .field-group .field-error {
  display: none;
}
.general-container .event-info-content .event-info .form-guest .field-group-error input[type=text],
.general-container .event-info-content .event-info .form-guest .field-group-error input[type=password],
.general-container .event-info-content .event-info .form-guest .field-group-error input[type=email] {
  border-color: #d93025;
}
.general-container .event-info-content .event-info .form-guest .field-group-error .field-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  transform: translate(0px, -15px);
}
.general-container .event-info-content .event-info .form-guest label {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 10px;
  display: block;
}
.general-container .event-info-content .event-info .form-guest input[type=text],
.general-container .event-info-content .event-info .form-guest input[type=password],
.general-container .event-info-content .event-info .form-guest input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.general-container .event-info-content .event-info .form-guest input[type=text]:focus,
.general-container .event-info-content .event-info .form-guest input[type=password]:focus,
.general-container .event-info-content .event-info .form-guest input[type=email]:focus {
  border-color: #1E87F0;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content p {
  opacity: 0.75;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content p a {
  display: inline-block;
  color: #503bff;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0.5;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control__indicator {
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control--radio .control__indicator {
  border-radius: 50%;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control:hover input ~ .control__indicator,
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input:focus ~ .control__indicator {
  background: #dbdbdb;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input:checked ~ .control__indicator {
  background: #1E87F0;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control:hover input:not([disabled]):checked ~ .control__indicator,
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input:checked:focus ~ .control__indicator {
  background: #1E87F0;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control input:checked ~ .control__indicator:after {
  display: block;
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.general-container .event-info-content .event-info .form-guest .checkbox-content .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.general-container .event-info-content .event-info .pay-content {
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.general-container .event-info-content .event-info .pay-content input[type=radio] {
  display: none;
}
.general-container .event-info-content .event-info .pay-content .pay-row {
  flex-grow: 1;
  width: 100%;
  border: 1px solid #e8e8e8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding: 12px;
  height: 48px;
  gap: 16px;
}
.general-container .event-info-content .event-info .pay-content .pay-row .radio-button {
  width: 20px;
  height: 20px;
  padding: 5px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #e8e8e8;
}
.general-container .event-info-content .event-info .pay-content .pay-row .radio-button .circle {
  display: none;
  width: 10px;
  height: 10px;
  background-color: white;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}
.general-container .event-info-content .event-info .pay-content .pay-row .payment-icon-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  list-style-type: none;
}
.general-container .event-info-content .event-info .pay-content .pay-row .payment-icon-row img {
  height: 24px;
}
.general-container .event-info-content .event-info .pay-content .pay-row .suplement {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2px 8px 3px 8px;
  background-color: rgba(204, 204, 204, 0.25);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.general-container .event-info-content .event-info .pay-content .pay-row.active {
  border-color: #1E87F0;
  outline: 2px solid rgba(30, 135, 240, 0.15);
}
.general-container .event-info-content .event-info .pay-content .pay-row.active .radio-button {
  background-color: #1E87F0;
}
.general-container .event-info-content .event-info .pay-content .pay-row.active .radio-button .circle {
  display: block;
  background-color: white;
}
.general-container .event-info-content .event-info .pay-content .pay-gap {
  width: 10px;
  min-width: 10px;
  height: 100%;
}
.general-container .event-info-content .event-info .checkbox-content {
  margin-bottom: 20px;
}
.general-container .event-info-content .event-info .checkbox-content p {
  opacity: 0.75;
}
.general-container .event-info-content .event-info .checkbox-content p a {
  display: inline-block;
  color: #1E87F0;
}
.general-container .event-info-content .event-info .checkbox-content p a:hover {
  text-decoration: underline;
}
.general-container .event-info-content .event-info .checkbox-content .control {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0.5;
}
.general-container .event-info-content .event-info .checkbox-content .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.general-container .event-info-content .event-info .checkbox-content .control__indicator {
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .event-info-content .event-info .checkbox-content .control--radio .control__indicator {
  border-radius: 50%;
}
.general-container .event-info-content .event-info .checkbox-content .control:hover input ~ .control__indicator,
.general-container .event-info-content .event-info .checkbox-content .control input:focus ~ .control__indicator {
  background: #dbdbdb;
}
.general-container .event-info-content .event-info .checkbox-content .control input:checked ~ .control__indicator {
  background: #1E87F0;
}
.general-container .event-info-content .event-info .checkbox-content .control:hover input:not([disabled]):checked ~ .control__indicator,
.general-container .event-info-content .event-info .checkbox-content .control input:checked:focus ~ .control__indicator {
  background: #1E87F0;
}
.general-container .event-info-content .event-info .checkbox-content .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.general-container .event-info-content .event-info .checkbox-content .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.general-container .event-info-content .event-info .checkbox-content .control input:checked ~ .control__indicator:after {
  display: block;
}
.general-container .event-info-content .event-info .checkbox-content .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.general-container .event-info-content .event-info .checkbox-content .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.general-container .event-info-content .event-info .buy-tickets-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  margin-top: 40px;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.general-container .event-info-content .event-info .buy-tickets-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .event-info-content .event-info .seat-content {
  width: 100%;
}
.general-container .event-info-content .event-info .seat-content #mapContainer {
  width: 100%;
  height: 600px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  cursor: move;
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 74px;
  height: 74px;
  background-color: #fff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  transform: rotate(45deg);
  border: 1px solid #E8E8E8;
  z-index: 100;
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content .btn-default {
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content #up {
  width: 36px;
  height: 36px;
  background-size: 1.8rem;
  background-image: url("../img/ico24top.svg");
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content #down {
  width: 36px;
  height: 36px;
  background-size: 1.8rem;
  background-image: url("../img/ico24down.svg");
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content #left {
  width: 36px;
  height: 36px;
  background-size: 1.8rem;
  background-image: url("../img/ico24left.svg");
}
.general-container .event-info-content .event-info .seat-content #mapContainer .move-btn-content #right {
  width: 36px;
  height: 36px;
  background-size: 1.8rem;
  background-image: url("../img/ico24right.svg");
}
.general-container .event-info-content .event-info .seat-content #mapContainer .zoom-btn-content {
  width: 132px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -66px;
  z-index: 100;
}
.general-container .event-info-content .event-info .seat-content #mapContainer .zoom-btn-content .btn-default {
  padding: 10px;
  font-size: 2.4rem;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.85);
  border: 0px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
}
.general-container .event-info-content .event-info .seat-content #mapContainer .zoom-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.85);
  border: 0px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/img/icoSearch.svg");
}
.general-container .event-info-content .event-info .seat-content #mapContainer #zoomin {
  background-image: url("/img/icoZoomIn.svg");
  -webkit-border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.general-container .event-info-content .event-info .seat-content #mapContainer #zoomout {
  background-image: url("/img/icoZoomOut.svg");
  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.general-container .event-info-content .event-resume {
  position: relative;
  width: 390px;
  min-width: 390px;
}
.general-container .event-info-content .event-resume .event-resume-content {
  width: 390px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box {
  width: 100%;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img {
  width: 100%;
  height: 0px;
  background-position: center;
  background-size: cover;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d0113", endColorstr="#2d0113", GradientType=1);
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content .event-img-text {
  position: absolute;
  bottom: 0;
  padding: 30px;
  display: none;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content .event-img-text .event-img-when {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content .event-img-text .event-img-when span {
  margin-left: 20px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content .event-img-text .event-img-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img .event-img-text-content .event-img-text .event-img-where {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment {
  width: 100%;
  height: 120px;
  background-position: center;
  background-size: cover;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment {
  position: absolute;
  bottom: 0;
  padding: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-when {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-when span {
  margin-left: 20px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-where {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-box-img-100 {
  height: 120px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-where-when {
  padding: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-where-when .event-resume-row {
  margin-bottom: 15px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  opacity: 0.5;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-where-when .event-resume-row:last-child {
  margin-bottom: 0px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-where-when .event-resume-row .event-resume-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  background-size: 18px;
  margin-right: 15px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-where-when .event-resume-row .event-resume-text {
  font-size: 1.4rem;
  color: #2d0113;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume {
  width: 100%;
  padding: 30px;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .resume-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E8E8E8;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .resume-row .resume-left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .resume-row .resume-left .resume-amount {
  font-size: 1.3rem;
  margin-right: 10px;
  min-width: 17px;
  opacity: 0.75;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .resume-row .resume-left .resume-concept {
  font-size: 1.3rem;
  opacity: 0.75;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .resume-row .resume-price {
  font-size: 1.4rem;
  font-weight: 600;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .total-row {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  /* Safari */
  justify-content: flex-end;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .total-row .title {
  font-size: 1.2rem;
  opacity: 0.5;
  margin-top: 2px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-resume .total-row .total-price {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 15px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-btn-content {
  padding: 0px 30px 30px 30px;
  background-color: #fff;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-btn-content .buy-tickets-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  width: 100%;
}
.general-container .event-info-content .event-resume .event-resume-content .event-resume-box .event-resume-btn-content .buy-tickets-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .event-info-content .event-resume .event-resume-content .event-partner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 30px;
  background-color: #f9f9f9;
}
.general-container .event-info-content .event-resume .event-resume-content .event-partner .event-partner-img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-position: center;
  background-size: cover;
  margin-right: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content .event-partner .partner-text .title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.general-container .event-info-content .event-resume .event-resume-content .event-partner .partner-text .organizator {
  font-size: 1.2rem;
  opacity: 0.5;
}
.general-container .event-info-content .event-resume .event-resume-content-payment {
  width: 390px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box {
  width: 100%;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment {
  width: 100%;
  height: 120px;
  background-position: center;
  background-size: cover;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment {
  position: absolute;
  bottom: 0;
  padding: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-when {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-when span {
  margin-left: 20px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-box-img-payment .event-img-text-content .event-img-text-payment .event-img-where {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-where-when {
  padding: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-where-when .event-resume-row {
  margin-bottom: 15px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  opacity: 0.5;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-where-when .event-resume-row:last-child {
  margin-bottom: 0px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-where-when .event-resume-row .event-resume-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  background-size: 18px;
  margin-right: 15px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-where-when .event-resume-row .event-resume-text {
  font-size: 1.4rem;
  color: #2d0113;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume {
  width: 100%;
  padding: 30px;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .resume-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E8E8E8;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .resume-row .resume-left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .resume-row .resume-left .resume-amount {
  font-size: 1.3rem;
  margin-right: 10px;
  min-width: 17px;
  opacity: 0.75;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .resume-row .resume-left .resume-concept {
  font-size: 1.3rem;
  opacity: 0.75;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .resume-row .resume-price {
  font-size: 1.4rem;
  font-weight: 600;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .total-row {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  /* Safari */
  justify-content: flex-end;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .total-row .title {
  font-size: 1.2rem;
  opacity: 0.5;
  margin-top: 2px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-resume .total-row .total-price {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 15px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-btn-content {
  padding: 0px 30px 30px 30px;
  background-color: #fff;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-btn-content .buy-tickets-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 20px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  width: 100%;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-btn-content .buy-tickets-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-btn-content .back-to-home {
  font-size: 1.4rem;
  background-color: #f1f1f1;
  text-align: center;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  margin-top: 10px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-resume-box .event-resume-btn-content .back-to-home:hover {
  background-color: #2d0113;
  color: #fff;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-partner {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 30px;
  background-color: #f9f9f9;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-partner .event-partner-img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-position: center;
  background-size: cover;
  margin-right: 30px;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-partner .partner-text .title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.general-container .event-info-content .event-resume .event-resume-content-payment .event-partner .partner-text .organizator {
  font-size: 1.2rem;
  opacity: 0.5;
}
.general-container .event-resume-responsive {
  position: fixed;
  bottom: 0;
  z-index: 150;
  width: 100%;
  padding: 20px 30px;
  background-color: #fff;
  border-top: 1px solid #E8E8E8;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  display: none;
}
.general-container .event-resume-responsive .event-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.general-container .event-resume-responsive .event-total-price {
  font-size: 2.4rem;
  font-weight: 700;
}
.general-container .event-resume-responsive input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 1.8rem;
  background-color: #C60554;
  text-align: center;
  padding: 15px 35px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.general-container .event-resume-responsive .btn-disable {
  background-color: #E8E8E8 !important;
}
.general-container .event-resume-responsive .back-to-home-resume {
  font-size: 1.4rem;
  background-color: #f1f1f1;
  text-align: center;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  margin-top: 20px;
}
.general-container .user-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 60px;
  margin-bottom: 120px;
}
.general-container .user-content .event-title {
  margin-bottom: 60px;
}
.general-container .user-content .user-ticket-row {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
  padding: 20px 30px;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 5px;
}
.general-container .user-content .user-ticket-row .user-ticket-info {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.general-container .user-content .user-ticket-row .user-ticket-info .ticket-row-text {
  font-size: 1.4rem;
  margin-right: 50px;
}
.general-container .user-content .user-ticket-row .user-ticket-info .ticket-row-text span {
  opacity: 0.5;
  margin-right: 5px;
}
.general-container .user-content .user-ticket-row .icon {
  opacity: 0.5;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.general-container .user-content .user-ticket-row .icon:hover {
  opacity: 1;
}
.general-container .user-content .user-img-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 60px;
}
.general-container .user-content .user-img-row .user-img {
  height: 120px;
  width: 120px;
  background-color: #333;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  margin-right: 50px;
  background-position: center;
  background-size: cover;
}
.general-container .user-content .user-img-row .user-img-text .user-img-title {
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.general-container .user-content .user-img-row .user-img-text .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.general-container .user-content .user-img-row .user-img-text .inputfile + label {
  font-size: 1.4rem;
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  color: #2d0113;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  margin-top: 20px;
}
.general-container .user-content .user-img-row .user-img-text .inputfile:focus + label,
.general-container .user-content .user-img-row .user-img-text .inputfile:hover + label {
  background-color: #2d0113;
  color: #fff;
}
.general-container .user-content .user-img-row .user-img-text .input-error {
  display: none;
}
.general-container .user-content .user-img-row-error .user-img-text .input-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  margin-top: 16px;
}
.general-container .user-content .pop-img-content {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  display: none;
}
.general-container .user-content .pop-img-content .pop-img-box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card {
  width: 500px;
  background-color: #fff;
  padding: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  transform: translate(0px, 25px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .login-form {
  margin: 0 auto !important;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .pop-img-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card #preview {
  width: 100%;
  height: 380px;
  background-color: #f1f1f1;
  border: none;
  overflow: scroll;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .btn-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-top: 20px;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .btn-content .btn {
  display: block;
  font-size: 1.4rem;
  text-align: center;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  margin-right: 10px;
  border: none;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .btn-content .btn-bibe {
  background-color: #C60554;
  color: #fff;
}
.general-container .user-content .pop-img-content .pop-img-box .pop-img-card .btn-content .btn-neg {
  background-color: #f1f1f1;
  color: #2d0113;
}
.general-container .user-content .user-data-title {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 40px;
}
.general-container .user-content .form-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
  /* The slider */
  /* Rounded sliders */
}
.general-container .user-content .form-row label {
  font-size: 1.6rem;
  opacity: 0.75;
  min-width: 200px;
  display: block;
}
.general-container .user-content .form-row .field-group .field-error {
  display: none;
}
.general-container .user-content .form-row .field-group-error input[type=text],
.general-container .user-content .form-row .field-group-error input[type=password],
.general-container .user-content .form-row .field-group-error input[type=email] {
  border-color: #d93025;
}
.general-container .user-content .form-row .field-group-error .field-error {
  display: block;
  color: #d93025;
  font-size: 1.2rem;
  margin-top: 4px;
}
.general-container .user-content .form-row input[type=text],
.general-container .user-content .form-row input[type=password],
.general-container .user-content .form-row input[type=email],
.general-container .user-content .form-row input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 500px;
  height: 40px;
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.6rem;
  padding-left: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.general-container .user-content .form-row input[type=text]:focus,
.general-container .user-content .form-row input[type=password]:focus,
.general-container .user-content .form-row input[type=email]:focus,
.general-container .user-content .form-row input[type=tel]:focus {
  border-color: #1E87F0;
}
.general-container .user-content .form-row .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 4px 0px 8px 0px;
  min-width: fit-content;
}
.general-container .user-content .form-row .switch input {
  display: none;
}
.general-container .user-content .form-row .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E8E8E8;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.general-container .user-content .form-row .slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.general-container .user-content .form-row input:checked + .slider {
  background-color: #1E87F0;
}
.general-container .user-content .form-row input:focus + .slider {
  box-shadow: 0 0 1px #1E87F0;
}
.general-container .user-content .form-row input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.general-container .user-content .form-row .slider.round {
  border-radius: 25px;
}
.general-container .user-content .form-row .slider.round:before {
  border-radius: 50%;
}
.general-container .user-content .main-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 40px;
}
.general-container .user-content .main-btn:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .user-content .checkbox-content {
  margin-top: 60px;
}
.general-container .user-content .checkbox-content p {
  opacity: 0.75;
}
.general-container .user-content .checkbox-content p a {
  display: inline-block;
  color: #503bff;
}
.general-container .user-content .checkbox-content .control {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.4rem;
  opacity: 0.5;
}
.general-container .user-content .checkbox-content .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.general-container .user-content .checkbox-content .control__indicator {
  position: absolute;
  top: -2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .user-content .checkbox-content .control--radio .control__indicator {
  border-radius: 50%;
}
.general-container .user-content .checkbox-content .control:hover input ~ .control__indicator,
.general-container .user-content .checkbox-content .control input:focus ~ .control__indicator {
  background: #dbdbdb;
}
.general-container .user-content .checkbox-content .control input:checked ~ .control__indicator {
  background: #1E87F0;
}
.general-container .user-content .checkbox-content .control:hover input:not([disabled]):checked ~ .control__indicator,
.general-container .user-content .checkbox-content .control input:checked:focus ~ .control__indicator {
  background: #1E87F0;
}
.general-container .user-content .checkbox-content .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.general-container .user-content .checkbox-content .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.general-container .user-content .checkbox-content .control input:checked ~ .control__indicator:after {
  display: block;
}
.general-container .user-content .checkbox-content .control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.general-container .user-content .checkbox-content .control--checkbox .control__indicator:after a {
  display: inline-block;
  color: #1E87F0;
}
.general-container .user-content .checkbox-content .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.general-container .user-content input[type=submit] {
  margin-top: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 15px 25px 15px 25px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.general-container .user-content input[type=submit]:hover {
  background-color: rgb(173.1280788177, 4.3719211823, 73.4482758621);
}
.general-container .tickets-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 60px;
  padding-bottom: 150px;
}
.general-container .tickets-content .event-title {
  margin-bottom: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.general-container .tickets-content .my-events-subheader {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
}
.general-container .tickets-content .my-events-subheader .header-btn-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.general-container .tickets-content .my-events-subheader .header-btn-group .header-btn {
  color: #2d0113;
  font-size: 1.2rem;
  opacity: 0.75;
  padding: 6px 12px;
  background-color: transparent;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #f1f1f1;
  letter-spacing: 0.5px;
}
.general-container .tickets-content .my-events-subheader .header-btn-group .header-btn:hover {
  background-color: #dbdbdb;
  color: #2d0113;
}
.general-container .tickets-content .my-events-subheader .header-btn-group .header-btn-selected {
  opacity: 1;
  background-color: #2d0113;
  color: #fff;
}
.general-container .tickets-content .my-events-subheader .header-btn-group .header-btn-selected:hover {
  background-color: #2d0113;
  color: #fff;
}
.general-container .tickets-content .my-events-subheader .header-btn-group .capacity-info {
  color: #2d0113;
  font-size: 1.6rem;
  margin-left: 10px;
  letter-spacing: 0.5px;
}
.general-container .tickets-content .subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.general-container .tickets-content .event-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0px -12.5px 30px -12.5px;
  flex-wrap: wrap;
}
.general-container .tickets-content .event-content .event-element {
  width: 50%;
  max-width: 50%;
  padding: 0px 12.5px 20px 12.5px;
  color: #2d0113;
  margin-bottom: 10px;
}
.general-container .tickets-content .event-content .event-element .event-info {
  border: 1px solid #E8E8E8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.general-container .tickets-content .event-content .event-element .event-info .event-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0px;
  min-height: 86px;
}
.general-container .tickets-content .event-content .event-element .event-info .print-tickets {
  margin-left: 30px;
  margin-bottom: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #C60554;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 20px;
  text-align: center;
  color: #C60554;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  display: inline-block;
  cursor: pointer;
  margin-top: -10px;
}
.general-container .tickets-content .event-content .event-element .event-info .print-tickets:hover {
  background-color: #C60554;
  color: #fff;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 25px 30px;
  background-color: #f9f9f9;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols .evenet-detail-gap {
  min-width: 30px;
  width: 30px;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols .event-detail-col {
  flex-grow: 1;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols .event-detail-col .event-label {
  font-size: 1.2rem;
  margin-bottom: 3px;
  opacity: 0.5;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols .event-detail-col .event-data {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.general-container .tickets-content .event-content .event-element .event-info .event-detail-cols .event-detail-col .event-data:last-child {
  margin-bottom: 0px;
}
.general-container .tickets-content .event-past .event-element .event-info .event-title {
  padding-bottom: 0px;
  opacity: 0.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.general-container .tickets-content .event-past .event-element .event-info .event-detail-cols {
  opacity: 0.5;
  background-color: transparent;
}

/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
FOOTER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
footer .footer-line {
  width: 100%;
  height: 100px;
  background-image: url("../img/footerLine.png");
  background-size: cover;
  background-position: top;
}
footer .footer-content {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f6f6f6;
}
footer .footer-content .footer-content-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
}
footer .footer-content .footer-content-box .main-brand-footer {
  background-image: url("../img/brand-black.svg");
  width: 90px;
  min-width: 90px;
  height: 44.2px;
  opacity: 0.25;
  margin-right: 200px;
  margin-top: -10px;
}
footer .footer-content .footer-content-box .footer-col-content {
  flex-grow: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}
footer .footer-content .footer-content-box .footer-col-content .footer-col {
  margin-right: 50px;
}
footer .footer-content .footer-content-box .footer-col-content .footer-col .footer-title {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  opacity: 0.75;
}
footer .footer-content .footer-content-box .footer-col-content .footer-col .footer-btn {
  color: #2d0113;
  font-size: 1.3rem;
  opacity: 0.5;
  margin-bottom: 5px;
}
footer .footer-content .footer-content-box .footer-col-content .footer-col .footer-btn:last-child {
  margin-bottom: 0px;
}
footer .footer-content .footer-content-box .footer-col-content .social-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
footer .footer-content .footer-content-box .footer-col-content .social-box .social-icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

.buy-tickets-btn:disabled {
  opacity: 0.15 !important;
  cursor: no-drop !important;
}
.buy-tickets-btn:disabled:hover {
  background-color: #C60554;
}
