:root {
    --white: #fff;
    --card-border: rgba(0,0,0,0.08);
    --veraneos: #14716a;
    --lime-lighter: #ecfaf6;
    --lime-16: #d9f3eb;
    --lime: #12b886;
    --lime-light: #c0f3cd;
    --lime-dark: #038b62;
    --blue-lighter: #ebf6f7;
    --blue-light: #b3e6eb;
    --blue: #129cab;
    --orange-lighter: #fdf2ec;
    --orange: #ee641c;
    --red-lighter: #fceeed;
    --red: #db2c24;
    --red-dark: #b50700;
    --gold: #ffb200;
    --purple: #7b0051;
    --tan: #b6a467;
    --paper: #faf9f8;
    --paper-dark: #f5f3f1;
    --paper-darker: #eee9e5;
    --ink-16: #dedfe0;
    --ink-lighter: #adb5bd;
    --ink-light: #868e96;
    --ink: #343a40;
    --border-radius: 4px;
}

html {
	/*scroll-behavior: smooth;*/
	scroll-padding-top: 51px;
}

body {
	margin-top: 50px;
	background: var(--ink);
}

.navbar-inverse {
	background: var(--veraneos);
	border-color: var(--veraneos);
	color: var(--white);
}

.btn-group {
	background: #fff;
	border-radius: 4px;
}

.btn-group .btn, 
.navbar-inverse .btn-default {
	color: #aaacae;
	background-color: #f1f1f2;
	box-shadow: none;
	border-color: #f1f1f2;
	outline: none;
	font-weight: 600;
}

.btn-group .btn:focus,
.navbar-inverse .btn-default:focus {
	outline: none;
}

.btn-group .btn:hover,
.navbar-inverse .btn-default:hover {
	opacity: .8;
}

.btn-group .active {
	color: var(--white);
	background-color: var(--lime);
	box-shadow: none;
	border-color: var(--lime);
}

.btn-green {
	color: var(--white);
	background-color: var(--lime);
	box-shadow: none;
	border-color: var(--lime);
	outline: none;
	font-weight: 600;
}

.btn-green:hover {
	color: var(--white);
	opacity: .8;		
}

.btn-green[disabled] {
	background-color: var(--lime);
}



/** FOLDER **/
#modal-filters.right {
	text-align: left;
}

#modal-filters .form-control {
	margin-bottom: 10px;
}

#modal-filters hr {
	margin-left: -15px;
	margin-right: -15px;
}

#modal-filters .btn-danger {
	background-color: var(--white);
    border-color: var(--red);
    color: var(--red);
    margin-top: 10px;
} 

#modal-filters .btn-danger:hover {
	background-color: var(--white);
    border-color: var(--red-dark);
    color: var(--red-dark);
} 

#modal-filters .btn-danger:focus {
	outline: none;
}




/** PIPELINE **/

/* width */
#pipeline ::-webkit-scrollbar,
#list-request::-webkit-scrollbar {
  width: 8px;
}

/* Track */
#pipeline ::-webkit-scrollbar-track,
#list-request::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
#pipeline ::-webkit-scrollbar-thumb,
#list-request::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

/* Handle on hover */
#pipeline ::-webkit-scrollbar-thumb:hover,
#list-request::-webkit-scrollbar-thumb:hover {
  background: #555; 
}




#pipeline {
	background: #343a40;
	display: flex;	
	height: 100%;
}

.pipeline-col {
	width: 20%;
	width: 25%;
	padding: 10px;
}

.pipeline-col h2 {
	color: #fff;
	font-size: 18px;
	margin: 0;
	margin-bottom: 7px;
	/*text-indent: 15px;*/
	text-align: center;
}

