:root {
  --color-grey: #b3bdbc;
  --color-powder: #e4dcd1;
  --color-pink: #dfb5a6;
  --color-white: #ffffff;
  --color-black: #282828;
  --color-text: #272829;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Playfair Display', serif;
  color: var(--color-text);
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

.btn {
  display: inline-block;
  height: 50px;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin: 2rem 2rem 1rem 2rem;
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 0;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 400ms;
}

@media screen and (max-width: 400px) {
  .btn {
    height: auto;
    line-height: 1em;
    margin: 1em auto;
  }
}

.btn:hover,
.btn:active,
.btn:first-child:active {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 25px;
}

.btn-primary {
  background-color: var(--color-powder);
  border-color: var(--color-powder);
  color: var(--color-black);
}

.btn-hilight {
  background-color: var(--color-grey);
  border-color: var(--color-grey);
  color: var(--color-black);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
:not(.btn-check) + .btn-primary:active,
.modal .btn-primary:first-child:active {
  background-color: var(--color-grey);
  border-color: var(--color-grey);
  color: var(--color-black);
  box-shadow: none;
}

.btn-hilight:hover,
.btn-hilight:active,
.btn-hilight:focus,
.btn-hilight:focus-visible,
:not(.btn-check) + .btn-hilight:active,
.modal .btn-hilight:first-child:active {
  background-color: var(--color-powder);
  border-color: var(--color-powder);
  color: var(--color-black);
  box-shadow: none;
}

.form-control:focus {
  color: var(--color-black);
  background-color: #fff;
  border-color: var(--color-grey);
  box-shadow: none;
}

.modal {
  z-index: 10000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-grey);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-grey);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-pink);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes pulse-vertical {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) and (max-width: 1500px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a.hilight,
.nav-menu a.hilight:focus {
  background: #e4dcd1;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
  color: #fff;
  background: #b3bdbc;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover > a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover > a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 14px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
  background: var(--color-grey);
  color: white;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: var(--color-powder)
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  text-align: center;
  z-index: 10000;
  border: 40px solid var(--color-white);
}

@media screen and (max-width: 991px) {
  #hero {
    border: 0 none;
  }
}


#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  margin: 0;
  font-weight: 400;
  font-size: 19px;
  line-height: 36px;
  margin-top: 2em;
  margin-bottom: 6em;
  text-transform: uppercase;
}

#hero h2 a {
  color: var(--color-powder);
  display: inline;
}

#hero h2 i {
  margin: 0 .5em;
  color: #4d5352;
}

#hero h2 a:hover,
#hero a.hero-link:hover {
  color: var(--color-white);
}

#hero a.hero-link {
  display: inline-block;
  animation: pulse-vertical 2s infinite;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid var(--color-powder);
  font-size: 26px;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#logo-main img {
  max-width: 250px;
}

@media (max-width: 1000px) {
  #logo-main img {
    max-width: 200px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0 60px 0;
  overflow: hidden;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h1 {
  display: inline-block;
  font-size: 108px;
  line-height: 87px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-white);
  margin-top: -109px;
  margin-left: -15px;
  border: 16px solid var(--color-white);
}

.section-header h1 span.small {
  font-size: 40px;
  line-height: 0;
  text-transform: none;
  color: var(--color-grey);
}

.section-header-bg {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 85px;
}

.section-header-bg div.stripe {
  width: 100%;
  height: 10px;
  background-color: var(--color-grey);
  margin-bottom: 9px;
}

.section-header-bg div.stripe.stripe-powder {
  background-color: var(--color-powder);
}

.section-header .logo {
  text-align: right;
}

.section-header .logo img {
  height: 86px;
  background: var(--color-white);
  border-left: 10px solid var(--color-white);
  border-right: 10px solid var(--color-white);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-grey);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.section-image {
  width: 100%;
}

/*--------------------------------------------------------------
# Gourmet Bistro
--------------------------------------------------------------*/

#gourmet-bistro {
  min-height: 100vh;
}

#gourmet-bistro p {
  font-size: 1.1rem;
  line-height: 1.8rem;
}

#gourmet-bistro p.big {
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}

#gourmet-bistro a.btn-primary {
  margin-top: 5rem;
}

@media screen and (max-width: 991px) {
  #gourmet-bistro div.logo {
    display: none;
  }

  #gourmet-bistro .section-header {
    margin-bottom: 30px;
  }

  #gourmet-bistro a.btn-primary {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 500px) {
  #gourmet-bistro {
    padding-bottom: 15px;
  }

  #gourmet-bistro h1 {
    font-size: 4.4rem;
    line-height: 4rem;
  }

  #gourmet-bistro .section-header {
    margin-bottom: 50px;
  }

  #gourmet-bistro p.big {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }
}

