/*

Template 2106 Soft Landing

http://www.tooplate.com/view/2106-soft-landing
	
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #009EF7;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #536976;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292E49, #536976);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #292E49, #536976); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #009EF7;
    border: 0;
    color: #ffffff;

    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #009EF7;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }

  .custom-navbar .nav li a {
    font-size: 16px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #009EF7;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #009EF7;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #009EF7;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    background: url('../images/home-bg.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 12em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .home-info {
    /*margin-top: 7em;*/
	margin-top: 0em;
  }

  .home-info h3 {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }
  


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #feature {
    background: #ffffff;
  }

  #feature .nav-tabs {
    border-bottom: 0;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #999999;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #009EF7;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #009EF7;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 50px;
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url('../images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #about .section-title,
  #pricing .section-title {
    text-align: center;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 0;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 20px 40px;
  }

  .pricing-title {
    padding-bottom: 5px;
  }

  .pricing-info {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 20px 0;
  }

  .pricing-info p {
    font-size: 16px;
  }

  .pricing-bottom {
    position: relative;
  }

  .pricing-bottom span {
    font-size: 20px;
  }

  .pricing-btn {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-block;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #009EF7;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding-bottom: 30px;
  }

  .copyright-text p {
    margin: 5px;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

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

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


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

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 10px;
      padding-left: 10px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -24em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding-bottom: 25px;
    }
  }


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

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }


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

    .online-form input[type="email"],
    .online-form .form-control {
      width: 85%;
    }

    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: 65vh;
    }
  }
  

/*---------------------------------------
     Pridane CSS             
  -----------------------------------------*/

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
  animation: fadeIn .3s ease;
}
.modal-content h2 { margin-bottom: 20px; }
.close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}
.modal-input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.modal-btn {
  background: #009EF7;
  color: #fff;
  border: 0;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.modal-btn:hover { background: #202020; }
@keyframes fadeIn { from {opacity:0; transform:scale(.96)} to {opacity:1; transform:scale(1)} }

/* Code card */
#api { background: #ffffff; }
.code-card {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}
.code-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #202020;
  color: #fff;
}
.code-card-header h2 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}
.copy-btn {
  background: #009EF7;
  color: #fff;
  border: 0;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
}
.copy-btn:hover { background: #ffffff; color: #202020; }

.code-card pre {
  margin: 0;
  background: #0b1220;
  color: #e6edf3;
  padding: 20px;
  overflow: auto;
  font-family: Consolas, Menlo, Monaco, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid #0b1220;
}
.code-card code { white-space: pre; }

.code-hint {
  padding: 12px 20px 18px 20px;
  font-size: 13px;
  color: #757575;
  background: #fff;
  border-top: 2px solid #f0f0f0;
}

.row-padding{
	padding:0px 10px 0px 10px;
}

.row-padding a, .tab-pane-item a{
	font-weight:bold;
	color:#009EF7;
	text-decoration:none;
}

.row-padding a:hover, .tab-pane-item a:hover{
	font-weight:bold;
	color:#000000;
	text-decoration:none;
}

/* --- Abecedné prepínace A–Z (bez JS) --- */
.alpha-tabs { margin: 20px 0; }

/* lišta písmen */
.alpha-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

/* skryté rádia – mimo obrazovku, nie display:none kvôli dostupnosti */
.alpha-input {
  position: absolute;
  left: -9999px;
}

/* písmená */
.alpha-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #202020;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease, color .2s ease, transform .06s ease;
}
.alpha-label:hover { transform: translateY(-1px); }

/* Panely */
.alpha-panels { position: relative; }
.alpha-panel { display: none; }

