@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Open-Sans';
  src: url('../fonts/opensans/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

html {
    position: relative;
    min-height: 100%;
}

body {
	font-family: 'Open-Sans', sans-serif;
	overflow-x: hidden;
    color: #0a2c42;
}

a, .link {
    color: #009eff;
    transition: 0.2s;
}
a:hover,
.link:hover {
    text-decoration: none;
    color: #00ffd8;
}

.link {
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding: 0;
}
.link:focus {
    outline: none;
}
.link:active {
    outline: none;
}

p {
	color: #777;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Navbar */

.navbar-default {
    min-height: auto;
    padding: 8px 0;
    color: #009eff;
    background: #fff;
    border-color: transparent;
    box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.6);
    transition: background 0.8s;
}

.navbar-scroll {
    color: #fff;
    background: #009eff;
    background: linear-gradient(12deg, #00ffd8 -20%, #009eff 90%);
}

.navbar-brand-custom {
    display: block;
    width: 172px;
    margin: 0 auto;
    line-height: 0;
    padding-bottom: 8px;
    color: inherit;
}
.navbar-brand-custom:hover {
    color: inherit;
    text-decoration: none;
}

.logo-icon {
    font-size: 2em;
}
[class*=logo-text] {
    font-size: 0.85em;
    font-weight: 500;
    text-transform: uppercase;
}
.logo-text-left {
    letter-spacing: 0.2em;
    padding-left: 1em;
}
.logo-text-right {
    letter-spacing: 0.15em;
    padding-left: 0.05em;
}

.menu-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.3rem;
    cursor: pointer;
}

#main-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    z-index: 50;
    padding: 20px;
    width: 100%;
    overflow-x: auto;
    color: #fff;
    text-align: center;
    background: #0a2c42; /*#27536d #1a3c52 #0a2c42*/
    transition: right 0.5s;
}
@media (min-width: 768px) {
    #main-menu {
        width: 40%;
        min-width: 240px;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
    }
}
@media (min-width: 992px) {
    #main-menu {
        width: 20%;
    }
}
#main-menu.open
{
    right: 0;
}
.menu-item {
    color: inherit;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.menu-item.active {
    color: #616d75;
    cursor: default;
}

.dimscreen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.6);
}

.contact-form {
    margin-top: 60px;
    position: relative;
}
.contact-form::before {
    content: "";
    height: 2px;
    position: absolute;
    top: -34px;
    right: 0;
    left: 0;
    margin: 0 35%;
    background-color: #2f4a5d;
    border-top: 1px solid #01131d;
}
@media (min-width: 768px) {
    .contact-form {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        padding: 0 1rem;
    }
    .contact-form::before {
        display: none;
    }
}
.contact-form .form-control {
    font-size: 0.85rem;
    color: #ccc;
    border: none;
    background-color: #0c2638;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5),
        inset -1px -1px 0px rgba(100, 100, 100, 0.2);
}
.contact-form .btn {
    color: #fff;
    background-color: #456479;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6), -1px -1px 0 #888;
}
.contact-form .is-invalid {
    background-color: #420a1a;
}

