/*-------------------------------*/
/*             Font              */
/*-------------------------------*/

@font-face {
    font-family: Mr_Eaves;
    src: url('../fonts/mreavesxlmodot-reg-webfont.eot');
    src: url('../fonts/mreavesxlmodot-reg-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/mreavesxlmodot-reg-webfont.woff2') format('woff2'),
    url('../fonts/mreavesxlmodot-reg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Mr_Eaves_bold;
    src: url('../fonts/MrEavesXLModOT-Bold.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Mr_Eaves_book;
    src: url('../fonts/MrEavesXLModOT-Book.otf');
    font-weight: normal;
    font-style: normal;
}


strong {
    font-family: Mr_Eaves_bold sans-serif;
}

.lead {
    font-family: Mr_Eaves_book;
}

/*-------------------------------*/
/*          List group           */
/*-------------------------------*/

.list-group-item,
.list-group-item:last-child,
.list-group-item:first-child
{
    border-radius: unset;
    border: none;
    padding: unset;
}

.list-group-item-heading{
    background-color: #FFF;
    border: 1px solid #898989;
    border-bottom: unset;
    color: #3f3f3f;
    margin: unset;
    padding: 15px 10px;
    font-weight: 500;
}
.list-group-item > a > div:first-child:last-child{
    border: 1px solid #898989;
    color: #868686;
}

.list-group-item-text{
    padding: 10px 10px;
    background-color: #363636;
    border: 1px solid #e15754;
    color: #FFF;
    text-transform: uppercase;
}

.list-swipe { overflow: hidden; }

.list-swipe .col-xs-12,
.list-swipe .col-xs-10{
    transition: width linear 200ms;
}

.list-swipe .list-group-item {
    position: relative;
    display: table;
    width: 100%;
    background: #FFF;
    margin-top: 5px;
}

.list-swipe .list-group-item > div {
    padding: 10px;
}

.list-swipe .list-group-item .action {
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    border: 0;
    color: #FFF;
    outline: none;
    text-align: center;
}

.list-swipe .list-group-item .action:first-child::before,
.list-swipe  .list-group-item .action:last-child::before {
    position: absolute;
    top: 0;
    content: '';
    width: 2000px;
    height: 100%;
}

.list-swipe .list-group-item .action:first-child { left: -100px; }
.list-swipe .list-group-item .action:first-child::before { right: 100px; }
.list-swipe .list-group-item .action:last-child { right: -100px; }
.list-swipe .list-group-item .action:last-child::before { left: 100px; }

.list-swipe .list-group-item .action,
.list-swipe .list-group-item .action::before { background: #363636; }

.list-swipe .btn-edit{
    padding: 0;
    margin-top: 19px;
    font-size: 24px;
    line-height: 1;
}

    /*-------------------------------*/
/*         Inputs styles         */
/*-------------------------------*/

/*form .btn-link {*/
    /*font-size: .9em;*/
/*}*/

.control-label {
    font-weight: 500;
    font-size: .9em;
}

.form-control {
    border-color: #898989;
    border-radius: unset;
}

.form-inline {
    display: inline-block;
}

.form-group {
    margin-bottom: 0;
}

.checkbox-grey input[type="checkbox"]{
    background-color: #fff;
}

.checkbox-grey, .radio {
    background-color: #d7d7d7;
    padding: 10px;
}

.checkbox-grey label {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: .8em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-grey label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #FFF;
    border: 1px solid #c2c2c2;
}

/* On mouse-over, add a grey background color */
.checkbox-grey label:hover input ~ .checkmark {
    background-color: #FFF;
}

/* When the checkbox is checked, add a blue background */
.checkbox-grey label input:checked ~ .checkmark {
    background-color: #e15754;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-grey label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-grey label .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-rounded {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    background: #eebdb4;
    border-radius: 50%;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    color: #919191;
    padding: 5px;
    -webkit-transition: background-color 1s, border-color 1s, color 1s; /* Safari */
    transition: background-color 1s, border-color 1s, color 1s;
    transition-timing-function: ease;
}

.checkbox-rounded input{
    display: none;
}
.checkbox-rounded label{
    width: 100%;
    text-align: center;
    padding-left: 0;
    line-height: 1.9em;
}

.checkbox-rounded.checked {
    background-color: #FFF;
    border: solid 1px #e15754;
    color: #303130;
}

input.input-outline {
    display: inline-block;
    color: #303130;
    background-color: #FFF;
    border: solid 1px #e15754;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 5px;
    margin: 5px;
    overflow: auto;
    text-align: center;
}

.select-outline {
    color: #303130;
    background-color: #FFF;
    border: solid 1px #e15754;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    overflow: visible;
}

.select-outline select,
.select-outline select:focus,
.select-outline select:active,
.select-outline select:active:focus
{
    text-transform: uppercase;
    border: none;
    outline: unset;
    background: unset;
    padding: 0;
    width: 41px;
    height: 28px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-appearance: listbox;
}


/*-------------------------------*/
/*         Texts styles          */
/*-------------------------------*/

.text-colored {
    color: #e15754;
}

/*-------------------------------*/
/*       Buttons styles          */
/*-------------------------------*/

.btn-default:focus,
.btn-default:active,
.btn-default:active:focus,
.btn-link:focus,
.btn-link:active,
.btn-link:active:focus,
.btn-outline:focus,
.btn-outline:active,
.btn-outline:active:focus {
    outline: unset;
    text-decoration-line: unset;
}

.btn-default {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #e15754;
    border-color: #e1413e;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 5px;
    line-height: 4.4em;
    -webkit-transition: background-color 200ms, border-color 200ms, color 200ms, font-weight 200ms; /* Safari */
    transition: background-color 200ms, border-color 200ms, color 200ms, font-weight 200ms;
    transition-timing-function: ease;
}

.btn-default:disabled,
.btn-default.disabled{
    color: #8e8e8e;
    background-color: #e1e1e1;
    border-color: #ccc;
}

.btn-default:active,
.btn-default:active:hover,
.btn-default.active{
    color: #e15754;
    font-weight: bold;
    background-color: unset;
    border-color: #e1413e;
}

.btn-default:focus,
.btn-default:hover,
.btn-default:focus:active{
    color: #FFFFFF;
    background-color: #e15754;
    border-color: #e1413e;
}

.btn-danger {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #D95350;
    border-color: #D43F3E;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 5px;
    line-height: 4.4em;
}

.btn-outline{
    text-transform: capitalize;
    color: #303130;
    background-color: #FFF;
    border: solid 1px #e15754;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 5px;
    line-height: 1.9em;
    -webkit-transition: background-color 1s, border-color 1s; /* Safari */
    transition: background-color 1s, border-color 1s;
    transition-timing-function: ease;
}


.btn-outline.not-active,
.btn-outline[not-active] {
    border: 1px solid transparent;
    background: #eebdb4;
    color: #919191;
}

.btn-outline.btn-lg {
    width: 83px;
    height: 83px;
    padding: 5px;
    font-size: 1.1em;
}

.btn-outline.btn-xlg {
    width: 120px;
    height: 120px;
    padding: 5px;
    font-size: 1.2em;
}

/*-------------------------------*/
/*          Main header          */
/*-------------------------------*/

.main-header {
    padding-bottom: 0;
    margin: 0;
    border-bottom: 1px solid #dadada;
    background-color: #FFF;
    margin-bottom: 15px;
}

.main-header img,
.main-header .btn{
    height: 40px;
    margin: 10px auto;
}

/*-------------------------------*/
/*        Body backgrounds       */
/*-------------------------------*/

.bg-aromatech-main {
    background: url("../img/bg_aromatech.jpg") #f2f2f2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 0px;
}

.bg-fragrance {
    position: fixed;
    top: 413px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-position: center 75%;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .bg-fragrance {
        top: 420px;
    }
}


/*-------------------------------*/
/*            Footer             */
/*-------------------------------*/

#page-content-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

#page-content-wrapper .container {
    width: 100%;
}

.spacer {
    flex: 1;
}

.footer{
    height: 96px;
    background: url("../img/bg_footer.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}

.footer p {
    text-align: center;
    position: relative;
    bottom: -60px;
    font-size: 0.9em;
}

.footer.footer-grey {
    -webkit-filter: grayscale(100%);
    filter: gray;
}

/*-------------------------------*/
/*            DAYS               */
/*-------------------------------*/

.col-fix-300 {
    width: 304px;
}

.hours .col-xs-6:first-child {
    border-right: solid 1px #363636;
}

/*-------------------------------*/
/*          Intensity            */
/*-------------------------------*/

.intensity {
    width: 250px;
    height: 250px;
    background-color: #e15754;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    font-size: 2em;
    font-weight: 300;
    color: white;
    zoom: 0.7;
}

.intensity p,
.intensity small {
    font-size: .6em;
}


.intensity > .intensity-content {
    text-align: center;
    padding-top: 30px;
}

.intensity-footer {
    position: relative;
    bottom: -12px;
    width: 250px;
    height: 125px;
    -webkit-border-radius: 50% / 0 0 100% 100%;
    border-radius: 50% / 0 0 100% 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to bottom, rgba(161, 62, 60, 1), rgba(161, 62, 60, 1));
    background-position: top, bottom;
    background-size: 100% 20%, 100% 80%;
    background-repeat: no-repeat;
    border: none;
    z-index: 2;
    font-family: Mr_Eaves_book;
}

.intensity-footer.fixed {
    position: absolute;
    bottom: 0px;
}

.intensity-shadow {
    position: absolute;
    bottom: -31px;
    margin-left: -38px;
    width: 326px;
    height: 163px;
    -webkit-border-radius: 50% / 0 0 100% 100%;
    border-radius: 50% / 0 0 100% 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to bottom, rgba(225, 87, 84, 0.3), rgb(225, 87, 84, 0.3));
    background-position: top, bottom;
    background-size: 100% 20%, 100% 80%;
    background-repeat: no-repeat;
    z-index: 1;
}


.intensity-footer:focus,
.intensity-footer:active,
.intensity-footer:focus:active {
    outline: unset;
    color: white;
}


.intensity .btn-link,
.intensity .btn-link:focus
.intensity .btn-link:active
.intensity .btn-link:focus:active{
    font-size: 1.4em;
    font-weight: 300;
    color: white;
    text-decoration: unset;
}


.intensity .btn-outline {
    color: #303130;
}

.intensity .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 100%;
}

/*-------------------------------*/
/*          Body header          */
/*-------------------------------*/
.navbar-brand {
    height: 65px;
    padding: 15px 22px;
}

.navbar-toggle {
    margin-top: 15px;
    border: none;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #FFF;
    background-color: #e15754;
}

.bg-dark {
    color: #fff;
    background-color: #1a1a1a;
}

.bg-light {
    color: #1a1a1a;
    background-color: #fff;
}

.btn-link.green {
    color: #e15754;
    text-decoration: none;
}

.btn-link.green:focus {
    color: #e13b36;
    outline: none;
}

.btn-group-xlg > .btn, .btn-xlg {
    padding: 10px 16px;
    font-size: 50px;
    line-height: 1.3333333;
}

/************************************/

body {
    position: relative;
    font-family: Mr_Eaves;
}
body,
html {
    height: 100%;
    overflow-x: hidden;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#wrapper.toggled #page-content-wrapper {
    /*position: absolute;*/
    /*margin-right: -220px;*/
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative;
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
    -moz-transition:  width .2s ease-in;
    -ms-transition:  width .2s ease-in;
    transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #1a1a1a;
}
.sidebar-nav li:not(:first-child):before {
    background-color: #e15754;
}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
    -moz-transition:  width .2s ease-in;
    -ms-transition:  width .2s ease-in;
    transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
    position: absolute;
    top: 14px;
    z-index: 999;
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px;
    background: transparent;
    border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}
