@fontface {
    font-family: 'Roboto', sans-serif;
    src: url('../fonts/Roboto-Regular.ttf'); /*URL to font*/
}
@fontface {
    font-family: 'Roboto Condensed', sans-serif;
    src: url('../fonts/RobotoCondensed-Regular.ttf'); /*URL to font*/
}
/* master css */
/*custom checkbox design start*/
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
/* custom checkbox design end */
/* custom radiobtn design start*/
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
/* custom radiobtn design end*/
/* custom select design end*/
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}
/* custom select design end*/
h1,h2,h3,h4,h5,h6{
    margin: 0px;
}
.form-control{
    border-radius: 0;
}
.m-t-5{margin-top: 5px;}
.m-t-10{margin-top: 10px;}
.m-t-15{margin-top: 15px;}
.m-t-20{margin-top: 20px;}
.m-t-25{margin-top: 25px;}
.m-t-30{margin-top: 30px;}
.m-r-30{margin-right: 30px;}
.m-b-5{margin-bottom: 5px;}
.m-b-10{margin-bottom: 10px;}
.m-b-15{margin-bottom: 15px;}
.m-b-20{margin-bottom: 20px;}
.m-x-5{margin-top: 5px; margin-bottom: 5px;}
.p-a-0{
    padding: 0;
}
.p-t-0{
    padding-top: 0;
}
.p-r-0{
    padding-right: 0;
}
.p-b-0{
    padding-bottom: 0;
}
.p-l-0{
    padding-left: 0;
}
.p-y-0{
    padding-top: 0;
    padding-bottom: 0;
}
.p-x-0{
    padding-right: 0;
    padding-left: 0;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td{
    padding: 6px 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 300;
}
.table > thead > tr > th{
    font-weight: 600;
}
.table > thead > tr > .glyphicon,
.table > tbody > tr > .glyphicon,
.table > tfoot > tr > .glyphicon,
.table > thead > tr > .glyphicon,
.table > tbody > tr > .glyphicon,
.table > tfoot > tr > .glyphicon{
    font-family: "Glyphicons Halflings";
}
.table-striped thead th{
    background: #576176;
    color: #FFF;
    font-weight: 400;
}
.table-striped thead th a{
    color: #FFF;
}
/* --------- */
/*tabe drag and drop*/
.ui-sortable tr {
    cursor:move;
}
.ui-sortable tr:hover {
    background:rgba(244,251,17,0.45);
}
.pagination{
    margin: 0;
}
.custom-drag-table > tbody > tr:nth-of-type(2n+1):hover{
    background:rgba(244,251,17,0.45);
}
.custom-modelpopup .modal-header {
    background: #d26429 none repeat scroll 0 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #FFF;
}
.custom-modelpopup button.close{
    border: 1px solid #511B00;
    border-radius: 100%;
    display: block;
    padding: 1px 5px;
    vertical-align: middle;
}
.custom-modelpopup button.close span{
    margin-top:0px;
    display: block;
}
.wrap .breadcrumb-wrap{
    position: absolute;
    right: 0px;
    top: 15px;
}
.wrap .breadcrumb{
    background: transparent;
    margin-bottom: 0px;
    padding: 0px;
}
.wrap .breadcrumb li{
    font-weight: 300;
    color: #576176;
}
.wrap .breadcrumb li a{
    color: #576176;
}
.fa-btn-sm{
    font-size: 22px;
}
.fa-btn-md{
    font-size: 26px;
}
.btn{
    font-family:  'Roboto Condensed', sans-serif;
}
.btn-text-success{
    color: #5cb85c;
}
.btn-text-success:hover{
    color: #449d44;
}
.btn-text-danger{
    color: #d9534f;
}
.btn-text-danger:hover{
    color: #c9302c;
}
.custom-btn-icon{
    padding: 6px 10px 6px 5px;
}
.custom-btn-icon .fa{
    border-radius: 100%;
    padding: 4px 5px;
    margin-right: 5px;
    font-size: 12px;
}
.custom-btn-icon.btn-success .fa{
    border: solid 1px #449d44;
}
.custom-btn-icon.btn-success:hover .fa{
    border: solid 1px #5cb85c;
}
.custom-btn-icon.btn-danger .fa{
    border: solid 1px #c9302c;
}
.custom-btn-icon.btn-danger:hover .fa{
    border: solid 1px #d9534f;
}
.custom-btn-icon.btn-primary .fa{
    border: solid 1px #313131;
}
.custom-btn-icon.btn-primary:hover .fa{
    border: solid 1px #858587;
}
.custom-btn-icon.btn-info .fa{
    border: solid 1px #269abc;
}
.custom-btn-icon.btn-info:hover .fa{
    border: solid 1px #5bc0de;
}
.custom-btn-icon.btn-warning .fa{
    border: solid 1px #d58512;
}
.custom-btn-icon.btn-warning:hover .fa{
    border: solid 1px #f0ad4e;
}
.multiselect-native-select .multiselect{
    width: 80%;
}
 .page-title{
    margin: 0 0 20px 0;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.border-theme{
    background: #FFF;
    /*border-left: solid 3px #32c5d2!important;*/
    border-left: solid 3px #3c8dbc!important;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 0px 10px;
    margin-bottom: 10px;
}
.box-section{
    border-right: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 5px;
   margin-top: 5px;
   padding: 7px;
    position: relative;
}
.big-heading{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 22px;
    color: #5a5a5a;
    margin-bottom: 0px;
    margin-top: 3px;
    display: inline-block;
    vertical-align: middle;
}
.box-section p{
    color: #95A5A6;
    font-weight: 300;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 5px;
    margin-left: 15px;
    margin-top: 3px;
    vertical-align: top;
}
.box-section-last-child{
    border: none;
}

/*.state-box,
.county-box,
.township-box{

}*/
.state-box:after,
.county-box:after,
.township-box:after{
    content: "";
    background: url(../img/state_icon.svg) no-repeat 95% / contain ;
    opacity: 0.20;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;

}
.county-box:after{
    background-image: url(../img/county_icon.svg);
}
.township-box:after{
    background-image: url(../img/township_icon.svg);
}

.box-white {
    position: relative;
    border-radius: 0px;
    background: #ffffff;
    /*border-top: 3px solid #d2d6de;*/
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.box-white .box-body{
        padding: 15px;
}
.heading_lines{
    border-top: none;
    border-bottom: 0px solid #eef1f5;
    margin-bottom: 0px;
    padding: 12px 5px;
    position: relative;
    color: #576176;
}
.heading_lines span{
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
}
.heading_lines .fa{
    font-size: 18px;
    margin-right:5px;
}
.box-white .heading_lines{
    border-top: none;
    border-bottom: 0px solid #eef1f5;
    margin-bottom: 15px;
    padding: 0px 0px 10px 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #2f353b!important;
    /*color: #32c5d2!important;*/
}
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 0px 5px  rgba(0,0,0,0.1);
}
.box-header.with-border {
    border-bottom: 1px solid #f4f4f4;
}
/* box color specfication */
.box.box-primary {
    border-top-color: #3c8dbc;
}
/* box color specfication */
.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}
.box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
    font-family: 'Roboto Condensed', sans-serif;
}
.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 20px 10px;
}

