html,body 
{
  background-color:#FFF; 
  height:100%;

	margin: 0px;
	padding: 0px;

	font-family: 'tt-norms-pro', Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  color:#000;

  -webkit-tap-highlight-color:  transparent; 
}


/*---------------------------------------------------------------------
- Scroll Bars
*/
*::-webkit-scrollbar 
{
  width: 8px;
}

*::-webkit-scrollbar-track 
{
  background-color: f9fafb;
  border-left:none;
}

*::-webkit-scrollbar-thumb 
{
  background-color: #70628f;
  /* border: 1px solid rgba(38, 44, 54, .7); */
  margin:1px;
  border-radius:2px;
  cursor: pointer;
}


/*---------------------------------------------------------------------
- H1, H2, H3, subtitle
*/
h1 
{
  font-family: 'tt-norms-pro-light', Arial, sans-serif;
  font-size: 40px;
  color: #000;
  margin:0;
  margin-bottom:5px;
  line-height:48px;
}
h2 
{
  font-size: 20px;
  font-weight: 500;
  color:#3db8db;
  margin: 0px;
  margin-bottom:5px;
}
h3 
{
  font-size: 18px;
  font-weight: bold;
  color:#3db8db;
  margin: 0px;
  margin-bottom:5px;
}
.subtitle 
{
  font-size: 18px;
  font-weight: normal;
  color:#94979B  ;
  margin: 0px;
  margin-bottom:5px;
}


/*---------------------------------------------------------------------
- Page Layout Containers
*/
.content
{
  position:relative; 
  max-width: 1180px;
  min-width:320px;
  text-align:left; 
  margin-left:auto;
  margin-right:auto;
  padding: 0 15px;
  
}

#header
{
  background-color:#1E45E2;
  height:85px;
  position:relative;
  z-index:96;
}

