:root {
    --primary-color: #00634f;
    --secondary-color: rgba(0, 99, 79, 0.5); /*#31a938; */
    --tiercary-color: #FFDD00;
    --quaternary-color: #932249; /*rgb(147,34,73); */
    --table-nth-even-color: rgba(0, 99, 79, 0.5);
    --table-nth-odd-color:  rgba(0, 99, 79, 0.2);
    --warn: orange;
    --alert: indianred;
}

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    text-transform: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'semencesfregular';
    /*font-family: Calibri !important;*/
    src: url(../font/semencesf_0-webfont.eot);
    src: url(../font/semencesf_0-webfont.eot?#iefix) format("embedded-opentype"),
    url(../font/semencesf_0-webfont.woff2) format('woff2'),
    url(../font/semencesf_0-webfont.woff) format('woff'),
    url(../font/semencesf_0-webfont.ttf) format('truetype'),
    url(../font/semencesf_0-webfont.svg#semencesfregular) format("svg");
    font-weight: 400;
    font-style: normal;
}

/*@font-face {*/
/*font-family: 'Roboto';*/
/*src: url('../font/RobotoLight.ttf') format('truetype');*/
/*font-weight: normal;*/
/*font-style: normal;*/
/*}*/

/*@font-face {*/
/*font-family: 'Lato';*/
/*src: url('../font/LatoLight.ttf') format('truetype');*/
/*font-weight: normal;*/
/*font-style: normal;*/
/*}*/

/*@font-face {*/
/*font-family: 'Confortaa';*/
/*src: url('../font/TerminalDosis-Regular.ttf') format('truetype');*/
/*font-weight: normal;*/
/*font-style: normal;*/
/*}*/

html {
    overflow-x: hidden;
}

body {
    width:100%;
    margin: auto;
    /*	background-color: #F4F1F2;
    */
    font-family: 'Confortaa', Arial, sans-serif;
    /*font-family: 'Calibri', sans-serif;*/
    color: #5c5c5c;
    text-align: justify;
    position: relative;
    font-size: 0.9em;
}

pre {
    font-family: 'Confortaa', Arial, sans-serif;
    white-space: pre-line;
}

label {
    text-align: left;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

hr {
    background-color: #CCCCCC;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 1px;
}

hr.spacer {
    margin-top: 40px;
}

a:hover {
    text-decoration: underline;
}

/* CLASS */
.hide { display: none;}
.rel { position: relative; }
.abs { position: absolute; }
.clr { clear: both; }
.f-rgt { float: right; }
.f-lft { float: left; }
.align-bot { display: inline-block; vertical-align: bottom; }
.align-top { display: inline-block; vertical-align: top; }
.align-middle { display: inline-block; vertical-align: middle; }
.inline { display: inline; }

/* TEXT STYLE */
.txt-rgt { text-align: right; }
.txt-center { text-align: center; }
.txt-lft { text-align: left; }
.txt-justify { text-align: justify; }

.txt-white { color: white; }
.txt-black { color: black; }
.txt-orange { color: #F58817; }
.txt-red { color: var(--alert); }
.txt-green { color: var(--primary-color); }

.txt-bold { font-weight: bold; }
.txt-ita { font-style: italic; }
.txt-underline { text-decoration: underline; }

.txt-8 { font-size: 0.8em; }
.txt-9 { font-size: 0.9em; }
.txt-10 { font-size: 1em; }
.txt-12 { font-size: 1.2em; }
.txt-14 { font-size: 1.4em; }
.txt-16 { font-size: 1.6em; }
.txt-20 { font-size: 2em; }

.txt-tiny { font-size: 12px; }
.txt-small { font-size: 14px; }
.txt-medium { font-size: 16px; }
.txt-large { font-size: 24px;}

.v-sep { color: white; width: 1px; height: 100%; border-left: 1px solid #DDD; display: inline-block; margin: 0 2px 0 2px; }
.h-sep { color: white; width: 100%; height: 1px; border-top: 1px solid #DDD; margin: 2px 0 2px 0; }

.center-block {	max-width: 1024px;	margin: auto; }
.center-block-bis {	max-width: 85%;	margin: auto; }

/* Background */
.bkg-yellow { background: #FEED86 ;}
.bkg-green { background: #9fcb5e ;}
.bkg-orange { background: #F58817 ;}
.bkg-blue { background: #397BAE ;}
.bkg-white { background: white ;}
.kbg-light-grey { background: #f4f1f2; }

/* Borders */
.border-left-blue { border-left: 3px solid #92c7ca; }
.border-left-green { border-left: 3px solid #9fcb5e; }
.border-left-orange { border-left: 3px solid #F58817; }
.border-left-light-grey { border-left: 4px solid #f4f1f2; }
.border-yellow { border: 4px solid #FEED86; }
.border-light-grey { border: 4px solid #f4f1f2; }

/* */
.box {
    box-sizing: border-box;
    background: white;
    box-shadow:  0 0 20px #E4E1E1;
    padding: 4px;
    margin-top: 10px;
    vertical-align: top;
    border-radius: 3px;
}

/* Columns */
.multi-cols {
}
.colset-2, .colset-3,
.colset-4, .colset-5,
.colset-6, .colset-7,
.colset-8, .colset-9,
.colset-10 			{ font-size: 0; 	}
.col, .col-80, .col-40, .col-60, .col-66,
.col-20, .col-25, .col-75,
.col-33, .col-100	{ font-size: 1rem; display: inline-block; box-sizing: border-box; margin-bottom: 10px; vertical-align: top; }
.col-20 			{ width: 20%;  		}
.col-25 			{ width: 25%;  		}
.col-33 			{ width: 33%;  		}
.col-40 			{ width: 40%;  		}
.col-60 			{ width: 60%;  		}
.col-66 			{ width: 66%;  		}
.col-75 			{ width: 75%;  		}
.col-80 			{ width: 80%;  		}
.col-100 			{ width: 100%; 		}


.colset-2 .col 		{ width: 50%;  		}
.colset-2 .col:first-child, .colset-2 .col-20, .colset-2 div:first-child.col-80, .colset-2 .col-7, .colset-2 div:first-child.col-25	{ padding-right: 10px; padding-left: 0; 		}
.colset-2 .col:last-child, .colset-2 .col-80, .colset-2 div:last-child.col-20, .colset-2 .col-25, .colset-2 div:last-child.col-75 		{ padding-left: 10px; padding-right: 0; 		}

.colset-3 .col 		{ width: 33.3%; padding-left: 10px;	padding-right: 10px; }
.colset-3 .col-25 		{ width: 25%; }
.colset-3 .col-50 		{ width: 50%; padding-left: 10px;	padding-right: 10px; }
.colset-3 .col-75 		{ width: 75%; }
.colset-3 .col:first-child 		{ padding-left: 0;	padding-right: 10px;}
.colset-3 .col:last-child 		{ padding-left: 10px;	padding-right: 0;}

.colset-4 .col 		{ width: 25%; 		}
.colset-5 .col 		{ width: 20%; 		}
.colset-6 .col 		{ width: 16.6%; 	}
.colset-7 .col 		{ width: 14.28%; 	}
.colset-8 .col 		{ width: 12.5%; 	}
.colset-9 .col 		{ width: 11.1%; 	}
.colset-10 .col 	{ width: 10%; 		}

/* TITLE STYLE */
h1, h2, h3, h4 { font-weight: bold; color: var(--primary-color); padding: 5px 0 0 0; margin: 0; margin-bottom: 15px;}

h1 { font-size: 28px; }
h2 { font-size: 22px;  }
h3 { font-size: 20px; }
h4 { font-size: 16px; text-transform: uppercase; }

h1 .subtitle, h2 .subtitle, h3 .subtitle, h4 .subtitle { font-weight: normal; color: #989898; font-size: 0.9em; }

/* TABLE STYLE */
table.default {
    width: 100%;
    /*text-align: left;*/
    /*border: 1px solid var(--primary-color);*/
    position: relative;
}

table.default th {
    background: var(--primary-color);
    padding: 10px;
    vertical-align: middle;
    /*text-transform: uppercase;*/
    font-weight: bold;
    color: white;
}

table.default tr { /*position: relative; */background-color: white; }
table.default td { padding: 5px; vertical-align: middle; }

/*tr:hover { transform: scale(1.1); box-shadow: 0 0 20px #CCC; background: #CCC; }
*/
table.default tr:nth-child(even) {
    background-color: #f4f1f1;
}

table .menu { background: transparent; min-width: 100px; position: absolute; display: none; opacity: 0.5; transition: opacity 0.2s; height: 20px; right: 0; top: 0; padding: 4px;}
table tr:hover .menu { display: block; text-align: right;}
table .menu:hover { opacity: 1;  }
table .menu li { display: inline-block; content: ''; width: 20px; height: 20px; cursor: pointer; position: relative; }
table .menu .edit { background: transparent url(../img/edit.png) no-repeat right center; }
table .menu .remove { background: transparent url(../img/remove.png) no-repeat right center; }
table .menu .see { background: transparent url(../img/eye.png) no-repeat right center; }

table .menu .see, table .menu .remove, table .menu .edit {
    background-size: 16px 16px;
}

/* ALERT STYLE  */
.alert-box {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 5px;
    color: black;
    position: relative;
    border-radius: 3px;
}

.alert-box .msg {
    width: 90%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    padding-right: 20px;
    box-sizing: border-box;
}

.alert-box .close {
    background: url(../img/close.png) no-repeat center;
    background-size: 24px 24px;
    height: 15px;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 5px;
    width: 15px;
}

.alert-box .close:hover {
    -webkit-filter: drop-shadow(0px 0 5px #999);
}

.alert-box.alert { background: var(--alert); color: white;/*border: 1px solid #A70000;*/}
.alert-box.warn { background: var(--warn); color: white;/*border: 1px solid #f5e79e;*/}
.alert-box.success { background: var(--secondary-color); color: white;/*border: 1px solid #b2dba1;*/}
.alert-box.info { background: #87b0de;color: white;}
.alert-box.secondary { background: #9acfea; color: white;/*border: 1px solid #b9def0;*/}


/* BUTTON STYLE */
.btn {
    outline: none;
    font-size: 13px;
    -webkit-transition:all .5s ease;
    -moz-transition:all .5s ease;
    -ms-transition:all .5s ease;
    -o-transition:all .5s ease;
    transition:all .5s ease;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    color: white;
    padding: 8px 12px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    border: 0 solid transparent;
    font-family: semencesfregular;
    background: #397BAE;
}

input[type="submit"].btn,
button.btn {
    padding: 7px 12px;
}

.btn.tiny {	font-size: 0px; padding: 2px 4px;}
.btn.small { font-size: 16px; padding: 8px 16px; }
.btn.medium { font-size: 18px; padding: 10px 20px; }
.btn.large { font-size: 20px; padding: 15px 40px; }

.btn:disabled, .btn.disabled {	box-shadow: 0 0 0 #E4E1E1; opacity: 0.4; cursor: not-allowed; }
.btn:active, .btn.active { box-shadow: 0 0 0 #E4E1E1; opacity: 1; bottom: -1px; right: -1px; }

.btn.primary { background: var(--primary-color); }
.btn.secondary { background: var(--secondary-color); }
.btn.tertiary { background: var(--warn); }
.btn.alert { background: var(--alert); }
.btn.success { background: #6fcb6d; }

/*.btn.primary:hover { background: #397BAE; color: white;}
.btn.secondary:hover { background: #397BAE;  color: white;}
.btn.tertiary:hover { background: #F58817; }
.btn.alert:hover { background: #ff6b4d; }
.btn.success:hover { background: #6fcb6d; }
*/
.btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transition: all 0.2s, border-radius .6s;
    background: #dadada;
    opacity: 0.2;
    border-radius: 50px;
}

.btn:hover:after {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.btn:hover {
    text-decoration: none;
}


/* Row fluid */
.row-fluid { font-size: 0; }

/* SOME NEW CLASSES */
/* MARGIN */
.mg-lft-1 { margin-left: 1%; }
.mg-lft-2 { margin-left: 2%; }
.mg-lft-3 { margin-left: 3%; }
.mg-lft-4 { margin-left: 4%; }
.mg-lft-5 { margin-left: 5%; }

.mg-ver-10p { margin-left: 10px; margin-right: 10px; }
.mg-hor-10p { margin-top: 10px; margin-bottom: 10px; }

.mg-lft-10p { margin-left: 10px; }
.mg-lft-20p { margin-left: 20px; }

.mg-rgt-1 { margin-right: 1%; }
.mg-rgt-2 { margin-right: 2%; }
.mg-rgt-3 { margin-right: 3%; }
.mg-rgt-4 { margin-right: 4%; }
.mg-rgt-5 { margin-right: 5%; }

.mg-rgt-10p { margin-right: 10px; }
.mg-rgt-20p { margin-right: 20px; }

.mg-bot-5p { margin-bottom: 5px; }
.mg-bot-10p { margin-bottom: 10px; }
.mg-bot-20p { margin-bottom: 20px; }
.mg-bot-30p { margin-bottom: 30px; }
.mg-bot-40p { margin-bottom: 40px; }
.mg-bot-100p { margin-bottom: 100px; }

.mg-top-5p { margin-top: 5px; }
.mg-top-10p { margin-top: 10px; }
.mg-top-20p { margin-top: 20px; }
.mg-top-30p { margin-top: 30px; }
.mg-top-40p { margin-top: 40px; }
.mg-top-50p { margin-top: 50px; }
.mg-top-60p { margin-top: 60px; }

.mg-top-m8p { margin-top: -8px; }
.mg-top-m10p { margin-top: -10px; }
.mg-top-m20p { margin-top: -20px; }
.mg-top-m30p { margin-top: -30px; }


.mg-lft-m5p { margin-left: -5px; }

.no-mg { margin: 0;}

/* padding */
.pdg-5p { padding: 5px; }
.pdg-10p { padding: 10px; }

.pdg-bot-5p { padding-bottom: 5px; }
.pdg-bot-10p { padding-bottom: 10px; }

.pdg-top-10p { padding-top: 10px; }

.pdg-ver-10p { padding-left: 10px; padding-right: 10px; }
.pdg-hor-10p { padding-top: 10px; padding-bottom: 10px; }

.pdg-rgt-10p { padding-right: 10px; }
.pdg-lft-10p { padding-left: 10px; }
.pdg-lft-15p { padding-left: 15px; }
.pdg-lft-20p { padding-left: 20px; }

.f-mrg-b { margin-bottom: 15px;}

.no-pdg { padding: 0;}

.center-block { width: 1170px;  margin: auto; position: relative; }
/*.center-block-default { width: 780px;  margin: auto; position: relative; }
*/.fixed-margin-bot { margin-bottom: 60px; }
.fixed-pdg-bot-top { padding: 30px 0; }
.fixed-pdg { padding: 15px; }

/* Background */
.bkg-yellow { background: #FEED86 ;}
.bkg-green { background: #9fcb5e ;}
.bkg-orange { background: #F58817 ;}
.bkg-blue { background: #92c7ca ;}
.bkg-white { background: white ;}
.kbg-light-grey { background: #f4f1f2; }

/* Borders */
.border-left-blue { border-left: 3px solid #92c7ca; }
.border-left-green { border-left: 3px solid var(--primary-color); }
.border-left-orange { border-left: 3px solid #F58817; }
.border-left-light-grey { border-left: 4px solid #f4f1f2; }
.border-yellow { border: 2px solid #FEED86; background: white; box-shadow: 0 0 0 #CCC; }
.border-light-grey { border: 3px solid #f4f1f2; }

/* DIMENSIONS */
.h50p { height: 50px; max-height: 50px; }
.h100p { height: 100px; max-height: 100px; }
.h150p { height: 150px; max-height: 150px; }
.h200p { height: 200px; max-height: 200px; }
.h250p { height: 250px; max-height: 250px; }
.h300p { height: 300px; max-height: 300px; }

.w50p { width: 50px; max-width: 50px; }
.w100p { width: 100px; max-width: 100px; }
.w150p { width: 150px; max-width: 150px; }
.w200p { width: 200px; max-width: 200px; }
.w250p { width: 250px; max-width: 250px; }
.w300p { width: 300px; max-width: 300px; }

/*
	ft- : fix big
	fs- : fix big
	fm- : fix big
	fb- : fix big
	-pdg- : padding ;
	-t : top;
	-b : bottom;
	-tb : top bottom;
 */
.ft-pdg-t { padding-top: 5px; }
.fs-pdg-t { padding-top: 10px; }
.fm-pdg-t { padding-top: 20px;  }
.fb-pdg-t { padding-top: 40px;  }

.ft-pdg-tb { padding-top: 5px; padding-bottom: 5px; }
.fs-pdg-tb { padding-top: 10px; padding-bottom: 10px; }
.fm-pdg-tb { padding-top: 20px; padding-bottom: 20px; }
.fb-pdg-tb { padding-top: 40px; padding-bottom: 40px; }

.ft-pdg-lr { padding-left: 5px; padding-right: 5px; }
.fs-pdg-lr { padding-left: 10px; padding-right: 10px; }
.fm-pdg-lr { padding-left: 20px; padding-right: 20px; }
.fb-pdg-lr { padding-left: 40px; padding-right: 40px; }

.border-box { box-sizing: border-box; }

/* MODAL */
.modal {
    position: fixed;
    width: auto;
    height: auto;
    border: 1px solid var(--primary-color);
    top: 0;
    left: 0;
    margin: 5px;
    display: none;
    z-index: 10002;
    background: white;
    border-radius: 3px;
    box-sizing: border-box;
    /*	overflow: hidden;
    *//*	box-shadow: 0 0 5px black;
    */	max-height: 400px;
}

.modal.show {
    display: block;
}

.modal.loading:after {
    content: '';
    background: #dadada url('../img/loader.gif') no-repeat center;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 15;
}

.modal .head {
    box-sizing: border-box;
    overflow: hidden;
    height: 50px;
    color: white;
    text-align: center;
    background: var(--primary-color);
    line-height: 50px;
    padding: 0 5px 5px;
    z-index: 16;
    position: relative;
}

.modal.alert .head {
    background: var(--alert);
}

.modal.warn .head {
    background: var(--warn);
}

.modal .head h3 {
    color: white;
    margin-top: 10px;
}

.modal .head h3 .subtitle {
    color: white;
    font-style: italic;
}

.modal .head .close {
    position: absolute;
    right: 10px;
    top: 0;
    cursor: pointer;
}

.modal form .body {
    padding: 40px;
    padding-top: 15px;
    padding-bottom: 5px;
}

.modal form .body input {
    background: white;
}

.modal form .foot {
    padding: 4px 40px;
}

.modal .body {
    box-sizing: border-box;
    /*overflow-x: hidden;*/
    /*overflow-y: auto;*/
    padding: 5px;
    padding-top: 15px;
    background: #f4f1f1;
}

.modal .foot {
    box-sizing: border-box;
    overflow: hidden;
    color: black;
    background: #f4f1f1;
    padding: 5px;
}

.modal .foot p {
    font-size: 0.9em;
    text-align: justify;
}

.modal .more {
    box-sizing: border-box;
    overflow: hidden;
    color: white;
    background: #71BEEA;
    padding: 10px 5px;
    text-align: center;
}


/* TOOLTIP */
.tooltip {
    position: absolute;
    background: black;
    color: white;
    box-shadow: 0 2px 2px #CCC;
    display: none;
    left: -50%;
    padding: 4px;
    border-radius: 3px;
    z-index: 15;
    font-size: 0.9em;
    text-align: justify;
}

.tooltip:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 45%;
    border-bottom: 4px solid black;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
/*
.tooltip.top:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 45%;
	border-bottom: 4px solid black;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.tooltip.lft:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 45%;
	border-bottom: 4px solid black;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.tooltip.rgt:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 45%;
	border-bottom: 4px solid transparent;
	border-left: 4px solid black;
	border-top: 4px solid transparent;
}
*/

/* TABS */
.tabs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.tabs li {
    position: relative;
    z-index: 1;
    border: #397BAE solid 1px;
    border-bottom: none;
    cursor: pointer;
    height: auto;
    transition: all 0.1s;
}

.tabs li:last-child {
    border: #397BAE solid 1px;
}


.tabs li a {
    position: relative;
    z-index: 0;
    color: gray;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 10px 5px;
    width: 100%;
    height: 100%;
    transition: all 0.1s;
}

.tabs li:hover {
    color: #71BEEA;
}

.tabs li:hover a {
    padding-left: 8px;
    color: inherit;
}

.tabs li.active {
    background: #397BAE;
}

.tabs li.active a {
    color: white;
    padding-left: 12px;
}

/* captcha */
.captcha {
    width: 100%;
}

.captcha img {
    display: block;
    width: 100%;
    height: 50px;
}

.captcha .col {
    vertical-align: bottom;
}

.captcha .col:first-child {
    vertical-align: top;
    min-width: 180px;
}

.captcha .label {
    font-size: 0.8em;
    display: block;
}

.captcha .generate-captcha {
    font-size: 0.9em;
    text-decoration: none;
    color: grey;
    font-style: italic;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h2.title:first-letter {
    text-transform: uppercase;
}


/* INPUT */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select,
textarea,
.input {
    /*	border-radius: 3px;
    */	padding: 5px;
    outline: none;
    box-sizing: border-box;
}
/*
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
textarea:disabled,
select:disabled,
.input:disabled {
	color: #b5b3b3;
	cursor: not-allowed;
	background: #e4e1e1;
}
*/
select {
    border: 1px solid #555;
    background: #f4f1f1;
    opacity: 0.7;
    transition: all 0.2s;
    padding: 9px;
    cursor: pointer;
}

select:active {
    border: 1px solid #397BAE;
}

select:hover {
    border: 1px solid #397BAE;
    opacity: 1;
}

.input-error {
    background: #ff6c53;
    padding: 8px;
    /*	border-radius: 3px;
    */	color: white;
}

span.empty {
    display: block;
}

textarea {
    height: 120px;
}


/*.loading {*/
/*width: 100%;*/
/*height: 100%;*/
/*background: transparent url('../img/loader.gif') no-repeat center;*/
/*z-index: 2;*/
/*display: none;*/
/*}*/

.top-rgt-menu {
    position: absolute;
    right: 0;
    top: 0;
}

.scrollable {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    min-height: 100px;
    padding: inherit;
}

.menu {

}

.menu .option {
    display: inline-block;
}

.h-sep {
    height: 2px;
    width: 100%;
    margin: 10px 0;
}

.h-sep.primary 		{ background: #397BAE; }
.h-sep.secondary 	{ background: #71BEEA; }
.h-sep.tertiary 	{ background: #DADADA; }

/*.h-sep.tiny 	{ height: 1px; }
.h-sep.small 	{ height: 2px; }
*/.h-sep.medium, .h-sep 	{ height: 1px; }
.h-sep.big 		{ height: 4px; }

.primary-bkg 	{ background: #397DAE; }
.secondary-bkg	{ background: #71BEEA; }

/*.field {*/
    /*margin-top: 10px;*/
/*}*/
/*.field:first-child {*/
    /*margin-top: 0;*/
/*}*/

::-webkit-scrollbar
{
    width: 12px;  /* for vertical scrollbars */
    height: 12px; /* for horizontal scrollbars */
    opacity: 0.7;
}

::-webkit-scrollbar-track
{
    background: rgba(0, 0, 0, 0.1);
    border-left: 1px solid #999;
}

::-webkit-scrollbar-thumb
{
    background: var(--primary-color);
    border-left: 1px solid #999;
}

.fw {
    width: 100%;
}

.chand {
    cursor: pointer;
}
.chand:hover {
    text-decoration: underline;
}