.hamburger.is-closed:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px,0,0);
    -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    position: absolute;
    left: 0;
    height: 4px;
    width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
    background-color: #1a1a1a;
}
.hamburger.is-closed .hamb-top {
    top: 5px;
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
    top: 50%;
    margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
    bottom: 5px;
    -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
    top: 0;
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
    bottom: 0;
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    background-color: #1a1a1a;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
}
.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px,0,0);
    -webkit-transition: all .35s ease-in-out;
}

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 10;
    visibility:hidden;
    opacity:0;
    transition:opacity 0.5s linear;
}

.toggled .overlay {
    visibility:visible;
    opacity:1;
}

.alert {
    border-radius: 0px;
    border-top-width: 0;
}

.well {
    /*display: inline-block;*/
    margin-bottom: 5px;
    border-radius: 0;
}

/*-------------------------------*/
/*            Margins            */
/*-------------------------------*/

.margin-sm {
    margin: 1rem;
}

.margin-md {
    margin: 2rem;
}

.margin-lg {
    margin: 5rem;
}

.margin-xlg {
    margin: 10rem;
}

.margin-top-sm {
    margin-top: 1rem;
}

.margin-bot-sm {
    margin-bottom: 1rem;
}

.margin-left-sm {
    margin-left: 1rem;
}