.pipeline-col .inside {
	height: calc(100vh - 100px);
    background: linear-gradient(0deg,#343a40,rgba(134,142,150,.5));
    /*background: red;*/
    border-radius: 10px;
    padding: 8px;
    overflow-y: auto;
}

.pipeline-item {
	/*height: 168px;*/
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px var(--card-border);
    margin-bottom: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    position: relative;
    overflow: hidden;
}


.pipeline-item p.folder-name {
	font-weight: 600;
	margin-bottom: 5px;
}
.pipeline-item p.folder-name span {
	text-transform: uppercase;
}

.pipeline-item .first-row {
	display: flex;
	align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 12px;
}

.pipeline-item .date {
	background-color: transparent;
	color: var(--blue);
	box-sizing: border-box;
	border-radius: var(--border-radius);
	line-height: 1.14;
	height: 24px;
	padding: 3px 6px;
	display: flex;
	align-items: center;
	max-width: 90px;
	font-weight: 600;
	white-space: nowrap;
	margin-left: 8px;
}

.pipeline-item .date.late {
	background-color: var(--red);
	color: var(--white);
}

.pipeline-item .action {
	box-sizing: border-box;
    border-radius: var(--border-radius);
    line-height: 1.34;
    height: 24px;
    padding: 3px 6px;
    display: inline-block;
    align-items: center;
    max-width: 190px;
    font-weight: 600;
	border: 1px solid var(--ink);
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pipeline-item .content {
	color: var(--ink-light);
}

.pipeline-item .content .fa {
	margin-right: 5px;
	width: 14px;
	text-align: center;
}
	




/** CALENDAR **/
#viewCalendar {
	background: var(--ink);
	min-height: calc(100vh - 51px);
	display: flex;
}

#viewCalendar .cal-day {
	float: none;
	padding: 10px;
	border: none;
}

#viewCalendar .cal-day h5 {
	color: #fff;
	text-align: center;
	font-size: 16px;
	margin-top: 0;
}
#viewCalendar .cal-day.today h5 {
	font-weight: 600;
	color: var(--lime-16);
}

#viewCalendar .cal-day .inside {
    height: calc(100vh - 115px);
    background: linear-gradient(0deg,#343a40,rgba(134,142,150,.5));
    /*background: red; */
    border-radius: 10px;
    padding: 8px;
    overflow-y: auto;
}

#viewCalendar .cal-day .inside table {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	background: #fff;
}

#viewCalendar .cal-day .inside table th {
	border: none;
}

#viewCalendar .cal-day .inside .pull-right {
	margin-right: 5px;
}





/** LIST FOLDER **/
#viewList {
	background: var(--ink);
	min-height: calc(100vh - 51px);
	padding: 10px;
}

#viewList table {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

#viewList table td {
	vertical-align: middle;
}

#viewList table td:first-child {
	border-left: 10px solid transparent;
}

#viewList table td.isConfirmedBorder {
	border-left: 10px solid lightskyblue;
}

#viewList table td.isPreConfirmedBorder {
	border-left: 10px solid limegreen;
}


#viewList .date.late {
    background-color: var(--red);
    color: var(--white);
}

#viewList .date {
    background-color: transparent;
    color: var(--blue);
    box-sizing: border-box;
    border-radius: var(--border-radius);
    line-height: 1.14;
    height: 24px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    max-width: 90px;
    font-weight: 600;
    white-space: nowrap;
}

#viewList .action {
    box-sizing: border-box;
    border-radius: var(--border-radius);
    line-height: 1.34;
    height: 24px;
    padding: 3px 6px;
    display: inline-block;
    align-items: center;
    max-width: 190px;
    font-weight: 600;
    border: 1px solid var(--ink);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#table-actions .action {
	box-sizing: border-box;
    border-radius: var(--border-radius);
    line-height: 1.34;
    height: 24px;
    padding: 3px 6px;
    display: inline-block;
    align-items: center;
    /*max-width: 190px;*/
    max-width: 350px;
    font-weight: 600;
    border: 1px solid var(--ink);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#searchMapRight div[class^='col-'], #searchMapRight div[class*=' col-'] {
    padding-left: 5px;
    padding-right: 5px;
}







.navbar-inverse .btn-danger, .btn-danger {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
}





#cal-year {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
	flex-basis: 16%;
	margin-top: 61px;
	color: #fff;

}

#cal-year .cal-month {
	width: 175px;
	display: flex;
	flex-wrap: wrap;
	/*width: 16.667%;*/
	margin: 15px;
}

#cal-year .month-title {
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	width: 100%;
	margin-bottom: 0px;
}