/* Zobrazenie aktuálneho panelu (pre každý input) */
#alpha-A:checked ~ .alpha-panels #panel-A { display: block; }
#alpha-B:checked ~ .alpha-panels #panel-B { display: block; }
#alpha-C:checked ~ .alpha-panels #panel-C { display: block; }
#alpha-D:checked ~ .alpha-panels #panel-D { display: block; }
#alpha-E:checked ~ .alpha-panels #panel-E { display: block; }
#alpha-F:checked ~ .alpha-panels #panel-F { display: block; }
#alpha-G:checked ~ .alpha-panels #panel-G { display: block; }
#alpha-H:checked ~ .alpha-panels #panel-H { display: block; }
#alpha-I:checked ~ .alpha-panels #panel-I { display: block; }
#alpha-J:checked ~ .alpha-panels #panel-J { display: block; }
#alpha-K:checked ~ .alpha-panels #panel-K { display: block; }
#alpha-L:checked ~ .alpha-panels #panel-L { display: block; }
#alpha-M:checked ~ .alpha-panels #panel-M { display: block; }
#alpha-N:checked ~ .alpha-panels #panel-N { display: block; }
#alpha-O:checked ~ .alpha-panels #panel-O { display: block; }
#alpha-P:checked ~ .alpha-panels #panel-P { display: block; }
#alpha-Q:checked ~ .alpha-panels #panel-Q { display: block; }
#alpha-R:checked ~ .alpha-panels #panel-R { display: block; }
#alpha-S:checked ~ .alpha-panels #panel-S { display: block; }
#alpha-T:checked ~ .alpha-panels #panel-T { display: block; }
#alpha-U:checked ~ .alpha-panels #panel-U { display: block; }
#alpha-V:checked ~ .alpha-panels #panel-V { display: block; }
#alpha-W:checked ~ .alpha-panels #panel-W { display: block; }
#alpha-X:checked ~ .alpha-panels #panel-X { display: block; }
#alpha-Y:checked ~ .alpha-panels #panel-Y { display: block; }
#alpha-Z:checked ~ .alpha-panels #panel-Z { display: block; }

/* Zvýraznenie aktívneho písmena (labelu) podla checked inputu */
#alpha-A:checked ~ .alpha-bar label[for="alpha-A"],
#alpha-B:checked ~ .alpha-bar label[for="alpha-B"],
#alpha-C:checked ~ .alpha-bar label[for="alpha-C"],
#alpha-D:checked ~ .alpha-bar label[for="alpha-D"],
#alpha-E:checked ~ .alpha-bar label[for="alpha-E"],
#alpha-F:checked ~ .alpha-bar label[for="alpha-F"],
#alpha-G:checked ~ .alpha-bar label[for="alpha-G"],
#alpha-H:checked ~ .alpha-bar label[for="alpha-H"],
#alpha-I:checked ~ .alpha-bar label[for="alpha-I"],
#alpha-J:checked ~ .alpha-bar label[for="alpha-J"],
#alpha-K:checked ~ .alpha-bar label[for="alpha-K"],
#alpha-L:checked ~ .alpha-bar label[for="alpha-L"],
#alpha-M:checked ~ .alpha-bar label[for="alpha-M"],
#alpha-N:checked ~ .alpha-bar label[for="alpha-N"],
#alpha-O:checked ~ .alpha-bar label[for="alpha-O"],
#alpha-P:checked ~ .alpha-bar label[for="alpha-P"],
#alpha-Q:checked ~ .alpha-bar label[for="alpha-Q"],
#alpha-R:checked ~ .alpha-bar label[for="alpha-R"],
#alpha-S:checked ~ .alpha-bar label[for="alpha-S"],
#alpha-T:checked ~ .alpha-bar label[for="alpha-T"],
#alpha-U:checked ~ .alpha-bar label[for="alpha-U"],
#alpha-V:checked ~ .alpha-bar label[for="alpha-V"],
#alpha-W:checked ~ .alpha-bar label[for="alpha-W"],
#alpha-X:checked ~ .alpha-bar label[for="alpha-X"],
#alpha-Y:checked ~ .alpha-bar label[for="alpha-Y"],
#alpha-Z:checked ~ .alpha-bar label[for="alpha-Z"] {
  background: #009EF7;
  color: #ffffff;
}

/* Tabulka */
.alpha-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
}
.alpha-table tr:nth-child(odd) { background: #fafafa; }
.alpha-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.alpha-table tr:last-child td { border-bottom: 0; }
.alpha-table .col-country { width: 200px; }
.alpha-table .col-price   { width: 100px; text-align: right; }

.alpha-empty {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #757575;
}

/* Responsívne doladenie */
@media screen and (max-width: 600px) {
  .alpha-label { padding: 6px 8px; font-size: 12px; }
  .alpha-table .col-country { width: 140px; }
  .alpha-table .col-price   { width: 80px; }
}


/* Karta s tabulkou */
.sms-table-card {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

/* Hlavicka karty */
.sms-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #202020;
  color: #fff;
}
.sms-table-header h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}
.sms-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #009EF7;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* Scroll na menších obrazovkách */
.sms-table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* Tabulka */
.sms-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px; /* aby sa hlavicky nelámali na velmi úzkych mobiloch */
  background: #fff;
}

