@charset "UTF-8";
/* 1. Colors */
/* ==========================================================================
 Materialize variables
 ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Colors
 *  2. Badges
 *  3. Buttons
 *  4. Cards
 *  5. Collapsible
 *  6. Chips
 *  7. Date Picker
 *  8. Dropdown
 *  10. Forms
 *  11. Global
 *  12. Grid
 *  13. Navigation Bar
 *  14. Side Navigation
 *  15. Photo Slider
 *  16. Spinners | Loaders
 *  17. Tabs
 *  18. Tables
 *  19. Toasts
 *  20. Typography
 *  21. Footer
 *  22. Flow Text
 *  23. Collections
 *  24. Progress Bar
 *  25. About us
 */
/* 1. Colors
 ========================================================================== */
/* 13. Navigation Bar
 ========================================================================== */
/* 21. Footer
 ========================================================================== */
/* 23. Collections
 ========================================================================== */
/* 24. Progress Bar
 ========================================================================== */
/* 25. About us
 ========================================================================== */
/* 25. Loader
 ========================================================================== */
/* =======================================================================
 ## ++ Media Queries
 ========================================================================== */
/* =======================================================================
 ## ++ Unit transform
 ========================================================================== */
/*  
 Used for making containers have width in percentages. 
 Usage: define elemnt width in px and the width of parent elemnt in px. 
 eg. .block{width:cp(512px, 1024px)} this will result in .block{width:50%;}   
 */
/*  
 Used for making px values convert to rem values
 Usage: define font-size in px and it will convert to rems
 eg. font-size: rem(14px);
 */
/*mixin from Benjamin K. - stackoverflow
 @mixin div-same-size-as-background-img($url) 
 { 
 background-image: url($url); 
 background-size: contain; 
 background-repeat: no-repeat; 
 width: 100%; height: 0; 
 padding-top: percentage(image-height($url) / image-width($url));
 }*/
/*mixin karl from codepen*/
html, body {
  margin: 0;
  background-color: #fff;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-size: 62.5%;
  max-width: 100%;
  font-size: 10px; }

.page-surround {
  max-width: 100%;
  margin: auto;
  overflow: hidden; }

.fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s; }

@keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-ms-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }
/* Load Settings */
.no-scroll-y {
  overflow: hidden;
  height: '100%'; }
/* Preloader */
.ctn-preloader {
  -webkit-box-align: center;
  align-items: center;
  /* Show or Hide cursor when hover of Preloader*/
  cursor: none;
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999; }
  .ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100; }
    .ctn-preloader .animation-preloader .txt-loading {
      font: bold 5em 'Quicksand', sans-serif;
      text-align: center;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .ctn-preloader .animation-preloader .txt-loading .letters-loading {
        color: rgba(0, 0, 0, 0.2);
        position: relative; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
          -webkit-animation: letters-loading 2s infinite;
          animation: letters-loading 2s infinite;
          color: #fff;
          content: attr(data-text-preloader);
          left: 0;
          opacity: 0;
          position: absolute;
          top: 0;
          -webkit-transform: rotateY(-90deg);
          -webkit-backface-visibility: hidden;
          -webkit-perspective: 1000;
          transform: rotateY(-90deg); }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
          -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
          -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
          -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
          -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
          -webkit-animation-delay: 1s;
          animation-delay: 1s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
          -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
          -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
          -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
          -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
          -webkit-animation-delay: 2s;
          animation-delay: 2s; }
        .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before {
          -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s; }
  .ctn-preloader .bcg-loader {
    background: -moz-radial-gradient(center, circle cover, #92d6fd 0%, #79cdfd 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #92d6fd), color-stop(100%, #79cdfd));
    background: -webkit-radial-gradient(center, circle cover, #92d6fd 0%, #79cdfd 100%);
    background: -o-radial-gradient(center, circle cover, #92d6fd 0%, #79cdfd 100%);
    background: -ms-radial-gradient(center, circle cover, #92d6fd 0%, #79cdfd 100%);
    background: radial-gradient(center, circle cover, #92d6fd 0%, #79cdfd 100%);
    background-color: #92d6fd;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0; }

.loaded .animation-preloader, .loaded .bcg-loader {
  opacity: 0;
  -webkit-transition: 1.5s ease-out;
  transition: 1.5s ease-out;
  -webkit-transform: translate3d(0, 0, 0); }
/* Animation of the letters loading from the preloader */
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg); }

  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -webkit-transform: translate3d(0, 0, 0);
    transform: rotateY(0deg); } }

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg); }

  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg); } }