#cal-year .c-day {
	/*border: 1px solid #333;*/
	/*border-radius: 3px;*/
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-size: 10px;
	color: #ddd;
}

#cal-year .c-day-title {
	font-weight: bold;
	border: none;
	color: #fff;
}

#cal-year .c-day:not(.c-day-title):not(.offset):hover {
	background: var(--blue);
	color: #fff;
	border-radius: 3px;
}

#cal-year .offset-1 {
	width: 0px;
	border: none;
}

#cal-year .offset-2 {
	width: 25px;
	border: none;
}

#cal-year .offset-3 {
	width: 50px;
	border: none;
}

#cal-year .offset-4 {
	width: 75px;
	border: none;
}

#cal-year .offset-5 {
	width: 100px;
	border: none;
}

#cal-year .offset-6 {
	width: 125px;
	border: none;
}

#cal-year .danger {
	background-color: var(--lime);
	color: #fff;
}

.c-day ~ .c-day.danger {
	border-bottom-left-radius: 3px !important;
	border-top-left-radius: 3px !important;
}


.c-day.danger ~ .c-day.danger {
	border-bottom-left-radius: 0px !important;
	border-top-left-radius: 0px !important;
	/*border-bottom-right-radius: 3px !important;
	border-top-right-radius: 3px !important;*/	
}

#cal-year .month-total {
	font-size: 10px;
	text-align: center;
	font-weight: bold;
	width: 100%;
	margin-top: 5px;
}

#cal-year .cal-title {
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}





#modal-newRequest .modal-body h4,
#modal-duplicate-request .modal-body h4 {
	margin-top: 40px;
}

.choice-items {
	display: flex;
	margin: -5px;
	justify-content: center;
}

.choice {
	display: flex;
	flex-direction: column;
	width: 70px;
	height: 70px;
	padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--ink-16);
    margin: 5px;
    justify-content: center;
    align-content: center;
    text-align: center;
    color: var(--ink-light);
}

.choice.active {
    border: 2px solid var(--lime);
    color: var(--lime);
    background: var(--lime-lighter);
}

.choice .symbol {
	font-size: 30px;
}

.choice .currency-name {
	text-transform: uppercase;
}

.choice img {
	width: 35px;
	margin: auto;
}

#modal-newRequest .table,
#modal-duplicate-request .table {
    margin-bottom: 10px;
}

#modal-newRequest .modal-body .btn,
#modal-duplicate-request .modal-body .btn {
    margin-bottom: 10px;
}

#modal-newRequest .modal-body .row,
#modal-duplicate-request .modal-body .row {
	text-align: center;
	display: flex;
}

#modal-newRequest .error,
#modal-duplicate-request .error {
	border: 1px solid var(--red);
	background: var(--red-lighter);
}



.modal-search .modal-content {
	background: var(--paper);
}

.modal-search .modal-content .close {
	font-size: 40px;
	font-weight: lighter;
	line-height: 30px;
}

.modal-search .modal-content .modal-title {
	text-transform: uppercase;
	color: var(--blue);
	text-align: center;
}

.modal-search .modal-content .modal-body {
	background: var(--paper-dark);
	display: flex;
	padding: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.modal-search .modal-content .modal-body.modal-body-hotels {
	flex-direction: column;
}

.modal-search .modal-content .tab-content {
	background: var(--paper-dark);
	display: flex;
	padding: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;	
}

.modal-search .modal-content .tab-content .tab-pane {
	width: 100%;
}

.modal-search .list-container {
	flex: 1;
	min-height: 100%;
	padding-right: 15px;
}

.modal-search .circuit-item,
.modal-search .production-item,
.modal-search .hotel-item,
.modal-search .lt-short-item {
	background: #fff;
}

.modal-search .form-container {
	width: 20%;
	height: calc(100vh - 10px);
	position: sticky;
	top: 10px;
	display: flex;
	flex-direction: column;
}

.modal-search .form-container #searchMapRight {
	margin-right: 0;
}

.modal-search .form-container #searchMapRight div[class^='col-'], .modal-search .form-container #searchMapRight div[class*=' col-'] {
	padding: 0;
}