.homepage-cover {
    position: relative;
    height: 100vh;
    /*background: linear-gradient(12deg, #00ffd8 -20%, #009eff 90%);*/
    background-color: #009eff;
    background-image: url(../images/cover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition-property: background-position-y;
    transition-duration: 0.2s;
}

.search-box {
    border-radius: .25rem;
    background: #fff;
    background: rgba(0, 91, 112, 0.75);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #eee;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Input */

.input-invisible {
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
}

.no-spin::-webkit-inner-spin-button, 
.no-spin::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.no-spin {
  -moz-appearance: textfield;
}

.input-clear-btn {
    position: absolute;
    top: 6px;
    right: 9px;
    z-index: 9;
    color: #495057;
    cursor: pointer;
    transition: 0.2s;
}
.input-clear-btn:hover {
    color: inherit;
}

/* Buttons */

.btn {
    cursor: pointer;
}
.btn-primary {
    background: #009eff;
    border-color: #009eff;
}
.btn-primary:hover {
    background: #fff;
    border-color: #009eff;
    color: #009eff;
}
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active {
    background: #009eff;
    border-color: #009eff;
}

.btn-theme {
    background: #009eff;
    background: linear-gradient(12deg, #00ffd8 -20%, #009eff 90%);
}

.page-heading {
    padding: 24px 0;
    background: linear-gradient(12deg, #00ffd8 -20%, #009eff 90%);
}
.page-heading h1 {
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

#layout-content {
    padding: 40px 0;
    box-shadow: inset 0 3px 6px -2px rgba(0,0,0,0.2);
}

/* Cards */

.card {
    width: 100%;
    box-shadow: 0px 2px 8px -1px rgba(0,0,0,.2);
}
[class*=card-img] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.card-img-left {
    height: 100%;
}
.card-img-top {
    padding-top: 66.6%;
}

.card-body {
    position: relative;
    z-index: 9;
    height: 100%;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    background: #fff;
    box-shadow: 0 -5px 10px -5px rgba(0,0,0,.2);
}

.card-title {
    color: #009eff;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 0.65rem;
}

.card-flags {
    display: block;
    position: absolute;
    top: 0.8rem;
    left: -0.5rem;
    min-width: 3rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.card-flag {
    display: table;
    padding: .3rem 0.6rem;
    background: #009eff;
    border-radius: calc(0.25rem - 1px);
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,.2);
    margin-bottom: 0.8rem;
    cursor: default;
}

.card-slide {
    position: absolute;
    bottom: 0;
    z-index: 0;
    text-align: center;
    padding: 0.2em 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 10px -5px rgba(0,0,0,.2);
    transition: bottom .3s;
}

.card-slide .link {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
}

.card-slide .link i {
    font-size: 1.6rem;
    vertical-align: sub;
}

.card:hover .card-slide {
    bottom: 100%;
}
.card:hover .card-body {
    box-shadow: none;
}
.card:hover .card-body::before {
    content: "";
    border-top: 1px solid #bbb;
    position: absolute;
    width: 80%;
    top: 0;
    left: 10%;
}

.img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ratio-8-5 {
    padding-top: 62.5%;
}

.gallery-image-container {
    padding-top: 62.5%;
    border-radius: .25rem;
    overflow: hidden;
    position: relative;
    background-color: #ddd;
}

.gallery-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.gallery-switch {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    cursor: pointer;
    transition: background 0.4s;
}

.gallery-switch i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.gallery-switch:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-switch.prev {
    left: 0;
}
.gallery-switch.next {
    right: 0;
}

.gallery-thumbnail {
    padding-top: 100%;
    margin-top: 30px;
    border-radius: .25rem;
    cursor: pointer;
}
.gallery-thumbnail.active {
    cursor: default;
}

#toggleFilter {
    display: none;
}

.aside {
    border: 1px solid #009eff;
    border-radius: .25rem;
    padding: 1.25rem;
}
@media (max-width: 991.98px) {
	#catalog_filter {
        position: fixed;
        top: 56px;
        bottom: 0;
        right: 100%;
        left: -100%;
        z-index: 10;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.98);
        transition: all 0.5s;
	}
    #catalog_filter.open {
        right: 0;
        left: 0;
    }
    
    #toggleFilter {
        display: block;
        position: fixed;
        bottom: 4%;
        left: 6%;
        z-index: 30;
        padding: 10px;
        line-height: 0;
        border-radius: 100%;
        background-color: rgb(238, 238, 238, 0.9);
        box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.3);
    }
    #toggleFilter i {
        font-size: 28px;
        width: 28px;
        padding-left: 3px;
    }
}

.scroll-to-top {
    display: inline-block;
    padding: 0 6px;
    float: right;
    font-size: 0.8rem;
    border: 1px solid #fff;
    border-radius: .25rem;
}

#layout-footer {
    position: absolute;
    bottom: 0;
    z-index: 9;
    width: 100%;
	color: #fff;
	padding: 8px 0;
	background: #0a2c42;
    box-shadow: 0 -3px 6px -2px rgba(0,0,0,0.3);
}

