/*
Theme Name: XPadel
Theme URI: https://ideaspublicity.com/themes/xpadel/
Description:  This is a really simple theme who tries to create a really easy to manipulate and use for developers. In it's first version only edits the main page and adds styles to the login page. For more details or new versions please visit https://ideaspublicity.com/themes/soon/ or contact Erick Rubio at admin@ideaspublicity.com.
Version: 0.1
Author: Erick Rubio
Author URI: https://ideaspublicity.com
Tags: coming soon, landing page, maintenance theme, easy to use, single page, material design, responsive
*/

/* Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption,
figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
 margin:0;
 padding:0;
 border:0;
 outline:0;
 font-size:100%;
 vertical-align:baseline;
 background:transparent;
}
body {
 line-height:1;
}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section {
 display:block;
}
nav ul {
 list-style:none;
}
blockquote, q {
 quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
 content:'';
 content:none;
}
a {
 margin:0;
 padding:0;
 font-size:100%;
 vertical-align:baseline;
 background:transparent;
}
ins {
 background-color:#ff9;
 color:#000;
 text-decoration:none;
}
mark {
 background-color:#ff9;
 color:#000;
 font-style:italic;
 font-weight:bold;
}
del {
 text-decoration: line-through;
}
abbr[title], dfn[title] {
 border-bottom:1px dotted;
 cursor:help;
}
table {
 border-collapse:collapse;
 border-spacing:0;
}
hr {
 display:block;
 height:1px;
 border:0;
 border-top:1px solid #b6b6b6;
 margin:1em 0;
 padding:0;
}
input, select {
 vertical-align:middle;
}

/* General */
a{
	color: #bdbdbd;
	text-decoration: none;
}
a:hover{
  color: #ff0da5;
  cursor: pointer;
}
body, html{
  background-color: #fff;
  background: url(img/bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #212121;
  font-family: 'Poppins', sans-serif;
	font-size: 14px;
  font-weight: 400;
	margin: 0 auto;
	width: 100%;
}
h1, h2, h3, h4, h5 ,h6{
  line-height: 1.6em;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}
h1{
  font-size: 2.8em;
}
h2{
  font-size: 2.2em;
}
h3{
  font-size: 1.8em;
}
h4{
  font-size: 1.5em;
}
h5{
  font-size: 1.2em;
}
h6{
  font-size: 1.1em;
}
img{
  height: auto;
	vertical-align: middle;
	width: 100%;
}
p{
  line-height: 1.7em;
  margin-top: 24px;
  text-align: left;
}
.desktop{
  display: none;
}
.hover, a{
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.left{
  float: left;
}
.right{
  float: right;
}

/* ===== Padel Menu ===== */

/* ===== Container ===== */
.padel-nav{
  padding: 48px 0;
  background: transparent;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}
.padel-nav__inner{
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  justify-content: space-between;
  background: linear-gradient(135deg, #0A0F1F 0%, #0C1C3A 40%, #1A3E6E 100%);
  border: 1px solid #1a243b;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}

/* ===== Search ===== */
.padel-nav__search{
  flex: 0 0 240px;
}
.padel-nav__search input{
  width: 100%;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #1a243b;
  background: #0b1326;
  color: #F5F9FF;
  padding: 0 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.padel-nav__search input::placeholder{ color: #4A6FA5; }
.padel-nav__search input:focus{
  border-color: #00E0FF;
  box-shadow: 0 0 0 3px rgba(0,224,255,0.15);
}

/* ===== Nav Links ===== */
.padel-nav__links{
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.padel-btn{
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #0070F3;
  color: #F5F9FF;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .85rem; font-weight: 600;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.padel-btn:hover,
.padel-btn:focus{
  border-color: #00E0FF;
  background: rgba(0,224,255,0.12);
  box-shadow: 0 0 12px rgba(0,224,255,0.28);
  outline: none;
}
.padel-btn:active{ transform: translateY(1px); }

/* Logout variant */
.padel-btn--logout{
  border-color: #00E0FF;
}
.padel-btn--logout:hover,
.padel-btn--logout:focus{
  background: rgba(0,224,255,0.16);
}

/* ===== Icon Buttons ===== */
.icon-profile,
.icon-settings,
.icon-login,
.icon-logout {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  text-transform: none;
  font-size: 0;
  position: relative;
  border: 1px solid #0070F3;
  color: #F5F9FF;
  background: transparent;
  transition: all 0.25s ease;
}
.icon-profile:hover,
.icon-settings:hover,
.icon-login:hover,
.icon-logout:hover {
  border-color: #00E0FF;
  box-shadow: 0 0 8px rgba(0,224,255,.4);
}

/* Icon pseudo-elements */
.icon-profile::before,
.icon-settings::before,
.icon-login::before,
.icon-logout::before {
  font-size: 18px;
  line-height: 1;
  content: '';
}

.icon-profile::before { content: '👤'; }
.icon-settings::before { content: '⚙️'; }
.icon-login::before { content: '🔑'; }
.icon-logout::before { content: '⎋'; }

/* Tooltip (optional) */
.padel-btn[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -28px;
  font-size: 12px;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 4px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .padel-nav__search{ flex-basis: 180px; }
}
@media (max-width: 640px){
  .padel-nav__inner{ gap: 8px; padding: 8px; }
  .padel-nav__search{ flex: 1 1 100%; }
  .padel-nav__links{ width: 100%; justify-content: center; }
}

/* buttons */
.button{
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #0070F3;
  box-shadow: none;
  box-sizing: border-box;
  color: #F5F9FF;
  font-size: .8em;
  margin-top: 12px;
  padding: 12px 18px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
}
.main-buttons{
  margin: 0 auto;
  margin-top: 36px;
  text-align: center;
  width: 320px;
}
.main-buttons .button{
  width: 45%;
}
.main-buttons .right{
  background-color: #0070F3;
  border: 1px solid #0070F3;
  color: #F5F9FF;
}
.main-buttons .center{
  float: none;
  margin: 0 auto;
}
.button:hover, .button:active, .button:focus{
  border: 1px solid #0A0F1F;
  box-shadow: 2px 2px 2px 2px rgba(99, 99, 99, 0.1);
  color: #f1f2f3;
}
.hvr-sweep-to-right{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0A0F1F;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* content */
.content{
  margin: 0 auto;
  max-width: 960px;
  padding: 36px;
}
.content h1{
  color: #F5F9FF;
  font-size: 2.2em;
  padding-top: 6px;
}
.content p{
  color: #F5F9FF;
  margin-top: 12px;
  text-align: center;
}
.content .logo{
  margin: 0 auto;
  max-width: 280px;
  width: 80%;
}
.dashlink{
  font-size: .85em;
  position: absolute;
  right: 24px;
  text-align: center;
  text-transform: uppercase;
  top: 24px;
}
.dashlink a{
  padding: 0 12px;
}

/* footer */

/* grids */
.full{
  margin: 0;
	width: 100%;
}
.span2, .span3, .span4, .span6, .span8, .span9, .span10, .span12{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 100%;
}

/* header */

/* images */
img.alignright{
  float:right;
  margin: -70px 0 1em 1em;
}
img.alignleft{
  float:left;
  margin:0 1em 1em 0;
}
a img.alignright{
  float:right;
  margin:-65px 0 1em 1em;
}
a img.alignleft{
  float:left;
  margin:0 1em 1em 0;
}
img.aligncenter, a img.aligncenter, a img.alignnone{
  display: block;
  margin: 20px auto 0 auto;
  max-width: 100%;
  width: auto;
}
.wp-caption{
  border: 1px solid #eef;
  height: auto;
  margin: 20px auto 0 auto;
  max-width: 100%;
  width: auto;
}
.wp-caption img{
  height: auto;
  max-height: 100%;
}
.wp-caption-text{
  background: #eef;
  color: #727272;
  font-size: .7em;
  font-style: italic;
  padding: 10px;
  text-align: center;
}

/* menu */

/* page */

/* video */
.videowrapper {
  position: relative;
  padding-bottom: 59.4%;
  height: 0;
}
.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media print{
  *{
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  @page{
    margin: 0.5cm;
  }
  h2, h3{
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
  p{
    orphans: 3;
    widows: 3;
  }
  pre, blockquote{
    border: 1px solid #808080;
    page-break-inside: avoid;
  }
  abbr[title]:after{
    content: " (" attr(title) ")";
  }
  a, a:visited{
    text-decoration: underline;
  }
  a[href]:after{
    content: " (" attr(href) ")";
  }
  a[href^="javascript:"]:after, a[href^="#"]:after{
    content: "";
  }
  img{
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  thead{
    display: table-header-group;
  }
  tr{
    page-break-inside: avoid;
  }
}

@media screen and (min-width: 480px){
  .content{
    padding: 48px;
  }
  .span3{
    width: 50%;
  }
}

@media screen and (min-width: 720px){
  body{
    font-size: 15px;
  }
  .content{
    padding: 5%;
  }
  .span2{
    width: 16.6666667%;
  }
  .span4{
    width: 33.3333333%;
  }
  .span6{
    width: 50%;
  }
  .span8{
    width: 66.6666666%;
  }
  .span9{
    width: 75%;
  }
  .span10{
    width: 83.3333333%;
  }
}

@media screen and (min-width: 960px){
  body{
    font-size: 17px;
  }
    .desktop{
    display: inline-block;
  }
  .local-switch{
  background: rgba( 255, 255, 255, .8);
  border-radius: 48px;
  display: inline-block !important;
  left: 24px;
  padding: 18px;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 40%;
  z-index: 99;
  width: 72px;
  }
  .local-switch.right{
    left: auto;
    right: 24px;
  }
  .local-switch div a:hover{
    opacity: .5;
  }
  .local-switch div a span{
    display: inline-block;
    font-size: .7em;
    margin-top: 9px;
  }
  .local-switch .cloud{
    padding: 18px 0 6px 0;
  }
  .local-switch .local{
    padding: 6px 0 18px 0;
  }
  .mobile{
    display: none;
  }
  .span3{
    width: 25%;
  }
}

@media screen and (min-width: 1440px){

}

/* clearfix */

.cf:before, .cf:after{
    content:"";
    display:table;
}
.cf:after{
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */

.cf{
  *zoom: 1;
}

*{
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
*:focus{
  outline: 0;
}

#bitnami-banner{
  display: none !important;
}