/* Backward laptop size (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Text Loading */
    .ctn-preloader .animation-preloader .lds-ellipsis span {
      width: 7px;
      height: 7px; }
      .ctn-preloader .animation-preloader .txt-loading {
        font: bold 3.5em 'Quicksand', sans-serif; } }

@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Text Loading */
    .ctn-preloader .animation-preloader .lds-ellipsis span {
      width: 5px;
      height: 5px; }
      .ctn-preloader .animation-preloader .txt-loading {
        font: bold 2em "Quicksand", sans-serif; } }

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999; }
  .lds-ellipsis span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    -webkit-animation: ball-pulse-sync 1s 0s infinite ease-in-out;
    animation: ball-pulse-sync 1s 0s infinite ease-in-out; }
    .lds-ellipsis span:nth-child(1) {
      -webkit-animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
      animation: ball-pulse-sync 1s -0.14s infinite ease-in-out; }
    .lds-ellipsis span:nth-child(2) {
      -webkit-animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
      animation: ball-pulse-sync 1s -70ms infinite ease-in-out; }

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }

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

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
/*
 *
 * ==========================================
 * CUSTOM UTIL CLASSES
 * ==========================================
 *
 */
.navbar {
  transition: all 0.4s;
  font-size: 2.5rem; }
  .navbar .navbar-image {
    width: 50%;
    height: 50%;
    max-width: 50%;
    max-height: 50%; }
  .navbar .navbar-brand {
    width: 200px; }
  .navbar .page-home {
    color: #fff; }
  .navbar .page-produkty, .navbar .page-povedali-o-nas, .navbar .page-about, .navbar .page-formular, .navbar .page-dakujeme {
    color: #000; }
  .navbar .nav-link:hover, .navbar .nav-link:focus {
    color: #ce380d;
    text-decoration: none; }
  .navbar .navbar-nav li {
    color: #000;
    padding-left: 20px; }
    .navbar .navbar-nav .dropdown .dropdown-menu {
      background-color: transparent;
      border: transparent; }
    .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
      transition: all 0.2s;
      padding: 0;
      margin: 0; }
      .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        border: transparent;
        transform: scale(1.4);
        /*you didn't have the semi-colons here*/
        -ms-transform: scale(1.4);
        -webkit-transform: scale 1.4;
        -moz-transform: scale(1.4);
        -o-transform: scale(1.4); }
/* Change navbar styling on scroll */
.navbar.active {
  background: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); }
  .navbar.active .nav-link {
    color: #000; }
  .navbar.active .nav-link:hover, .navbar.active .nav-link:focus {
    color: #ce380d;
    text-decoration: none; }
/* Change navbar styling on small viewports */
@media (max-width: 992px) {
  .navbar {
    background: #fff; }

  .navbar .navbar-brand, .navbar .nav-link {
    color: #000; } }

@media (min-width: 992px) and (max-width: 1080px) {
  #home-navbar {
    display: none; } }

.second-button:focus {
  outline: 0;
  box-shadow: none !important; }

.animated-icon2 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer; }

.animated-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out; }

.animated-icon2 span {
  background: #386e96; }

.animated-icon2 span:nth-child(1) {
  top: 0px; }

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
  top: 10px; }

.animated-icon2 span:nth-child(4) {
  top: 20px; }

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%; }

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%; }