@media screen and (min-width: 501px) and (max-width: 768px) {
  #gourmet-bistro {
    padding-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Club Gourmet
--------------------------------------------------------------*/

#club-gourmet-content {
  position: relative;
  width: auto;
  padding: 4% 10%;
  background: url(/gourmetbistro/img/page/gourmet-foto-2.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

#club-gourmet-content::before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

#club-gourmet-content .text {
  text-align: center;
  color: var(--color-white);
  z-index: 1;
}

#club-gourmet-content h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

#club-gourmet-content p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  #club-gourmet div.logo {
    display: none;
  }

  #club-gourmet .section-header {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 500px) {
  #club-gourmet {
    padding-bottom: 20px;
  }

  #club-gourmet-content {
    padding-bottom: 11%;
  }

  #club-gourmet h1 {
    font-size: 3.1rem;
    line-height: 3rem;
  }

  #club-gourmet .section-header {
    margin-bottom: 50px;
  }

  #club-gourmet-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  #club-gourmet-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 501px) and (max-width: 620px) {
  #club-gourmet {
    padding-bottom: 20px;
  }

  #club-gourmet-content {
    padding-bottom: 11%;
  }

  #club-gourmet h1 {
    font-size: 5.5rem;
    line-height: 4.5rem;
  }

  #club-gourmet-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  #club-gourmet-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}


/*--------------------------------------------------------------
# Registration
--------------------------------------------------------------*/

#registration {
  background: url(/gourmetbistro/img/page/gourmet-bg-1.jpg) no-repeat center 30%;
  background-size: contain;
  text-align: center;
  padding-top: 30px;
}

#registration h2 {
  margin-bottom: 0.6em;
}

#registration-boxes {
  text-align: center;
  margin-top: 50px;
}

#registration-boxes .box {
  display: flex;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 15px;
  box-shadow: 0px -1px 3px 4px rgb(0 0 0 / 2%);
  transition: box-shadow 0.3s ease-in-out;
  background-color: #fff;
}

#registration-boxes .box:hover {
  box-shadow: 0px -1px 10px 2px rgb(0 0 0 / 15%);
}

#registration-boxes .box-inner {
  border: 1px solid var(--color-grey);
  display: flex;
  flex-direction: column;
  height: inherit;
}

#registration-boxes .logo {
  max-width: 30%;
  margin: 20px auto;
}

#registration-boxes .box-header {
  padding: 15px;
}

#registration-boxes .left .box-header {
  background-color: var(--color-powder);
}

#registration-boxes .right .box-header {
  background-color: var(--color-grey);
}

#registration-boxes .box-header h4 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

#registration-boxes .box-header h4 .hilight {
  font-weight: 600;
}

#registration-boxes .box-header h5 {
  font-weight: 600;
}

#registration-boxes .box-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

@media screen and (max-width: 500px) {
  #registration {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 501px) and (max-width: 620px) {
  #registration {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

#gallery {
  text-align: center;
  padding-top: 30px;
}

#gallery .gallery-item {
  margin-bottom: 30px;
}

#gallery .portfolio-container {
  margin-top: 20px;
}

#gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0);
  margin-bottom: 2em;
}

#gallery .gallery-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

#gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#gallery .gallery-wrap .gallery-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

#gallery .gallery-wrap .gallery-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

#gallery .gallery-wrap .gallery-links {
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 4;
}

#gallery .gallery-wrap .gallery-links a {
  width: 100%;
  height: 100%;
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

#gallery .gallery-wrap .gallery-links a:hover {
  color: #148af9;
}

#gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

#gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}

#gallery .portfolio-wrap:hover .gallery-info::before {
  top: 15px;
  left: 15px;
}

#gallery .gallery-wrap:hover .gallery-info::after {
  bottom: 15px;
  right: 15px;
}

@media screen and (max-width: 500px) {
  #gallery {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 501px) and (max-width: 620px) {
  #gallery {
    padding-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

#faq {
  padding-top: 30px;
}

#faq .faq-item {
  margin-top: 20px;
  padding: 0 0 20px 20px;
  border-left: 2px solid var(--color-grey);
  position: relative;
}

#faq .faq-item:last-child {
  padding-bottom: 0;
}

#faq .faq-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid var(--color-grey);
}

#faq .faq-item h4 {
  line-height: 22px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Ajánlatok
--------------------------------------------------------------*/

#ajanlatok {
  background-color: #f5f5f5;
  padding-left: 3em;
  padding-right: 3em;
}

#ticket_sum,
#event_sum {
  white-space: nowrap;
}

@media screen and (max-width: 770px) {
  #ajanlatok {
    padding-left: 1em;
    padding-right: 1em;
  }
}

#ajanlatok .purchase-container {
  background: #fcfcfc;
  border-radius: 20px;
}

#ajanlatok .purchase-row {
  margin: 2em 0;
}

#ajanlatok .purchase-header {
  margin-top: 2em;
}

#ajanlatok .purchase-header,
#ajanlatok .purchase-text {
  text-align: center;
}