.modal-search .form-container ng-map {
	flex: 1;
	margin-left: 0;
}



body .chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid var(--lime-dark);
    max-width: 100%;
    border-radius: 3px;
    background: var(--lime);
    /*background: #fff;*/
    /*background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    /*color: var(--lime-dark);*/
    line-height: 13px;
    cursor: default;
}

.chosen-container .chosen-results li.group-result {
    position: sticky;
    top: 0;
    background: #fff;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	filter: brightness(160%);
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	filter: brightness(400%);
}


.navbar-form .form-control {
	background: rgba(0,0,0,.2);
	border: none;
	color: var(--lime-16);
	color: var(--white);
}

.navbar-form .fa-search {
	color: var(--lime-16) !important;
	color: var(--white) !important;
}

.navbar-form .form-control::placeholder { 
  color: var(--lime-16);
	color: var(--white);
  opacity: 1; 
}

.navbar-inverse .fa {
	color: var(--lime-16);
	color: var(--white);
}

.navbar-inverse a:hover .fa {
	color: var(--white);
	opacity: .8;
}

.navbar-inverse .input-group > .input-group-btn .btn-default {
	background: rgba(0,0,0,.4);
    border: none;
}

.navbar-inverse .navbar-brand {
	color: var(--white);
}

.navbar-inverse .form-control option {
	background: var(--veraneos);
}

.navbar-inverse .chosen-container-single .chosen-single {
	background: rgba(0,0,0,.2);
	color: var(--white);
	border: none;	
}

.navbar-inverse .chosen-container-active.chosen-with-drop .chosen-single {
	box-shadow: none;
}

.navbar-inverse .chosen-container-single .chosen-single div b {
    background-position: 0px 7px;
    filter: brightness(100);
}

.navbar-inverse .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -16px 6px;
    filter: brightness(100);
}