.logos-container {
  background: linear-gradient(90deg, #bae6ff, #edf8ff); }
  .logos-container .footer-logos {
    height: 30px;
    width: auto; }
  .logos-container hr {
    border: 0;
    background-color: none;
    border-top: 1px solid #cdcdcd; }

footer {
  height: 15vh;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem; }
  footer .main-footer {
    padding: 20px 0;
    background: #bae6ff;
    background: linear-gradient(90deg, #bae6ff, #edf8ff); }
  footer ul {
    padding-left: 0;
    list-style: none; }

.footer-copyright {
  background: linear-gradient(-90deg, #cdcdcd, #e7e7e7); }
  .footer-copyright p {
    color: #000; }

.widget {
  padding: 20px; }
  .widget a {
    color: #000; }
    .widget a:hover {
      color: #cdcdcd; }
  .widget li a {
    color: #000; }
    .widget li a:hover {
      color: #cdcdcd; }
  .widget .no-box {
    padding: 0;
    background-color: transparent;
    margin-bottom: 40px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    color: #000; }

.text {
  color: #000; }
  .text a {
    color: #000; }
    .text a:hover {
      color: #cdcdcd; }

.widget-title {
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  color: #000; }
  .widget-title span {
    background: #cdcdcd none repeat scroll 0 0;
    display: block;
    height: 2px;
    margin-top: 2vh;
    margin-bottom: 3vh;
    position: relative;
    width: 100%; }

ul.social-footer2 {
  margin: 0;
  padding: 0;
  width: auto; }
  ul.social-footer2 li {
    display: inline-block;
    padding: 0; }
    ul.social-footer2 li a {
      display: block;
      height: 30px;
      width: 30px;
      text-align: center; }
    ul.social-footer2 li a:hover {
      color: #cdcdcd; }

.slide-title {
  font-size: 7rem; }

.slick-slider .slick-arrow {
  display: block !important; }

.slide-content {
  display: flex;
  justify-content: center;
  flex-direction: column; }
  .slide-content p {
    font-size: 3rem;
    font-weight: 50; }
  .slide-content .link-slider {
    color: inherit;
    transition: all 0.5s; }
  .slide-content .link-slider:hover {
    color: inherit;
    transform: scale(1.1, 1.1);
    /*you didn't have the semi-colons here*/
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale 1.1, 1.1;
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1); }
  .slide-content .link-slider:focus {
    outline: 0;
    box-shadow: none !important; }
  .slide-content .link-slider .fa-hand-point-down {
    display: none; }

@media screen and (max-width: 1024px) {
  .slide-title {
    padding-bottom: 4vh; }
    .slide-content {
      padding-top: 15vh;
      justify-content: unset;
      align-content: flex-start; } }

@media screen and (max-width: 768px) {
  .slide-title {
    font-size: 4rem; }
    .slide-content p {
      font-size: 2rem; }
      .slide-content .link-slider {
        margin: 0;
        padding: 0;
        padding-top: 5vh; }
        .slide-content .link-slider .fa-hand-point-down {
          margin: 0;
          padding: 0;
          display: block; } }

.carousel {
  min-width: 100%;
  min-height: 100vh;
  background-color: #fff; }

.products-section {
  padding-top: 15vh;
  font-family: "Quicksand", sans-serif;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.about-section {
  padding-top: 15vh;
  font-family: "Quicksand", sans-serif;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 0;
  height: 0;
  padding-top: 49%; }

.about-section-title {
  position: absolute;
  top: 15vh;
  bottom: 0;
  left: 0;
  right: 0; }

.about {
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  background-color: #f6f6f6;
  color: #8e7c68;
  padding-top: 20px;
  padding-bottom: 30px; }
  .about .h1 {
    opacity: 0.8; }
  .about span {
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: auto;
    border-radius: 50%;
    font-size: 4rem;
    color: #fff;
    opacity: 0.7;
    background-color: #ed7458;
    border: 2px solid #ed7458;
    webkit-transition: all 0.5s ease;
    moz-transition: all 0.5s ease;
    os-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .about .lead {
    color: #8e7c68;
    font-size: 2rem;
    text-align-last: left; }

.about-item:hover span {
  opacity: 1;
  border: 2px solid #ffdc9f;
  font-size: 4.3rem;
  -webkit-transform: scale(1.1, 1.1) rotate(360deg);
  -moz-transform: scale(1.1, 1.1) rotate(360deg);
  -o-transform: scale(1.1, 1.1) rotate(360deg);
  transform: scale(1.1, 1.1) rotate(360deg); }

.about-item:hover h1 {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

@media screen and (max-width: 768px) {
  .about-section {
    margin-top: 5vh; }
    .about .lead {
      font-size: 1.6rem; }
    .about-section-title {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
      .about-section-title h1 {
        font-size: 4rem; } }

.povedali-section {
  padding-top: 15vh;
  font-family: "Quicksand", sans-serif;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh; }

#formular-section {
  padding-top: 15vh;
  font-family: "Quicksand", sans-serif;
  min-height: 100vh;
  background-color: rgba(159, 210, 230, 0.7);
  padding-bottom: 10vh;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../themes/314gaemptytheme/assets/img/three_kid.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center; }
  #formular-section .order-title {
    font-weight: 400;
    padding-bottom: 5vh; }
  #formular-section .form-group {
    font-size: 2rem; }
    #formular-section .form-group textarea {
      width: 100%;
      height: 30vh; }
  #formular-section .dropdown-toggle {
    border-color: rgba(229, 103, 23, 0.8) !important; }
    #formular-section .dropdown-toggle:focus, #formular-section .dropdown-toggle:active {
      outline: 0 none !important;
      border: none !important; }
  #formular-section .form-control-lg {
    font-size: 2rem; }
  #formular-section .form-control-lg:focus {
    border-color: rgba(229, 103, 23, 0) !important;
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6);
    outline: 0 none; }
  #formular-section .dropdown-menu .active {
    background-color: #fcdea6 !important;
    color: black; }
  #formular-section .form-school {
    display: none; }
  #formular-section .submit-btn {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    font-size: 2rem; }
    #formular-section .submit-btn:hover {
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22); }
  #formular-section .btn-rounded {
    border-radius: 8px; }
  #formular-section .btn-outline-info {
    color: black !important;
    background-color: white !important;
    border: 2px solid #e56717 !important; }
  #formular-section .waves-effect {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent; }
  #formular-section .input-style {
    font-size: 2rem; }
    #formular-section .input-style:hover {
      background: #face7b !important;
      color: black; }
  #formular-section .actions-btn {
    font-size: 2rem !important; }
  #formular-section .disabled {
    pointer-events: none;
    opacity: 0.6; }

#formular-section.bcg-4 {
  background: linear-gradient(rgba(159, 210, 230, 0.7), rgba(255, 255, 255, 0.8)), url("../themes/314gaemptytheme/assets/img/zatracena_form.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center; }
  #formular-section.bcg-4 .dropdown-item:hover .text {
    color: white !important; }
  #formular-section.bcg-4 .dropdown-item.active, #formular-section.bcg-4 .dropdown-item:active {
    background-color: #ace6f0 !important; }
  #formular-section.bcg-4 .input-style:hover {
    background: #2890af !important;
    color: white !important; }
  #formular-section.bcg-4 .form-control-lg:focus {
    border-color: rgba(40, 144, 175, 0) !important;
    box-shadow: 0 1px 1px rgba(40, 144, 175, 0.075) inset, 0 0 8px rgba(40, 144, 175, 0.6);
    outline: 0 none; }
  #formular-section.bcg-4 .dropdown-toggle {
    border-color: rgba(0, 138, 180, 0.8) !important; }
    #formular-section.bcg-4 .dropdown-toggle:focus, #formular-section.bcg-4 .dropdown-toggle:active {
      outline: 0 none !important;
      border: none !important; }
  #formular-section.bcg-4 .btn-outline-info {
    background-color: white !important;
    border: 2px solid #2d9acc !important; }

