/* CUSTOM FONTS */
/*

@font-face {  
        font-family: 'pf_cosmonutbold';
    src: url('../fonts/pfcosmonut-bold-webfont.eot');
    src: url('../fonts/pfcosmonut-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/pfcosmonut-bold-webfont.woff2') format('woff2'),
         url('../fonts/pfcosmonut-bold-webfont.woff') format('woff'),
         url('../fonts/pfcosmonut-bold-webfont.ttf') format('truetype'),
         url('../fonts/pfcosmonut-bold-webfont.svg#pfcosmonut-bold-webfont') format('svg');
    font-weight: normal;
    font-style: normal;  
 }
*/

/*
@font-face {
    font-family: 'salonikia_vkfregular';
    src: url('../fonts/salonikiavkf-gili.eot');
    src: url('../fonts/salonikiavkf-gili.eot?#iefix') format('embedded-opentype'),
         url('../fonts/salonikiavkf-gili.woff2') format('woff2'),
         url('../fonts/salonikiavkf-gili.woff') format('woff'),
         url('../fonts/salonikiavkf-gili.ttf') format('truetype'),
         url('../fonts/salonikiavkf-gili.svg#salonikia_vkfregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
*/

/* CONTACT FORM */

span.wpcf7-form-control-wrap input {
    height: 25px;
    font-size: 15px;
    text-indent: 5px;
}

span.wpcf7-form-control-wrap.your-message textarea.wpcf7-form-control.wpcf7-textarea {
    border: 0.4px solid #ddd;
}

.gili-submit {
    text-align: center;
}

.gili-submit.uk-button.uk-button-primary {
    width: 100%;
    background: linear-gradient(0deg, rgba(111,29,25,1) 0%, rgba(95,21,16,1) 94%, rgba(103,25,20,1) 97%, rgba(133,43,37,1) 98%, rgba(133,43,37,1) 100%);
}

.gili-submit.uk-button.uk-button-primary:hover {
    background: linear-gradient(180deg, rgba(111,29,25,1) 0%, rgba(95,21,16,1) 94%, rgba(103,25,20,1) 97%, rgba(133,43,37,1) 98%, rgba(133,43,37,1) 100%);
}

.gili-submit input.wpcf7-form-control.wpcf7-submit:hover {
    transform: scale(1.3);
    transition: all .25s;
}

input.wpcf7-form-control.wpcf7-submit {
/*     border-radius: unset; */
    border: none;
    width: 90%;
    background: none;
    line-height: 45px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
	font-family: 'Roboto Condensed';
	font-weight: 700;
	cursor: pointer;
	box-shadow: unset;
	transition: all .25s;
}

input.wpcf7-form-control.wpcf7-submit:hover {
    background: none;
}


@media only screen and (max-width: 641px){
	
	.gilicontact h5 {
    margin-top: 30px;
    margin-bottom: 10px;
}
	.gilicontact p {
    margin-top: 0px;
}
	
}





/* MOBILE RECAPTCHA RESIZE */

@media only screen and (max-width: 960px){
.page-id-354 .grecaptcha-badge {transform:scale(0.8);-webkit-transform:scale(0.8);transform-origin:0 0;-webkit-transform-origin:0 0; max-width: 240px; margin: 0 auto;}
}

/* HIDE RECAPTCHA */
/* Hides the reCAPTCHA on every page */
.grecaptcha-badge {
    display: none !important;
}

/* Shows the reCAPTCHA on the Contact page */
.page-id-354 .grecaptcha-badge {
    display: block !important;
}






/* 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;
  }
}




/* TOOLBAR */

.tm-toolbar {
    background: rgb(111,29,25);
    background: linear-gradient(180deg, rgba(111,29,25,1) 0%, rgba(95,21,16,1) 90%, rgba(103,25,20,1) 91%, rgba(133,43,37,1) 92%, rgba(133,43,37,1) 100%);
    padding: 15px 0px;
}


/* FOOTER */

.footerback {
	background: rgb(111,29,25);
background: linear-gradient(0deg, rgba(111,29,25,1) 0%, rgba(95,21,16,1) 94%, rgba(103,25,20,1) 97%, rgba(133,43,37,1) 98%, rgba(133,43,37,1) 100%);
}


/* TEXT CONTAINER */

.textcontainer .uk-tile-primary {
    border: 5px solid #fff;
    border-radius: 5px;
    background: repeat;
}

.textcontainer .uk-tile-primary .uk-tile {
    background: repeat;
    color: #5c0000;
}


/* HEADER LOGO */

.uk-logo img {
    filter: drop-shadow(2px 4px 2px black);
}


/* ERGA */

.erga h4.el-title {
    text-transform: uppercase;
    font-weight: 700;
}

.erga .el-content {
    color: #fff;
    font-size: 14px;
}

.erga .el-meta {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}


/* MENU */

.uk-navbar-nav>li>a:hover {
    color: #efbe58;
    background: #00000040;
}

.uk-navbar-nav>li.uk-active>a {
    background-color: #FFFF08;
    color: #000;
    background-origin: border-box;
    background-image: -webkit-linear-gradient(top, #FFFF62, #C5B500);
    background-image: linear-gradient(to bottom, #FFFF62, #C5B500);
}