.last-city {
    position: absolute;
    bottom: -32px;
    background: var(--lime);
    border-radius: 10px;
    width: 150px;
    text-align: center;
    color: #fff;
    z-index: 2;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.day-row-short {
	border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px var(--card-border);
    padding: 8px;
    margin: 5px;
    display: flex;
    position: relative;
    height: 60px;
    align-items: center;
    /*justify-content: space-between;*/
    cursor: grab;
}

.day-row-short.city-error {
	background: var(--orange-lighter);
	background: #fdc4a6;
}

.day-row-short.trip-package {
	/*background: var(--blue-light);*/
}

.col-date-itinerary.trip-package, .col-date-itinerary.trip-package .itinerary ul {
	/*background: var(--blue-light);*/
}

.day-row-short.base-circuit {
	width: fit-content;
	margin-left: 5px;
		margin-right: auto;
		cursor: initial;
		font-size: 16px;
		color: var(--ink-light);
		padding-left: 15px;
		padding-right: 15px;
}	

.day-row-short.total-item {
	width: fit-content;
	margin-right: 5px;
		margin-right: auto;
		margin-left: auto;
		cursor: initial;
}

.day-row-short .short-total {
	flex:1;
	text-align: right;
	font-size: 22px;
}
.day-row-short.total-item .price > span {
	font-size: 12px;
}

.day-row-short .last-city {
    bottom: -15px;
    width: 250px;
    height: 24px;
    display: block;
    line-height: 22px;
    left: calc(40% - 125px);
    /*left: 240px;*/
}

.day-row-short .last-city.first-city {
    top: -15px;
    bottom: auto;
}

.day-row-short .last-city.island {
	left: 600px;
	/*background: var(--blue);*/
}

.day-row-short .day {
	width: 90px;

}

.day-row-short .date {
    color: var(--ink-light);
}

.day-row-short .price {
	font-size: 22px;
	font-size: 18px;
	line-height: 18px;
	width: 90px;
	width: 60px;
	text-align: right;
	color: var(--ink-lighter);
}

.day-row-short .price.actif {
	color: var(--blue);
	font-size: 18px;
	font-weight: bold;
}

.day-row-short .itinerary-short {
	flex: 1;
}

.day-row-short .itinerary-short em {
	color: var(--ink-light);
	font-size: 12px;
}

.day-row-short .fa-ellipsis-v {
	font-size: 22px;
	margin-left: 0px;
	margin-right: 15px;
	color: var(--ink-lighter);
}

.day-row-short .date {
	width: 50px;
}

.day-row-short .trip {
	width: 50px;
	color: var(--blue);
	margin-left: 10px;
}

.day-row-short .theme {
	width: 150px;
	color: var(--blue);
	margin-left: 10px;
}

.day-row-short .actions-trip {
	display: none;
}

.day-row-short:hover .actions-trip {
	display: block;
}

.day-row-short .actions-trip {
	font-size: 14px;
	font-size: 18px;
}

.day-row-short .actions-trip .fa-trash {
	color: var(--red);
	margin-left: 0;
	margin-right: 0;
}

.day-row-short .actions-trip .fa-retweet, .day-row-short .actions-trip .fa-plus {
	color: var(--blue);
	margin-left: 0;
	margin-right: 0;
}

.day-row-short .fa-bed {
	color: var(--blue);
	font-size: 20px;
}

.day-row-short .fa-bed.has-general {
	color: var(--ink-lighter);
}

.day-row-short .hotel-col {
	display: flex;
	color: var(--blue);
	flex-direction: column;
	text-align: center;
}


.col-hotel {
	width: 25%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hotel-category {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: lighter;
	color: var(--lime);
}

.hotel-img {
	margin-top: 5px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.hotel-img img {
	width: 40%;
	margin: 5px;
}

.col-hotel .active {
	background: var(--ink-16);
	padding: 3px 5px;
	border-radius: 10px;
}

.col-hotel.general b {
	text-transform: uppercase;
}

.col-hotel {
	border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px var(--card-border);
    padding: 8px;
    min-height: 200px;
    margin: 5px;
}

/* Specify styling for tooltip contents */
    .tooltip.customClass {
        opacity: 1;
        margin-top: -5px;
    }

    .tooltip.customClass .tooltip-inner {
        color: var(--ink);
        background-color: #ffffff;
        box-shadow: 0 6px 12px rgba(0,0,0,.8);
        text-align: left;
        font-size: 14px;
    }
    /* Hide arrow */
    .tooltip.customClass .tooltip-arrow {
        display: none;
    }


/* Specify styling for tooltip contents */
.tooltip.tooltip-hotel .tooltip-inner {
	padding: 0;
	border-radius: 10px;
	border: 1px solid #000;
	color: #333;
}

.tooltip.tooltip-hotel .col-hotel {
	width: 100%;
	margin: 0;
	min-height: auto;
}

.tooltip.tooltip-hotel {
    opacity: 1;
    /*margin-top: -5px;*/
}

.tooltip.tooltip-hotel .hotel-img img {
	width: 72.8px;
	height: 48.77px;
}


.itinerary-short.c-red {
	color: var(--red);
}

.itinerary-short.c-red em {
	color: var(--red) !important;
	opacity: .5;
}

.day-row-short.day-item.selected {
	border: 2px solid var(--lime);
	background: var(--lime-light);
}

.actions-trip-right {
	font-size: 24px;
	/*position: absolute;*/
	right: -88px;
	width: 90px;
	text-align: right;
}

.actions-trip-right .fa {
	margin: 0;
	color: var(--blue);
}

.actions-trip-right .fa.fa-trash {
	color: var(--red);
}

/*.day-row-short.day-item.trip-package {
	background: #fff;
}*/

.day-row-short.day-item.trip-package .fa-ellipsis-v {
	visibility: hidden;
}

.day-row-short.day-item.trip-package + .day-row-short.day-item.trip-package:after {
	content: '';
	display: block;
	position: absolute;
	background: #fff;
    width: 100%;
    height: 22px;
    left: 0;
    top: -13px;
/*    z-index: -1;*/
}



.day-row.day-item.trip-package + .day-row.day-item.trip-package .col-date-itinerary:after {
	content: '';
	display: block;
	position: absolute;
	background: #fff;
    width: 100%;
    height: 26px;
    left: 0;
    top: -18px;
/*    z-index: -1;*/
}

.day-row.day-item.trip-package .col-detail-text {
	position: relative;
}

.day-row.day-item.trip-package + .day-row.day-item.trip-package .col-detail-text:after {
	content: '';
	display: block;
	position: absolute;
	background: #fff;
    width: 100%;
    height: 26px;
    left: 0;
    top: -18px;
/*    z-index: -1;*/
}

.day-row.day-item.trip-package .col-hotel {
	position: relative;
}

.day-row.day-item.trip-package + .day-row.day-item.trip-package .col-hotel:after {
	content: '';
	display: block;
	position: absolute;
	background: #fff;
    width: 100%;
    height: 26px;
    left: 0;
    top: -18px;
/*    z-index: -1;*/
}

.day-row.day-item.trip-package .col-price-photo {
	position: relative;
}

.day-row.day-item.trip-package + .day-row.day-item.trip-package .col-price-photo:after {
	content: '';
	display: block;
	position: absolute;
	background: #fff;
    width: 100%;
    height: 26px;
    left: 0;
    top: -18px;
/*    z-index: -1;*/
}


.day-row-short textarea.form-control {
	width: 180px;
	font-size: 12px;
	padding: 3px 5px;
	height: 100%;
	margin-left: 10px;
	margin-right: 10px;
}


.day-row-short textarea.form-control[disabled] {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}

#table-resa em {
    color: var(--ink-light);
    font-size: 11px;
}




.day-row-short .action {
    box-sizing: border-box;
    border-radius: var(--border-radius);
    line-height: 1.34;
    height: 24px;
    padding: 3px 6px;
    display: inline-block;
    align-items: center;
    /* max-width: 190px; */
    max-width: 100%;
    font-weight: 600;
    border: 1px solid var(--ink);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





.nav-tabs { border-bottom: 2px solid #DDD; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover { border-width: 0; }
.nav-tabs > li > a { border: none; color: #666;padding: 15px; }
.nav-tabs > li.active > a, .nav-tabs > li > a:hover { border: none; color: var(--blue) !important; background: transparent; }
.nav-tabs > li > a::after { content: ""; background: var(--blue); height: 2px; position: absolute; width: 100%; left: 0px; bottom: -1px; transition: all 250ms ease 0s; transform: scale(0); }
.nav-tabs > li.active > a::after, .nav-tabs > li:hover > a::after { transform: scale(1); }
.tab-nav > li > a::after { background: #21527d none repeat scroll 0% 0%; color: #fff; }
.tab-pane { padding: 0; }
.tab-content{padding:15px}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
	background: transparent;
}
.nav-tabs>li.disabled:hover>a {color: #666 !important;cursor: default;}
.nav-tabs>li.disabled>a:hover {color: #666 !important;}
.nav-tabs>li.disabled:hover>a::after {transform: scale(0);}



#navbar-menu {
	display: inline;
    float: none;
    margin: 0;
    border: none;
    padding: 7px 9px;
    margin-top: -10px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}

#navbar-menu:hover {
    background: rgba(0,0,0,.2);
}

#navbar-menu .icon-bar {
	width: 20px;
    margin-left: auto;
    margin-right: auto;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	    -ms-transform: translate3d(0%, 0, 0);
	     -o-transform: translate3d(0%, 0, 0);
	        transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
	padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog{
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
	        transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog{
	left: 0;
}
    
/*Right*/
.modal.right.fade .modal-dialog {
	right: -320px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
	        transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
	right: 0;
}

.modal.left .modal-content,
.modal.right .modal-content {
	border-radius: 0;
	border: none;
}


#modal-menu .modal-content {
	background: var(--paper-dark);
}

#modal-menu .modal-header {
	color: var(--blue);
    text-transform: uppercase;
	background: var(--paper);
}

#the-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#the-menu li {
    border-bottom: 1px solid #e5e5e5;
}

#the-menu li:hover {
	background: var(--paper);
}

#the-menu li a {
	padding: 12px;
	color: var(--ink-light);
	font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    display: block;
}

#the-menu li a:hover {
	color: var(--lime);
}

#the-menu li a .fa {
	margin-right: 10px;
	width: 25px;
    text-align: center;
    color: var(--blue);
}

#the-menu li a:hover .fa {
	color: var(--lime);	
}