#ajanlatok .purchase-items-row {
  border-bottom: 1px solid #ededed;
  margin-bottom: 1em;
}

#ajanlatok .ticket-wrapper {
  background: #e4dcd1 url(/gourmetbistro/img/page/bg-ticket.png) no-repeat;
  border-radius: 10px;
  padding: 0.8em 1.1em;
  margin-bottom: 1.5em;
  /*border: 2px solid #f7f4f0;*/
  font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
  background-position: center right;
  background-attachment: fixed;
}

#ajanlatok .ticket-wrapper.event {
  background: #e4dcd1 url(/gourmetbistro/img/page/bg-glass.png) no-repeat;
  background-position: center right;
  background-attachment: fixed;
}

#ajanlatok .ticket-wrapper.purchased {
  background-size: contain;
  background-color: #dedfe1;
}

#ajanlatok .ticket-wrapper.purchased:hover {
  background-size: contain;
  background-color: #e4dcd1;
}

#ajanlatok .ticket-wrapper.purchased h5 {
  color: var(--color-text);
  font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
  font-size: .9em;
  font-weight: 700;
}

#ajanlatok .ticket-wrapper.purchased p {
  color: var(--color-text);
  font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.52em;
  font-weight: 700;
  line-height: 1em;
}

#ajanlatok .ticket-wrapper h4 {
  font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}

#ajanlatok .ticket-wrapper h4 span.small {
  display: inline-block;
  font-size: .6em;
  font-weight: 400;
  line-height: 1.3em;
  padding-top: 0.4em;
  margin-bottom: 1em;
}

#ajanlatok .ticket-wrapper p {
  margin: 0;
}

#ajanlatok .ticket-wrapper p span.small {
  display: inline-block;
  font-size: .8em;
  line-height: 1.1em;
}

#ajanlatok .ticket-wrapper .quantity {
  text-align: right;
}

#ajanlatok .ticket-btn,
#ajanlatok .ticket-counter,
#ajanlatok .event-counter {
  margin: 0;
  border: 1px solid #ece6dd;
  font-size: 1.3em;
  border-radius: 5px;
  line-height: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  padding: 9px 0;
  background: #b3bdbc;
}

#ajanlatok .ticket-btn {
  cursor: pointer;
}

#ajanlatok .ticket-btn:hover {
  color: white;
  background: #959ba1;
}

#ajanlatok .ticket-counter,
#ajanlatok .event-counter {
  padding: 0;
  font-size: 1em;
  line-height: 2.5em;
  background: #f2f3f5;
  cursor: default;
}

#ajanlatok .shop-button {
  margin-top: .2em;
}

#ajanlatok .shop-button.disabled {
  background-color: #b3b9bf;
  border-color: #b3b9bf;
}

#ajanlatok p.sum-wrapper {
  font-size: 1.3em;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  #ajanlatok .ticket-wrapper .quantity {
    text-align: center;
    margin-top: 1.2em;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer .logo {
  margin: 0 auto;
}

#footer .logo img {
  max-width: 200px;
  opacity: .8;
}

#footer h3 {
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-grey);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--color-powder);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/* 
* Modals
*/

.modal-content {
  border-radius: 0;
}

.modal-header {
  border: none;
}

.modal-body {
  padding: 0 2rem 2rem 2rem;
}

.modal-body img.logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.modal-body input {
  margin-bottom: 1rem;
}

.modal-body button {
  margin-top: 1rem;
}

#modal-login,
#modal-registration,
#modal-activation,
#modal-ticket-purchase,
#modal-event-purchase {
  text-align: center;
}

#modal-login a {
  color: var(--color-text);
}

#modal-login a:hover {
  color: var(--color-grey);
}

.modal-body input:read-only {
  background: #ced4da;
  cursor: default;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  color: #eb0f73;
}

#modal-ticket-purchase p.ticket-purchase-cart,
#modal-event-purchase p.ticket-purchase-cart {
  font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
  font-size: .9em;
  background: #e4dcd1;
  padding: 1em 1.3em;
  border-radius: 10px;
  font-weight: 400;
  color: #555657;
  text-align: left;
}

#modal-ticket-purchase p.lead,
#modal-event-purchase p.lead {
  margin: 2em 0;
}

#modal-ticket-purchase .btn,
#modal-event-purchase .btn {
  margin: 1em;
}

#modal-ticket-purchase .payment-footer,
#modal-event-purchase .payment-footer {
  font-size: .8em;
  text-align: justify;
  margin-top: 2em;
}

#modal-ticket-purchase .payment-footer a,
#modal-event-purchase .payment-footer a {
  color: #6c757d;
  font-weight: 700;
}

#modal-ticket-purchase .payment-footer a:hover,
#modal-event-purchase .payment-footer a:hover {
  color: #ced4da;
  font-weight: 700;
}