.fixed-height{
    min-height: 375px;
    max-height: 375px;
}
.reorder-th{
    width:75px;
    text-align: center;
    vertical-align: middle;
}
.action-th{
    width:75px;
    text-align: center;
}
.key-th{
    width:10%;
}
/*.custom-drag-table tbody tr td:first-child{
    text-align: center;
}*/
.custom-drag-table tbody tr .action-td{
    text-align: center;
    cursor: pointer;
	vertical-align: baseline;
}
.custom-drag-table tbody tr td{
    vertical-align:middle;
    padding: 5px 8px;
}
.custom-table-wrap{
    height: auto;
    overflow: auto;
}
.custom-table-wrap .mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{
    background-color:rgba(0,0,0,0.5);
}
.custom-table-wrap .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color:rgba(0,0,0,0.75);
}
.custom-table-wrap .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{background-color:rgba(0,0,0,0.85);}
.custom-table-wrap .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color:rgba(0,0,0,0.85);
}
.custom-table-wrap .mCSB_outside + .mCSB_scrollTools{
    right: -20px;
}
/* freeze table */
.freeze-table-wrap{
    height: 560px;
}
.custom-freeze-table thead tr th{
    font-weight: 600;
    font-size: 13px;
}
.custom-freeze-table tbody tr:nth-of-type(odd) th:first-child,
.custom-freeze-table tbody tr:nth-of-type(even) th:first-child{

    border-left:0px;
    background-color: #f3f4f6;
    padding: 7px 5px;
    margin-bottom: -1px;
    margin-right:-1px;
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #5a5a5a;
}
.custom-freeze-table tbody tr:nth-of-type(even) th:first-child{
    display: inline-block;
    width: 100%;
    background-color:transparent!important;
    border-right:0px solid #ddd;
}
.custom-freeze-table > tbody > tr.heading-bg td{
    background-color:#576176 ;
    padding:2px 5px;
    position: inherit;
    font-weight: 600;
    font-size: 14px;
    color:#FFF;
    border-right:0px;
    border-left:0px;
}
.custom-freeze-table tbody .output-tr td:first-child{
    margin-right:-1px;
    display: block;
    padding: 7px 5px;
    border-bottom: medium none;
    border-left: medium none;
    font-weight: 600;
    font-size: 13px;
    color: #5a5a5a;
}
.custom-freeze-table.table-striped > tbody > tr:nth-of-type(2n+1){
    /*background-color: #f3f4f6;*/
}
.custom-freeze-table tbody tr td{
    padding: 0px 0px;
    margin: 0px 0px;
    display: table-cell;
}
.custom-freeze-table tbody tr .key_td{
    font-weight: 600;
    text-align: center;
    border-left:1px solid #ddd !important;
    background-color: #f3f4f6;
    vertical-align: middle;
}
.custom-freeze-table tbody tr td input,
.custom-freeze-table tbody tr td textarea{
    border: 0px solid #d8d8d8;
    padding: 8px 5px;
    margin-left: 0px;
    width: 96%;
}
.custom-freeze-table tbody tr td input:hover{
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 10px rgba(102, 175, 233, 1);
  }
  .custom-freeze-table tbody tr .td_not_required_input input:hover{
        box-shadow: none;
    }