#formular-section.bcg-1, #formular-section.bcg-2 {
  background: linear-gradient(rgba(230, 159, 159, 0.7), rgba(255, 255, 255, 0.8)), url("../themes/314gaemptytheme/assets/img/pavucina_form.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center; }
  #formular-section.bcg-1 .dropdown-item:hover .text, #formular-section.bcg-2 .dropdown-item:hover .text {
    color: white !important; }
  #formular-section.bcg-1 .dropdown-item.active, #formular-section.bcg-2 .dropdown-item.active, #formular-section.bcg-1 .dropdown-item:active, #formular-section.bcg-2 .dropdown-item:active {
    background-color: #d48a8a !important; }
  #formular-section.bcg-1 .input-style:hover, #formular-section.bcg-2 .input-style:hover {
    background: #cf5f68 !important;
    color: white !important; }
  #formular-section.bcg-1 .form-control-lg:focus, #formular-section.bcg-2 .form-control-lg:focus {
    border-color: rgba(194, 56, 114, 0.8) !important;
    box-shadow: 0 1px 1px rgba(240, 25, 107, 0.075) inset, 0 0 8px rgba(224, 3, 3, 0.8);
    outline: 0 none; }
  #formular-section.bcg-1 .dropdown-toggle, #formular-section.bcg-2 .dropdown-toggle {
    border-color: rgba(194, 56, 114, 0.8) !important; }
    #formular-section.bcg-1 .dropdown-toggle:focus, #formular-section.bcg-2 .dropdown-toggle:focus, #formular-section.bcg-1 .dropdown-toggle:active, #formular-section.bcg-2 .dropdown-toggle:active {
      outline: 0 none !important;
      border: none !important; }
  #formular-section.bcg-1 .btn-outline-info, #formular-section.bcg-2 .btn-outline-info {
    background-color: white !important;
    border: 2px solid #c02d2d !important; }