.margin-right-sm {
    margin-right: 1rem;
}

.margin-top-md {
    margin-top: 2rem;
}

.margin-bot-md {
    margin-bottom: 2rem;
}

.margin-left-md {
    margin-left: 2rem;
}

.margin-right-md {
    margin-right: 2rem;
}

.margin-top-lg {
    margin-top: 5rem;
}

.margin-bot-lg {
    margin-bottom: 5rem;
}

.margin-left-lg {
    margin-left: 5rem;
}

.margin-right-lg {
    margin-right: 5rem;
}

.margin-top-xlg {
    margin-top: 10rem;
}

.margin-bot-xlg {
    margin-bottom: 10rem;
}

.margin-left-xlg {
    margin-left: 10rem;
}

.margin-right-xlg {
    margin-right: 10rem;
}

.no-margin {
    margin: 0;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-bot {
    margin-bottom: 0;
}

.no-margin-left {
    margin-left: 0;
}

.no-margin-right {
    margin-right: 0;
}
/*-------------------------------*/
/*            paddings            */
/*-------------------------------*/

.padding-sm {
    padding: 1rem;
}

.padding-md {
    padding: 2rem;
}

.padding-lg {
    padding: 5rem;
}

.padding-xlg {
    padding: 10rem;
}

.padding-top-sm {
    padding-top: 1rem;
}

.padding-bot-sm {
    padding-bottom: 1rem;
}

.padding-left-sm {
    padding-left: 1rem;
}

.padding-right-sm {
    padding-right: 1rem;
}

.padding-top-md {
    padding-top: 2rem;
}

.padding-bot-md {
    padding-bottom: 2rem;
}

.padding-left-md {
    padding-left: 2rem;
}

.padding-right-md {
    padding-right: 2rem;
}

.padding-top-lg {
    padding-top: 5rem;
}

.padding-bot-lg {
    padding-bottom: 5rem;
}

.padding-left-lg {
    padding-left: 5rem;
}

.padding-right-lg {
    padding-right: 5rem;
}

.padding-top-xlg {
    padding-top: 10rem;
}

.padding-bot-xlg {
    padding-bottom: 10rem;
}

.padding-left-xlg {
    padding-left: 10rem;
}

.padding-right-xlg {
    padding-right: 10rem;
}

.no-padding {
    padding: 0;
}

.no-padding-top {
    padding-top: 0;
}

.no-padding-bot {
    padding-bottom: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

/**********************/


.btn-outline-rounded {
    padding: 10px 40px;
    margin: 20px 0;
    border: 2px solid transparent;
    border-radius: 25px;
}

.btn-success {
    color: #fff;
    background-color: #e15754;
    border-color: #e13632;
}

textarea {
    resize: vertical;
}

/**********************************************/