#layout-footer a {
    color: inherit;
}
#layout-footer a:hover {
    color: inherit;
}

.contact-icons {
    margin: -6px 0;
    font-size: 28px;
}
.contact-icons a {
	display: inline-block;
    padding: 0 4px;
}

.help-dialog {
    position: fixed;
    bottom: 0;
    right: 10%;
    z-index: 10;
    color: #fff;
    width: 250px;
    padding: 0.65rem 0.85rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.hotline {
    position: fixed;
    bottom: -100%;
    left: 6%;
    z-index: 40;
    width: 310px;
    height: 310px;
    background: #fffaf4;
    /*background: #eaeaea;*/
    border-radius: 100%;
    box-shadow: 4px 1px 6px rgba(0, 0, 0, 0.3),
        inset 8px 2px 20px rgba(0, 0, 0, 0.1);
    transition: bottom 0.8s;
}
.hotline.show {
    bottom: -24px;
}
.hotline-avatar {
    background-image: url(../images/avatar.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    bottom: 0;
    left: -24px;
    width: 140px;
    height: 250px;
}
.hotline-content {
    position: absolute;
    right: 55px;
    top: 50%;
    width: 150px;
    transform: translate(0, -56%);
}
.hotline-close {
    position: absolute;
    top: 25px;
    right: 38px;
    padding: 0 8px;
    font-size: 1.1rem;
    border-radius: 100%;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

/* CMS styles */

.fr-emoticon {
  font-size: inherit;
  height: 3ex;
  width: 3.1ex;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -.2ex .15em .2ex;
  line-height: normal;
  vertical-align: middle;
}

.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
    background: #009eff !important;
}

/* Date Range Picker */

#dateRangePicker {
    background-color: #fff;
}

@media (max-width: 767.98px) {
    .daterangepicker {
        position: fixed;
        top: 56px;
        bottom: 0;
        right: 100%;
        left: -100%;
        width: auto;
        padding: 18px 4px;
        overflow-x: auto;
        border-radius: 0;
        border: none;
        margin: 0;
        transition-property: right, left;
        transition-duration: 0.5s;
    }
    .daterangepicker.dropdown-menu {
        z-index: 20;
    }
    .daterangepicker.open {
        right: 0;
        left: 0;
    }
    .daterangepicker .calendar {
        margin: 0 auto 18px;
    }
    .daterangepicker .calendar-table {
        padding: 0;
        border: none;
        overflow: hidden;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    }
}

@media (min-width: 564px)
{
    .daterangepicker.ltr .calendar.left .calendar-table {
        margin-right: 12px;
        padding-right: 0;
        border-radius: 4px;
    }
    .daterangepicker.ltr .calendar.right .calendar-table {
        border-radius: 4px;
    }
}

.daterangepicker table {
    width: 100.5%;
}

.calendar thead tr:nth-child(1) th {
    background: #009eff;
    border-radius: 0;
    font-weight: 400;
    color: #fff;
    cursor: default;
}

.calendar thead tr:nth-child(2) th {
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: #009eff;
    border-bottom: 1px solid;
    cursor: default;
}

.calendar .prev
.calendar .next {
    cursor: pointer;
}
.calendar .prev:hover
.calendar .next:hover {
    color: #009eff;
}

.calendar tbody {
    font-size: 0.85rem;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #009eff;
}

.daterangepicker td.in-range {
    background-color: #dcecf7;
}

.daterangepicker .input-mini.active {
    border: 1px solid #009eff;
}

/* Theme */

.theme-green {
    color: #36ffac;
    color: #00ffc2;
    color: #00ffd8;
}
.theme-green-bg {
    background-color: #00ffd8;
}

.theme-blue {
    color: #009eff;
}

.theme-gradient {
    background: #009eff;
    background: linear-gradient(12deg, #00ffd8 -20%, #009eff 90%);
}

.cursor-default {
    cursor: default;
}

.strike-through {
    text-decoration: line-through;
    color: #777;
}

@media (min-width: 768px) {
	.mobile {
		display: none !important;
	}
}
@media (max-width: 767.98px) {
	.desktop {
		display: none !important;
	}
}