#formular-section.bcg-3 {
  background: linear-gradient(rgba(181, 230, 159, 0.7), rgba(255, 255, 255, 0.8)), url("../themes/314gaemptytheme/assets/img/ach_ta_slovencina_form.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center; }
  #formular-section.bcg-3 .dropdown-item:hover .text {
    color: white !important; }
  #formular-section.bcg-3 .dropdown-item.active, #formular-section.bcg-3 .dropdown-item:active {
    background-color: #c7f0ac !important; }
  #formular-section.bcg-3 .input-style:hover {
    background: #42d342 !important;
    color: white !important; }
  #formular-section.bcg-3 .form-control-lg:focus {
    border-color: rgba(1, 185, 47, 0.8) !important;
    box-shadow: 0 1px 1px rgba(1, 185, 47, 0.075) inset, 0 0 8px rgba(1, 185, 47, 0.6);
    outline: 0 none; }
  #formular-section.bcg-3 .dropdown-toggle {
    border-color: rgba(1, 185, 47, 0.8) !important; }
    #formular-section.bcg-3 .dropdown-toggle:focus, #formular-section.bcg-3 .dropdown-toggle:active {
      outline: 0 none !important;
      border: none !important; }
  #formular-section.bcg-3 .btn-outline-info {
    background-color: white !important;
    border: 2px solid #49b965 !important; }

@media screen and (max-width: 768px) {
  #formular-section .order-title {
    font-weight: 300;
    font-size: 3rem; } }

#thankyou-section {
  padding-top: 15vh;
  font-family: "Quicksand", sans-serif;
  padding-bottom: 10vh;
  min-height: 100vh;
  background: #afafaf;
  background: linear-gradient(10deg, #eee 0%, rgba(238, 242, 243, 1) 100%); }
  #thankyou-section .thank-you-text {
    font-size: 2rem; }

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg); }

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

@keyframes inM {
  50% {
    transform: rotate(0deg); }

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

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg); }

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

@keyframes outM {
  50% {
    transform: rotate(0deg); }

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

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg); }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg); }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg); } }

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg); }

  50% {
    transform: translateY(9px) rotate(0deg); }

  100% {
    transform: translateY(9px) rotate(135deg); } }

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg); }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg); }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg); } }

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg); }

  50% {
    transform: translateY(9px) rotate(0deg); }

  100% {
    transform: translateY(9px) rotate(135deg); } }

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg); }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg); }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg); } }

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg); }

  50% {
    transform: translateY(-9px) rotate(0deg); }

  100% {
    transform: translateY(-9px) rotate(135deg); } }

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg); }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg); }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg); } }

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg); }

  50% {
    transform: translateY(-9px) rotate(0deg); }

  100% {
    transform: translateY(-9px) rotate(135deg); } }