.custom-freeze-table tbody tr .result-td{
    border-left: 0px solid #d8d8d8;
     border-right: 0 none;
}

.custom-freeze-table tbody tr .result-td textarea{
    border-bottom: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
}
.custom-freeze-table .formula_output{
    margin-top: 0px;
    padding: 7px 5px;
    border-right: solid 1px #ddd;
}
.custom-freeze-table .popover button.close{
    color:#d9534f;
    opacity: 0.6;
    margin-top: -5px;
}
.custom-freeze-table .popover button.close:hover,
.custom-freeze-table .popover button.close:focus{
    opacity: 0.9;
}
.custom-freeze-table .popover .text-info{
    color:#576176;
}
.custom-freeze-table .popover-content{
    color:#d9534f;
}
td_not_required_input
.custom-freeze-table .td_required_input input[type=checkbox],
.custom-freeze-table .td_required_input input[type=text],
.custom-freeze-table .td_required_input textarea[type=text],
.custom-freeze-table .td_not_required_input input[type=checkbox],
.custom-freeze-table .td_not_required_input input[type=text],
.custom-freeze-table .td_not_required_input textarea[type=text]{
    display: inline-block;
     margin-left:4%;
}
.custom-freeze-table .td_required_input textarea[type=text]{
    /*width: 94%;*/
}
.custom-freeze-table .td_required_input .control,
.custom-freeze-table .td_not_required_input .control{
    cursor: pointer;
    display: inherit;;
    font-size: 18px;
    margin-bottom:0px;
    padding-left: 0px;
    position: relative;

}
.custom-freeze-table .td_required_input .control--checkbox .control__indicator:after,
.custom-freeze-table .td_not_required_input .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 9px;
}
.custom-freeze-table .td_not_required_input .control__indicator,
.custom-freeze-table .td_not_required_input .control:hover input ~ .control__indicator,
.custom-freeze-table .td_not_required_input .control input:focus ~ .control__indicator {
    background:transparent;
    border:solid 1px rgba(14, 100, 125,1);
}
.custom-freeze-table .td_required_input .control__indicator,
.custom-freeze-table .td_not_required_input .control__indicator{
    top: 6px;
}
.input_error{
    /*box-shadow: 0 0px 0px rgba(100, 0, 0, 0.075) inset, 0 0 10px rgba(100, 0, 0, 1);*/
	/*border: 1px solid red !important;*/
    background-color: rgba(100, 0, 0,0.7);
    color: #fff;
}
/*header*/
.wrap .navbar{
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.5);
}
.menu-list{
    margin-top: 21px;
    display: inline-block;
    background-color: #4f4f4f;
    padding: 3px 5px 0;
    border: solid 1px #4f4f4f;
    border-bottom: none;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.user-select{
    min-height: 56px;
    /*background-color: #c14e11;*/
}
.user-select:hover{
    background-color: #3b3b3b;
}
.user-select .btn-select{
    line-height: 65px;
    text-align: right;
    padding-right: 17px;
}
.profile-name-wrap{
    display: block;
}
.profile-name{
    display: inline-block;
    color: #FFF;
}
.profile-img{
    display: inline-block;
    margin-left: 10px;
    border-radius: 100%;
    border: solid 1px #FFF;
    height: 30px;
    width: 30px;
    text-align: center;
    vertical-align: middle;
}
.profile-img img{
    vertical-align: top;
    margin-top: 4px;
}


table tr td a span.glyphicon{
    border: none;
    color: #FFF;
    font-size: 10px;
    padding: 0px;
    width: 22px;
    height:22px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    border-radius: 100%;
}
table tr td a span.glyphicon-eye-open{
    background: #2e6da4;
}
table tr td a span.glyphicon-pencil{
    background: #eea236;
}
table tr td a span.glyphicon-trash{
    background: #d43f3a;
}
table tr td a span.glyphicons-briefcase{
    background: #048E69;
	 border: none;
    color: #FFF;
    font-size: 10px;
    padding: 0px;
    width: 22px;
    height:22px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    border-radius: 100%;
}
.create-form-page .form-inline .form-group,
.double-coloum .form-inline .form-group {
    display: block;
}
.create-form-page .form-inline .control-label{
    margin-top: 6px;
    margin-right: 2%;
    text-align: right;
    width: 22%;
    vertical-align: top;
}
.create-form-page .help-block{
    margin-left: 24.1%;
}
.create-form-page .form-inline .form-control,
.create-form-page .form-inline .cke_chrome{
    width: 40%;
    display: inline-block;
}
.create-form-page .form-inline .cke_chrome{

}
.create-form-page .btn-wrap{
    margin-left: 24.1%;
}
.double-coloum .form-inline .control-label{
    width: 22%;
}
.double-coloum .form-inline .form-control{
    width: 60%;
}
.create-form-page .btn-wrap button{margin-right: 20px;}
.create-form-page .form-inline .select2-container--krajee{
    display: inline-block;
    width: 60%!important;
}
.create-form-page .form-inline .input-sm.select2-container--krajee .select2-selection--multiple,
.create-form-page .form-inline .input-group-sm .select2-container--krajee .select2-selection--multiple{
    border-radius: 0px;
}
.create-form-page .form-inline .input-sm.select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field,
.create-form-page .form-inline .input-group-sm .select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field{

}
.double-coloum .form-inline .col-md-6 .form-group{
    margin-bottom: 20px;
}

/* ------- list view page ------- */
.list-view-page{

}
.detail-view > tbody > tr > th {
    color: #5c5c5c;
    font-weight: bolder;
    width: 50%;
}
/*------- list view page -------- */
*{ margin:0px; padding:0px; font-size:12px; font-family:arial;}
  .inv_1{
	width:1000px; margin:0 auto; padding:20px; background:#b7e2f3;
  }
  .quto_1{
	width:1000px; margin:0 auto; padding:20px; background:#b7e2f3;
  }
  .labour_bill{
	width:1000px; margin:0 auto; padding:20px; background:#b7e2f3;
  }
  .inv_1 table{
	width:100%;
  }
  .quto_1 table{
	
	width:100%;
  }
  .labour_bill table{
	
	width:100%;
  }
  .quto_1 table tr td p{
	margin:0px;
  }
  table tr td{
	padding:0px;
	margin:0px
  }
  .cmpy_title{
	font-size:24px;
	font-style:italic;
	padding:5px 0px;
	font-weight:bold;
  }
  .page_title{
	font-size:18px;
  }
  .td_br tr td{
	border-bottom:1px dotted #666;
	padding:4px 0px;
  }
  .text-left{
	float:left;
  }
  .text-right{
	float:right;
  }
  .div_height{
	float:left;
	min-height:300px;
	width:100%;
  }
  .foot_head{ font-style:italic;}
  .foot_head span{
	font-weight:bold; 
	font-size:14px;
  }
  .br-rt{
	border-right:1px solid #ccc;
  }
  .br-lt{
	border-left:1px solid #ccc;
  }
  .br-tp{
	border-top:1px solid #ccc;
  }
  .br-bt{
	border-bottom:1px solid #ccc;
  }
  .br tr td{
	border:1px solid #ccc;
  }
  .br-dot{
	border-bottom:1px dotted #ccc;
  }
  .td_pad tr td{
	padding:4px 0px;
  }
  .total_amt{
	  float:right
  }
  
  table tr td{
	padding:0px;
	margin:0px
  }
  .cmpy_title{
	font-size:30px;
	font-style:italic;
	text-transform: uppercase;
  }
  .page_title{
	font-size:18px;
	text-transform: uppercase;
  }
  .td_br tr td{
	border-bottom:1px dotted #666;
	padding:4px 0px;
  }
  .text-left{
	float:left;
  }
  .text-right{
	float:right;
  }
  .div_height{
	float:left;
	min-height:300px;
	width:100%;
  }
  .foot_head{ font-style:italic;}
  .foot_head span{
	font-weight:bold; 
	font-size:14px;
  }
  .br-rt{
	border-right:1px solid #30a0cc;
  }
  .br-lt{
	border-left:1px solid #30a0cc;
  }
  .br-tp{
	border-top:1px solid #30a0cc;
  }
  .br-bt{
	border-bottom:1px solid #30a0cc;
  }
  .br tr td{
	border:1px solid #30a0cc;
  }
  .br-dot{
	border-bottom:1px dotted #30a0cc;
  }
  .td_pad tr td{
	padding:4px 0px;
  }
  .td_pad_1 tr td{
	padding:3px;
  }
  .td_pad_2{
	padding:2px 3px;
  }
.quto_detail{
	width: 1000px;
	margin: 0px auto;
	padding: 20px;
	background: #B7E2F3 none repeat scroll 0% 
}
.sub_title{
	font-size: 16px;
	font-family: "Roboto Condensed",sans-serif;
	color:#576176;
	padding: 15px 0px 0px 10px;
}
.full_input .form-control{
	width:100% !important;
}
.custom-drag-table tbody tr .action-td .createBtn,
.custom-drag-table tbody tr .action-td .del_file{

}



/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	height:63px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-menu{
	background-color: #32B685;
	border:0px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
	
}