#view
{
  padding: 0 15px 50px 15px;
  max-width: 1180px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.gray-panel {
  margin:20px 0;
    background-color:#f1f1f3;
    padding:30px;
    border-radius:20px;
}



/*---------------------------------------------------------------------
- CUSTOM ELEMENTS
*/
#globalOverlay
{
  position:fixed;
  z-index:95;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: rgba(0,0,0,.65);
  opacity:.9;
}

.label
{
  display:block;
  font-size: 18px;
  font-weight:500;
  color: #000;
  margin-bottom:15px;
}

.user-icon
{
  display:inline-block;
  width:20px;
  height:20px;
  border-radius:50%;
  border:2px solid #FFF;
  background-color:transparent;
  cursor:pointer;
  overflow:hidden;
}

.user-icon:before
{
  content:'';
  display:block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color:transparent;
  border:2px solid #FFF;
  margin-top: 2px;
  margin-left: 4px;
}

.user-icon:after
{
  content:'';
  display:block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color:transparent;
  border:2px solid #FFF;
  margin-top:2px;
  margin-left: -4px;
}
.user-icon-hidden-part
{
  position:absolute;
  width: 4px;
  height: 2px;
  transform: rotate(45deg);
  top: 47px;
  left: 16px;
  background-color: #70628f;
}

/* -- Search Input --*/
input.search
{
  border: 1px solid #d2d3d9 !important;
  color: #a7a9b6 !important;
  padding-right:40px !important;
}

.input-search-wrapper
{
  display:inline-block;
  position:relative;
}

.input-search
{
  font-size:17px;
  color:#a7a9b6;
  position:absolute;
  top:12px;
  right:13px;
  pointer-events:none;
}




/*---------------------------------------------------------------------
- Horizontal and vertical ruller
*/
hr
{
  margin: 10px 0 10px 0;
  border: 0;
  height: 1px;
  background-color:#d2d3d9;
}

hr.vert
{
  border: 0;
  margin:0;
  width:1px;
  height: 100%;
  background-color:#d2d3d9;
}

/*---------------------------------------------------------------------
- Spinner for loader
*/

.spinner {
  /* display: none; */
  position: absolute;
  box-shadow: 0 0 45 rgba(80, 147, 225,.25);
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 4px solid rgba(112, 98, 144, 0.25);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.gridLoader .spinner {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
}

.spinner:before, .spinner:after {
  content: "";
  position: absolute;
  margin: -4px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;

  -webkit-animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
  animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
}

.spinner:before {
  border-top-color: #FFF;
}

.spinner:after {
  border-top-color: #FFF;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes spinner-spin {
  100% {
      transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-spin {
  100% {
      -webkit-transform: rotate(360deg);
  }
}

  
 
/*---------------------------------------------------------------------
- STANDARD TAGS
*/

/* -- A href -- */
A:link {color: #1e45e2;	text-decoration: none; transition: all .3s;}
A:visited {color: #1e45e2;	text-decoration: none;}
A:hover {text-decoration: underline;}
  
  
/* -- Input tags -- */
input[type=text],input[type=file],input[type=password],input[type=email],input[type=number], textarea
{
  font-family:   'tt-norms-pro', Arial, Tahoma, Helvetica, sans-serif;
  border: 1px solid #979797;
  font-size: 20px;  
  color: #4a4a4a;
  padding: 14px 16px;
  background-color:#FFF;
  border-radius:10px;
  margin:1px;
  
  width:100%;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b7bfc2;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #b7bfc2;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #b7bfc2;
}
:-moz-placeholder { /* Firefox 18- */
  color: #b7bfc2;
}

input:disabled, textarea:disabled
{
  color:#aaa;
  background-color:#f1f1f1;
}

textarea
{
  resize: none;
}

/* Input type file */
input[type=file]
{
  position:relative;
  overflow:hidden;
}

input[type=file]:before
{
	content: attr(placeholder);
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;

	position:absolute;
	padding:12px;
	box-sizing:border-box;
	z-index:2;
	top:0;
	left:0;
	right:30px;
	background-color:inherit;
	height:100%;
}

input[type=file].error:before
{
	background-color: #FFC !important;
	border:none !important;
}

input[type=file]:disabled:before
{
	color:#aaa;
}

input[type=file]:after
{
	content:'\f016';
	font-family: 'FontAwesome', 'Arial Unicode MS';
	position:absolute;
	z-index:3;
	top:0;
	right:0;
	bottom:0px;
	background-color:#1E45E2;
	color:#fff;
	padding:15px;
	cursor:pointer;
	font-size:14px;
  line-height:24px;
}

input[type=file]:disabled:after
{
	cursor:default;
	background-color:#dadada;
}
  
/* -- Select -- */
select
{	
  -webkit-appearance: none;   
  box-sizing:border-box;
  font-family:   'tt-norms-pro',Arial, Tahoma, Helvetica, sans-serif;
  border:none;
  background:transparent;
  font-size: 20px; 
  color: #728287;
  padding: 14px 35px 14px 16px;
  border-radius:3px;
}
  
.divSelect
{
  display:inline-block;
  border: 1px solid #979797;
  background-color:#FFF;
  border-radius:10px;
  margin:1px;
}
  
.divSelect:after
{
  content:'\f107';
  font-family:'FontAwesome';
  font-size:30px;
  color:#757787;
  position:absolute;
  margin-left:-30px;
  margin-top:9px;
  pointer-events:none;
}
  
option
{
  padding:12px 16px;
  font-size: 18px;  
  background-color:#FFF;
  border-bottom: 1px solid #edeef0;
}

option:nth-child(even)
{
  background-color:#f9fafb;
}
  
optgroup
{
  color: #555;
}
  
/* -- Fieldset -- */
fieldset 
{
  padding: 5px;
  border: 1px solid #bbb;
  border-radius:5px;
  margin-top:5px;
  margin-bottom:10px;
}

fieldset > legend 
{
  color:#888;
  padding: 0px 7px 0px 7px;
  text-align:left;
}

/* -- Errors -- */
input.validation-error, textarea.validation-error,select.validation-error, input.validation-error + label:before
{
  background-color:#FFC !important;
}
span.validation-error
{
  display:none !important;
  position:absolute;
  left:0;
  color:#b52a2a !important;
  font-size:14px;
  font-weight:normal;
}

/* -- Checkbox -- */
input[type="checkbox"]
{
  opacity:0;
  position:absolute;
}

input[type="checkbox"] + label:before {
  content: '\00a0';
  font-family: 'FontAwesome', 'Arial Unicode MS';
	display: inline-block;
	width: 16px;
	height: 16px;
	font-size: 12px;
	line-height: 16px;
	margin-right: 0;
	background-color: #FFF;
  border: 1px solid #b2c6cc;
  border-radius:3px;
	color:#728287;
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: 2px;
	left: 0;
	transition: all .3s;
	outline: 1px solid transparent;
}

input[type="checkbox"]:checked + label:before {
	content: '\f00c';
	font-family: 'FontAwesome', 'Arial Unicode MS';
	background-color: #FFF;
	color: #718186;
}

input[type="checkbox"] + label:hover:before {
	/* outline: 1px solid #8ec341; */
}

input[type="checkbox"] + label {
  cursor: pointer;
  display:inline-block;
  font-weight:normal;
  /* position:absolute; */
  left: 17px;
  padding-left: 30px;
}

input[type="checkbox"]:disabled + label {
	color: #aaa;
	cursor: default;
}

input[type="checkbox"]:disabled + label:before {
	background-color: #555;
	border: 1px solid #ececec;
	color: #dadada;
	cursor: default;
	outline: 1px solid transparent;
}
input[type="checkbox"]:disabled:checked + label:before {
	background-color: #555;
	border: 1px solid #ececec;
	color: #dadada;
	cursor: default;
	outline: 1px solid transparent;
}

input[type="checkbox"]:checked + label.tooltip:before {
	background-color: #7ccc7b !important;
	border: 1px solid #7ccc7b;
}


/* -------------------------------------------------------------------- */
/* Radio button */
input[type="radio"]
{
  height:18px;
}

input[type="radio"] + label {
  cursor: pointer;
  text-transform: none;
  position:absolute;
  left: 23px;
  padding-left: 15px;
  padding-top:2px;
}

input[type="radio"] + label:before {
  content: '\00a0';
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 17px;
  margin-right: -10px;
  background-color:rgba(255,255,255,1);
  border: 2px solid #706290;
  color: #000;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  left: -20px;
  transition: all .3s;
  outline: 1px solid transparent;
}

input[type="radio"]:checked + label:before {
  content: '\f111';
  font-family: 'FontAwesome', 'Arial Unicode MS';
  font-size:13px;
  background-color: #FFF;
  border: 2px solid #706290;
  color:#706290;
}

input[type="radio"] + label:hover:before {
  border-radius: 50%;
  /*outline: 1px solid #5093e1;*/
}

input[type="radio"]:disabled + label {
  color: #aaa;
}

  
/* -- Buttons -- */
button, .btn
{
  
  position:relative;
  overflow:hidden;
  border: none;

  font-family: 'tt-norms-pro',Arial, Tahoma, Helvetica, sans-serif;
  font-size: 18px; 
  
  text-decoration: none;
  padding: 13px 22px;

  -moz-border-radius: 50%; 
  border-radius: 30px;
  border:1px solid transparent;

  color: #FFF;
  background-color:#1E45E2;
  cursor:pointer;

  transition: all .2s;
}

button:hover, .btn:hover
{
  color:#d9ff00;
}

button:disabled, .btn:disabled
{
  color: #ccc!important;
  background-color:#60656b !important;
  cursor:default;
  border: 1px solid #60656b !important;
}

button.purple, .btn.purple{ color: #FFF; background-color: #70618f; border:1px solid transparent; }
button.purple:hover, .btn.purple:hover { color:#FFF;background-color: #52476b; }

button.clear, .btn.clear{ color: #1E45E2; background-color: #FFF; border:2px solid #1E45E2; }
button.clear:hover, .btn.clear:hover { color:#FFF;background-color:#1E45E2; }

button.clear-white, .btn.clear{ color: #FFF; background-color:transparent; border:2px solid #FFF; }
button.clear-white:hover, .btn.clear-white:hover { background-color:#52476b; }

button.submiting, .btn.submiting
{
  pointer-events: none;
}

button.submiting:before, .btn.submiting:before
{
  content:"";
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  background-color:rgba(0,0,0,.35);
  
}
button.submiting:after, .btn.submiting:after
{
  content:"";
  position:absolute;
  top:10px;
  left:50%;
  margin-left:-12px;

  width: 25px;
  height: 25px;
  border-top-color: #FFF;
  border-left-color: #FFF;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;  
  box-sizing: border-box;
  display: inline-block;

  -webkit-animation:spin 650ms linear infinite;
  -moz-animation:spin 650ms linear infinite;
  animation:spin 650ms linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }




/*---------------------------------------------------------------------
- Data-grid
*/
.data-grid > div
{
  overflow:auto;
  overflow-y:hidden;
}

.data-grid table 
{
  position:relative;
  width:100%;
  min-width:500px;
  border-spacing:0;
  background-color:#FFF;
}
.data-grid tr td, .data-grid tr th
{
  position:relative;
  padding:15px 6px;
  transition: all .3s;

  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.data-grid tr td
{
  font-family:'tt-norms-pro', arial;
  font-size:15px;
}

.data-grid thead
{
  background-color:#FFF;
  color:#3AB9DC;
  overflow:hidden;
  border-bottom:2px solid #979797;

  font-family:'tt-norms-pro-bold', arial;
  font-size:16px;
  text-align:left;
}

.data-grid thead th.sort_up:after
{
  content:'\f106';
  font-family:'FontAwesome';
  /* font-size:20px; */
  line-height:10px;
  color:#3AB9DC;
  margin-left:5px;
  pointer-events:none;
}

.data-grid thead th.sort_down:after
{
  content:'\f107';
  font-family:'FontAwesome';
  /* font-size:20px; */
  line-height:10px;
  color:#3AB9DC;
  margin-left:5px;
  pointer-events:none;
}

.data-grid tr
{
  border:none;
  border-bottom:1px solid #bcbcbc;
}
.data-grid tr:last-child
{
  border-bottom:none;
}
.data-grid tbody tr:nth-child(odd)
{
  /* background-color:#f9fafb; */
}

.data-grid tbody tr:hover td
{
  background-color:#d7f1f8;
}

.data-grid tbody 
{
    display:block;
    /* height:120px; */
    overflow:auto;
    overflow-x:hidden;
    min-height: 40px;
    min-width:900px;
}
.data-grid thead, .data-grid tbody tr 
{
    display:table;
    width:100%;
    table-layout:fixed;
}
.data-grid thead th.last
{
    width: 8px;
    padding:0;
}

/* .data-grid thead
{
    width: calc( 100% - 8px )
} */

.data-grid tbody::-webkit-scrollbar, .data-grid > div::-webkit-scrollbar 
{
  width: 8px;
}

.data-grid tbody::-webkit-scrollbar-track, .data-grid > div::-webkit-scrollbar-track
{
  background-color: #f9fafb;
  border-left:1px solid #dee2e7;
}

.data-grid tbody::-webkit-scrollbar-thumb, .data-grid > div::-webkit-scrollbar-thumb 
{
  background-color: #70628f;
  /* border: 1px solid rgba(38, 44, 54, .7); */
  margin:1px;
  border-radius:5px;
  cursor: pointer;
}

/* -- Data table pagination -- */
.data-grid .paginator
{
  position:relative;
  text-align:center;
  padding:30px 0;
  font-size:0;
  border-top: 2px solid #979797;
}

.data-grid .paginator ul
{
  display:inline-block;
  margin: 0;
  padding: 0;
  list-style: none outside none;

  height:42px;
  /* background-color:#eff0f4;
  border-radius:20px; */
}

.data-grid .paginator ul > li
{
  display:inline-block;
  width:36px;
  height:36px;
  border-radius:50%;
  text-align:center;
  background-color:transparent;
  color:#3db8db;
  font-size:20px;
  font-weight:normal;
  padding-top:7px;
  margin:3px;

  transition:all .3s;
  cursor: pointer;
}

.data-grid .paginator ul > li:hover, .data-grid .paginator ul > li.current
{
  background-color:#3db8db;
  color:#FFF;
}

.data-grid .paginator ul > li.current
{
  background-color:#FFF;
  color:#728287;;
  cursor:default;
}

.data-grid .paginator div.prev-arrow, .data-grid .paginator div.next-arrow
{
  display:inline-block;

  width:35px;
  height:35px;
  border-radius:50%;
  background-color:#FFF;
  border: 1px solid #979797;
  color: #1BA4CD;
  font-size:28px;
  line-height:34px;
  margin:0 15px;
  margin-top:-2px;

  transition: all .3s;

}

.data-grid .paginator div.prev-arrow i
{
  margin-left:-4px;
}

.data-grid .paginator div.next-arrow i
{
  margin-left:2px;
}

.data-grid .paginator div.prev-arrow:hover, .data-grid .paginator div.next-arrow:hover
{
  background-color:#3db8db;
  color: #FFF;
}

.data-grid .paginator ul > li.dots
{
  background-color:transparent;
  color:#525d61;
  cursor:default;
  width:auto;
}

.data-grid .paginator .total-info
{
  position:absolute;
  left:0;
  top:42px;
  font-size:16px;
}

.data-grid .paginator .goto-page
{
  position:absolute;
  right:0;
  top:23px;
  font-size:16px;
}


/*---------------------------------------------------------------------
- Switch radio
*/
.switchRadio {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 30px;
  border:1px solid #70618f;
  /* height:41px; */
}

.switchRadio input {
  display: none;
}

.switchRadio label {
  float: left;
  font-size: 14px;
  font-weight:normal;
  color:#70618f;
}

/* needed to neutralize styling of radio button */
.switchRadio label:before {
  content: '' !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  margin: 0 !important;
}

.switchRadio label {
  display: inline-block;
  background-color: #FFF;
  text-align: center;
  padding: 12px 45px;
  border-right: none;
  transition: all 0.3s;
  
}


.switchRadio label:hover {
  text-decoration: underline;
}

.switchRadio input:disabled + label {
  background-color: #fcfcfc;
}

.switchRadio input:disabled:checked + label {
  background-color: #aaa;
}

.switchRadio label:hover {
  cursor: pointer;
}

.switchRadio input:checked + label {
  color: #FFF;
  background-color: #706290;
  border-radius:30px;
}

.switchRadio label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switchRadio label:last-of-type {
  border-radius: 0 4px 4px 0;
}


/*
    ------------------------------------------------------------
    -- autocomplete
    */

    .autoc
    {
        width:100%;
        position:relative;
    }

    .divAutoc
    {
      display:inline-block;
      border: 1px solid #979797;
      background-color:#FFF;
      border-radius:10px;
      margin:1px;
    }
      
    .divAutoc:after
    {
      content:'\f002';
      font-family:'FontAwesome';
      font-size:30px;
      color:#979797;
      position:absolute;
      margin-left:-40px;
      margin-top:9px;
      pointer-events:none;
    }

    .divAutoc.spiner:after
    {
      content:'\f110' !important;
      font-family:'FontAwesome';
      font-size:24px;
      color:#cccaca;
      position:absolute;
      margin-left:-40px;
      margin-top:14px;
      pointer-events:none;

      -webkit-animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
      animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
    }

    .autoc-text
    {
      border:none !important;
      border-radius:10px !important;
      margin:0 !important;
      width:100% !important;
      padding-right:50px !important;
    }

    .autoc-results
    {
      position:absolute;
        z-index:100;
        display:none;
        width:100%;
        max-height:200px;
        overflow:auto;
        overflow-x: hidden;

        
        background-color:#FFF;
        border:1px solid #e0e6e8;
        border-radius:0;
        box-shadow:0 10px 10px rgba(0,0,0,.15);  
    }
    .autoc-result
    {
        padding:5px 7px;
        overflow:hidden;
        white-space:nowrap;
        cursor:pointer;

        transition: all .2s;
    }

    .autoc-result:hover, .autoc-result.selected
    {
        color:#fff;
        background-color:#7a4c8b;
    }

    .autoc-results::-webkit-scrollbar 
    {
      width: 10px;
    }

    .autoc-results::-webkit-scrollbar-track 
    {
      background-color: transparent;
      border-left:none;
    }

    .autoc-results::-webkit-scrollbar-thumb 
    {
      background-color: #FFF;
      border: 2px solid #2d343e;
      margin:1px;
      border-radius:5px;
      cursor: pointer;
    }


  /*---------------------------------------------------------------------
  -- modal
 */
 .modalOverlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.65);
    opacity:.9;
    z-index: 1000;
  }
  
  .modalDialog {
    position: fixed;
  
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
  
    min-width: 400px;
    min-height:50px;
    max-height:95%;
    background-color: #FFF;
    /* box-shadow: 0px 0px 35px rgba(0, 0, 0, .35);
    border: 1px solid #FFF;
    border-radius:6px; */
    overflow:auto;
    padding:50px 105px;
    border-radius:20px;
  
    z-index: 1001;
  }
  
  .modalDialogLoader {
    display: none;
  
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .85);
    z-index: 10;
  }
  
  .modalHeader {
    position: relative;
  
    padding: 0 15px 20px 15px;
    font-family:'tt-norms-pro-bold', arial;
    font-size: 32px;
    line-height:48px;
    color:#000;
    background-color:#FFF;
    text-align:center;
  }
  
  .modalClose {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 32px;
    color: #70628f;
    font-weight: lighter;
  
    line-height: 28px;
  
    padding: 0 5px 2px 5px;
    border-radius: 5px;
    background-color: transparent;
  
    transition: all .3s;
  }
  
  .modalClose:hover {
    color: #FFF;
    background-color: #652d90;
  }
  
  /*---------------------------------------------------------------------
    -- Confirm
   */
   .confirmOverlay {
    display: none;
  
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .5);
    z-index: 1100;
  }
  
  .confirmDialog {
    position: fixed;
  
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
    border: 1px solid #c5c5d2;
  
    min-width: 400px;
    max-width: 500px;
    background-color: #FFF;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, .25);
    z-index: 1001;
  }
  
  .confirmHeader {
    padding: 10px 15px;
    font-size: 16px;
    color:#000;
    border-bottom:1px solid #e7e7e7;
  }
  
  .confirmText {
    text-align: center;
    padding: 25px;
  }
  
  .confirmFooter {
    text-align: right;
    padding: 10px;
  }


 


    /* ------------------- Tabovi -------------- */
    div.tabs > ul
    {
        margin:0;
        padding:0;
        width:100%;
        display:table;
        table-layout: fixed;
        background:#424953;
        position:relative;
    }

    div.tabs > ul li
    {
        display:table-cell;
        padding:10px;
        margin:0px;
        text-align:center;
        border-bottom:1px solid #FFF;
        font-size:0;
    }

    div.tabs > ul li.tabsClose
    {
      position:relative;
      padding:0;
      width:100px;
      background:url(../img/bckgrd.jpg);
      text-align:center;
      vertical-align:top;
    }

    /* div.tabs > ul li.tabsClose:before
    {
      content:'';
      position: absolute;
      top:-5px;
      left:0;
      right:0;
      height:6px;
      background-color:#2d343e;
    } */

    div.tabs > ul li > img
    {
        margin-bottom:8px;
    }

    div.tabs > ul li.active
    {
        position:relative;
        top:-10px;
        bottom:0;
        /* z-index:40; */
        padding-top:20px !important;

        background:#2d343e;
        border:1px solid #FFF;
        border-bottom:1px solid transparent;
        border-radius: 10px 10px 0 0 ;
    }
    div.tabs > ul li.active:after
    {
        content:'';

        position: absolute;
        bottom: -11px;
        left: -1px;
        right: 0;
        border-left:1px solid #FFF;
        border-right:1px solid #FFF;

        background-color:#2d343e;
        height:11px;
        width:100%;
    }

    div.tabs > ul li.active img
    {
        margin-bottom:0 !important;
    }

    div.tabs > div
    {
        overflow:hidden;
        position:relative;
        width:100%;
        /* white-space:nowrap; */
    }

    div.tabs > div > div
    {
        display:none;
        width:100%;
        background-color:#2d343e;
        padding:10px;
    }

    div.tabs > div > div.active
    {
        display:block;
    }

    div.tabs > div > div.forSlideLeft
    {
        display:block;
        position:absolute;
        top:0;
        margin-left:100%;
    }
    div.tabs > div > div.forSlideRight
    {
        display:block;
        position:absolute;
        top:0;
        margin-left:-100%;
    }