/* Hlavicky */
.sms-table thead th {
  text-align: center;
  padding: 12px 10px;
  font-weight: 600;
  color: #202020;
  background: #f7f7f7;
  border-bottom: 2px solid #f0f0f0;
}
.sms-table thead tr:first-child th {
  background: #eefaf4; /* jemný akcent */
}
.sms-table thead .warn {
  color: #ff4d4f;
  font-weight: 700;
}

/* Telo tabulky */
.sms-table tbody td {
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #353535;
}
.sms-table tbody tr:nth-child(odd) {
  background: #fafafa;
}

/* Hover efekt riadkov */
.sms-table tbody tr:hover {
  background: #f3fffa;
}

/* Zaoblenie spodku pri poslednom riadku */
.sms-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Jemné doladenie na malé displeje */
@media screen and (max-width: 600px) {
  .sms-table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sms-table {
    min-width: 320px;
  }
}

/* menšie, vystredené tlacidlo v kontakte (desktop) */
#contact-form .submit-row { text-align: center; }

#contact-form .btn-cta {
  display: inline-block;
  width: auto;              /* prebijeme bootstrap .form-control { width:100% } */
  min-width: 220px;         /* môžeš upravit podla seba */
  padding: 12px 30px;       /* ladí so .section-btn */
  margin-top: 10px;
  border-radius: 50px;      /* pre istotu, nech je rovnaké ako ostatné */
}

/* na mobile nech je tlacidlo opät na 100% šírku */
@media screen and (max-width: 767px) {
  #contact-form .btn-cta {
    display: block;
    width: 100%;
  }
  #contact-form .submit-row { text-align: inherit; }
}
.iub__us-widget{
	background-color:#FFFFFF;
}


/* Register modal – fullscreen-ish */
.modal.modal-register {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65);
  justify-content: center; align-items: center;
  padding: 24px;
}
.register-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 92vw; max-width: 1000px;
  max-height: 92vh; overflow: auto;
  padding: 24px 22px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  animation: fadeIn .25s ease;
}
.register-content h2 {
  margin: 0 0 6px 0;
}
.register-subtitle {
  color: #757575; margin: 0 0 16px 0;
}

/* Close button */
.close-register {
  position: absolute; top: 14px; right: 18px;
  font-size: 28px; font-weight: 700; color: #666; cursor: pointer;
}

/* Sections & grid */
.reg-section { margin: 18px 0 6px; }
.reg-section h3 { margin: 0 0 10px 0; font-size: 16px; color: #202020; }

.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}
.reg-field label { display: block; font-size: 13px; color: #575757; margin-bottom: 6px; }
.reg-field--wide { grid-column: 1 / -1; }

.reg-form .form-control {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  height: 44px;
  box-shadow: none;
}
.reg-form textarea.form-control { height: auto; }

/* Challenge row */
.challenge-row { display: flex; gap: 12px; align-items: center; }
#challengeText { font-weight: 600; color: #202020; }

/* Terms */
.reg-form .terms { display: inline-flex; align-items: right; gap: 8px; font-size: 13px; }

/* Actions */
.reg-actions { text-align: center; margin-top: 14px; }
.reg-submit { border-radius: 999px; }

/* Honeypot (hidden) */
.hp-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Responsive */
@media (max-width: 768px) {
  .register-content { width: 96vw; padding: 18px 16px 22px; }
  .reg-grid { grid-template-columns: 1fr; }
  .reg-actions { text-align: center; }
}

/* Reuse fadeIn - chybove hlasky pri registracii */
@keyframes fadeIn { from {opacity:0; transform:scale(.98)} to {opacity:1; transform:scale(1)} }

.reg-alert { border-radius: 10px; padding: 10px 12px; margin: 8px 0 12px; font-size: 14px; }
.reg-alert.success { background:#eefaf4; color:#135846; border:1px solid #bfe9d7; }
.reg-alert.error   { background:#ffecec; color:#a60000; border:1px solid #ffb3b3; }
.reg-field input.form-control.error, .reg-field textarea.form-control.error {
  border-color:#ff6b6b; background:#fff7f7;
}

