/* HERO HOME */

.tm-parallax-teaser-images-top > img.uk-float-right {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}

.tm-parallax-teaser-images-bottom > img.uk-float-left {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}

.tm-parallax-teaser-images-bottom > img.uk-float-right {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}

.tm-parallax-teaser-headline {
display: inline-block;
padding: 5px 10px;
background: rgba(7, 92, 151, 0.7);
color: #ffffff;
line-height: 65px;
font-weight: bold;
font-size: 65px;
-webkit-animation: Parallax-FadeIn;
animation: Parallax-FadeIn;
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
}

.tm-parallax-teaser-caption {
display: inline-block;
margin-top: 5px;
padding: 5px 10px;
background: rgba(0, 0, 0, 0.7);
color: #ffffff;
line-height: 25px;
font-size: 25px;
-webkit-animation: Parallax-FadeIn;
animation: Parallax-FadeIn;
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
}

.tm-parallax-teaser-images-top {
margin-bottom: 50px;
-webkit-animation: Parallax-ScaleUpTop;
animation: Parallax-ScaleUpTop;
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}

.tm-parallax-teaser-images-bottom {
margin-top: 50px;
-webkit-animation: Parallax-ScaleUpBottom;
animation: Parallax-ScaleUpBottom;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}



/* LANGUAGE FLAGS */

li.lang-item {
    display: inline;
    padding-right: 10px;
}

li.lang-item img {
    width: 25px;
}




/* CONTACT FORM FLUENT FORM */


/*
form#fluentform_1 .ff-el-input--label {
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
}


.fluentform input.ff-el-form-control, .fluentform select.ff-el-form-control {
    height: 25px;
    font-size: 15px;
    text-indent: 5px;
    background: none;
    border-bottom: 1px solid #f0f0f0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
	color: #fff;
	-webkit-appearance: none;
}

.fluentform textarea.ff-el-form-control {
    border: 1px solid #f0f0f0;
    background: none;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-family: Comfortaa;
    padding: 10px;
    border-radius: unset;
}

.fluentform .ff-el-group {
    margin-bottom: 60px;
}

.gili-submit.el-content.uk-button.uk-button-danger {
    padding: 10px 0px;
    border-radius: unset;
}

.fluentform .ff-el-is-error .ff-el-form-control {
    border-color: #f4382b;
}

.fluentform .text-danger {
    color: #f4382b;
}

.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
    content: " *";
    color: #fff;
    margin-left: 3px;
}

.ff-message-success {
    margin-bottom: 30px;
    color: #fff;
    border: 1px solid #fff;
}

.ff-message-success p {
    margin: 0px;
}
*/






/* CHECKBOX STYLING */

.tml .tml-label {
	font-size: 20px;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type="checkbox"],
  input[type="radio"] {
    --active: #275efe;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: #bbc1e1;
    --border-hover: #275efe;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type="checkbox"]:after,
  input[type="radio"]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease),
      opacity var(--d-o, 0.2s);
  }
  input[type="checkbox"]:checked,
  input[type="radio"]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type="checkbox"]:disabled,
  input[type="radio"]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type="checkbox"]:disabled:checked,
  input[type="radio"]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type="checkbox"]:disabled + label,
  input[type="radio"]:disabled + label {
    cursor: not-allowed;
  }
  input[type="checkbox"]:hover:not(:checked):not(:disabled),
  input[type="radio"]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type="checkbox"]:focus,
  input[type="radio"]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type="checkbox"]:not(.switch),
  input[type="radio"]:not(.switch) {
    width: 21px;
  }
  input[type="checkbox"]:not(.switch):after,
  input[type="radio"]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type="checkbox"]:not(.switch):checked,
  input[type="radio"]:not(.switch):checked {
    --o: 1;
  }
  input[type="checkbox"] + label,
  input[type="radio"] + label {
    font-size: 20px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px!important;
  }
  input[type="checkbox"]:not(.switch) {
    border-radius: 7px;
  }
  input[type="checkbox"]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type="checkbox"]:not(.switch):checked {
    --r: 43deg;
  }
  input[type="checkbox"].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type="checkbox"].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type="checkbox"].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type="checkbox"].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  input[type="radio"] {
    border-radius: 50%;
  }
  input[type="radio"]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type="radio"]:checked {
    --s: 0.5;
  }
}



/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
    border-bottom: 1px dotted #d0d0d0;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

h2.hostinghead {
	text-transform: unset;
}

