@import url('reset.css');

h1{
  color: black;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin: 10px 0 30px;
  border-bottom: 0px solid black;
  line-height: 2;
  margin-top:80px;
}

h2{
    color: black;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin: 10px 0 10px;
    border-bottom: 0px solid black;
    line-height: 2;
  }
  
.nav_dashboard{
    color: black;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin: 10px 0 10px;
    border-bottom: 0px solid black;
    /* line-height: 2; */
  }

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


img {
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


textarea {
    resize: vertical;
}


.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


body{
  width: 97vw;
  height: auto;
  margin-left: 1vw;
  font-family: "Arial";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Forms */

.form-wrap{
    width: 35%;
    margin: 0 auto;
    /* text-align: center; */
}

.left-form{
  width: 47.5%;

  float: left;
}

.right-form{
  width: 47.5%;

  float: right;
}


@media screen and (max-width: 1200px) {
  .form-wrap{
    width: 90%;
  }
}


@media screen and (max-width: 600px) {
  .form-wrap{
    width: 90%;
  }

  .left-form{
    width: 100%;
  }

  .right-form{
    width: 100%;
  }
}

input[type=text], input[type=number], input[type=password], input[type=email], input[type=radio], select[type=text]{
    width: 100%;
    max-width: 320px;
    padding: 2px 0;
    margin: 0px 0 10px;
    display: inline-block;
    text-align: center;
    border: none;
    border-bottom: 1px solid #CF691E;
    box-sizing: border-box;
    background: transparent;
    outline: none;

    font-family: "Arial";
    font-size: 14px;
    opacity: 1;
    color: #3D3738;
    font-weight: 400;

    -webkit-transition: border-bottom 0.4s ease-in-out;
    transition: border-bottom 0.4s ease-in-out;
}

input[type=text]:focus, input[type=number]:valid, input[type=password]:focus {
    border-bottom: 1px solid #858783;
}


input[type=text]:valid, input[type=number]:valid, input[type=password]:valid {
    border-bottom: 1px solid #CF691E
} 

select[type=text]{
    min-width:50px;
    max-width:320px;
}

.buttonclass:enabled, input[type=submit]:enabled {
    width: auto;
	height: auto;
    background-color: white;
    color: black;
    padding: 5px 5px;
    margin: 8px auto 30px;
    border: 1px solid #3D3738;
    border-radius: 0px;
    cursor: pointer;
    display: block;
	
    font-family: "Arial";
    /* font-size: 24px; */
    font-size: 1.3em;
    opacity: 1;
    font-weight: 700;

    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.buttonclass:hover, input[type=submit]:hover {
    background-color: #dddddd;
    color: #CF691E;
}
.buttonclass:disabled, input[type=submit]:disabled {
    width: auto;
	height: auto;
    background-color: #EEEEEA;
    color: #858783;
    padding: 5px 5px;
    margin: 8px auto 30px;
    border: 1px solid #3D3738;
    border-radius: 0px;
    /*cursor: pointer;*/
    display: block;
	
    font-family: "Arial";
    /* font-size: 24px; */
    font-size: 1.3em;
    opacity: 1;
    font-weight: 700;

    /*-webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;*/
}

.linkclass:enabled {
    width: auto;
	height: auto;
    background-color: rgba(0, 0, 0, 0);
    color: #CF691E;
    padding: 0px 5px;
    white-space: nowrap;
    /* margin: 8px auto 30px; */
    border: 0px solid #3D3738;
    border-radius: 0px;
    cursor: pointer;
    display: inline-block;
	
    font-family: "Arial";
    font-size: 13px;
    opacity: 1;
    font-weight: 700;

    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.linkclass:hover {
    background-color: rgba(0, 0, 0, 0);
    white-space: nowrap;
    color: #CF691E;
    border: 0px solid #3D3738;
}
.linkclass:disabled {
    width: auto;
	height: auto;
    background-color: rgba(0, 0, 0, 0);
    white-space: nowrap;
    color: #858783;
    padding: 0px 5px;
    /* margin: 8px auto 30px; */
    border: 0px solid #3D3738;
    border-radius: 0px;
    /*cursor: pointer;*/
    display: inline-block;
	
    font-family: "Arial";
    font-size: 13px;
    opacity: 1;
    font-weight: 700;

    /*-webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;*/
}

.linkclassPadding:enabled {
    background-color: rgba(0, 0, 0, 0);
    color: #CF691E;
    padding: 0px 5px;
    white-space: nowrap;
    margin-left: 8px; 
    margin-right: 8px; 
    border: 0px solid #3D3738;
    border-radius: 0px;
    cursor: pointer;
    font-family: "Arial";
    font-size: 13px;
    opacity: 1;
    font-weight: 700;

    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

::-webkit-input-placeholder { /* Chrome */
  color: #858783;
  font-style: Arial;
  opacity: .7;
  font-size: 18px;
  font-family: "Arial";
  color: #858783;
  font-weight: 400;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #858783;
  font-style: Arial;
  opacity: .7;
  font-size: 18px;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #858783;
  opacity: .7;
  font-style: Arial;
  font-size: 18px;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #858783;
  opacity: .7;
  font-style: Arial;
  font-size: 18px;
}

.placeholder-class-red::-webkit-input-placeholder {
    color: #fd0202 !important;
    opacity: .7;
    font-size: 18px;
}

.placeholder-class-black::-webkit-input-placeholder {
    color: #000 !important;
    opacity: .7;
    font-size: 18px;
}
/* Typography */
/*, :-ms-input-placeholder, ::-moz-placeholder, :-moz-placeholder*/
/*
h1{
  color: black;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin: 10px 0;
}*/


@media screen and (max-width: 1200px) {
  h1{
    margin: 0px 0 0;
    font-size: 35px;
    margin-top:80px;
  }
}

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}



.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; 
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


/*88888888888888888888888888888888888888888888888 */

.radio_button_order {
    display: inline-block;
	text-align: center;
    position: relative;
	padding-left: 20px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio_button_order input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark_order {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: darkgray;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio_button_order:hover input ~ .checkmark_order {
    background-color: rgb(134, 131, 131);
}

/* When the radio button is checked, add a blue background */
.radio_button_order input:checked ~ .checkmark_order {
    background-color: #CF691E;
}

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

/* Show the indicator (dot/circle) when checked */
.radio_button_order input:checked ~ .checkmark_order:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio_button_order .checkmark_order:after {
 	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}

.checkboxgroup {
    display: inline-block;
    text-align: center;
  }
  .checkboxgroup label {
    display: block;
  }
/*88888888888888888888888888888888888888888888888 */

/* The radio_button */
.radio_button {
    display: inline-block;
	text-align: center;
    position: relative;
	padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio_button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

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

/* When the radio button is checked, add a blue background */
.radio_button input:checked ~ .checkmark {
    background-color: #CF691E;
}

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

/* Show the indicator (dot/circle) when checked */
.radio_button input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio_button .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* Create a custom checkbox*/
.checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 0%;
}

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

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

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

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark1 {
    background-color: #CF691E;
}

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

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

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 0px 16px;
    background-color: #fff;
    border-bottom: 1px solid #CF691E;
    color: black;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #fff;
    border-top: 1px solid #CF691E;
    text-align: center;
    color: black;
}

.linkback {
    color: #858783;
    cursor: pointer;
}
.linkback:hover {
    color: #858783;
    cursor: pointer;
}

.linkshow {
    color: #CF691E;
    cursor: pointer;
}
.linkshow:hover {
    color: #CF691E;
    cursor: pointer;
}

.linkhide {
    color: #858783;
    cursor: pointer;
}
.linkhide:hover {
    color: #858783;
    cursor: pointer;
}

.infosession {
    display: unset;
    height: 5px;
    line-height: 0px;
    font-size: 12px;
    color: #000;
    margin-bottom: 5px;
    clear:both;
	position: relative;
    text-align: right;
    top:65px;
}

.infosession p {
	margin: 0 0 15px;
}

.navbar {
    margin-bottom: 10px !important;
}

@media only screen and (max-width: 800px) {
	.TableInSide table, 
	.TableInSide thead, 
	.TableInSide tbody, 
	.TableInSide th, 
	.TableInSide td, 
	.TableInSide tr { 
		display: block; 
    }

	.TableInSide thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.TableInSide tr { 
        border: 2px solid #CF691E; 
        margin-left:1%;
        margin-right:1%;
    }

    .TableInSide td {text-align: center;}
	.TableInSide td:before { content: attr(data-title); font-weight: 600; }
}

@media only screen and (max-width: 10px) {
	.TableInSide2 table, 
	.TableInSide2 thead, 
	.TableInSide2 tbody, 
	.TableInSide2 th, 
	.TableInSide2 td, 
	.TableInSide2 tr { 
		display: block; 
    }

	.TableInSide2 thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.TableInSide2 tr { 
        border: 2px solid #CF691E; 
        margin-left:1%;
        margin-right:1%;
    }

    .TableInSide2 td {text-align: center;}
	.TableInSide2 td:before { content: attr(data-title); font-weight: 600; }
}

@media only screen and (max-width: 3000px) {
	.TableVertical table, 
	.TableVertical thead, 
	.TableVertical tbody, 
	.TableVertical th, 
	.TableVertical td, 
	.TableVertical tr { 
		display: block; 
    }

	.TableVertical thead tr { 
		position: absolute;
		top: -9999px;
        left: -9999px;
    }

    .TableVertical tr { 
        border: 0px solid #CF691E; 
        margin-left:20%;
        margin-right:20%; 
    }

    .TableVertical td {text-align: center;}
	.TableVertical td:before { content: attr(data-title); font-weight: 600; }
}

@media only screen and (max-width: 800px) {
    .TableVertical tr { 
        margin-left:5%;
        margin-right:5%; 
    }
}


.TableVertical input[type=text],
.TableInSide input[type=text],
.TableInSide2 input[type=text]{
    width: 100%;
    padding: 5px 0;
    margin: 0px 0 2px;
    text-align: center;
    display: inline-block;
    border: none;
    border-bottom: 1px solid #3D3738;
    box-sizing: border-box;
    background: transparent;
    outline: none;
    font-family: "Arial";
    font-size: 14px;
    opacity: 1;
    color: #3D3738;
    font-weight: 400;

    -webkit-transition: border-bottom 0.4s ease-in-out;
    transition: border-bottom 0.4s ease-in-out;
}

.TableVertical input[type=text]:focus,
.TableInSide input[type=text]:focus,
.TableInSide2 input[type=text]:focus {
    border-bottom: 1px solid #CF691E;
}

.TableVertical [type=text]:valid,
.TableInSide [type=text]:valid,
.TableInSide2 [type=text]:valid {
    border-bottom: 1px solid #CF691E;
}  

.vericaltext{
    width:1px;
    word-wrap: break-word;
    line-height: 1;
    margin-left: 30%; 
}

table {
    width: 100%; 
}

.TableVertical table,
.TableInSide table,
.TableInSide2 table {
    width: 100%; 
} 



.TableVertical th,
.TableInSide th,
.TableInSide2 th{ 
    outline: none;
    font-family: "Arial";
    font-size: 14px;
    opacity: 1;
    color: #3D3738;
    font-weight: 600;
}
tr:nth-child(even){background-color: #f2f2f2}
th {background-color: #858783}



/* Messages */
.success , .notification{ margin: 0.5em 0; padding: 0.25em 0.25em 0.25em 2em; 
    background: #000 url("../images/arrow_w.png") no-repeat -1em -1em;
    color: #FFF; font-weight: bold;  position: relative; 
    }
    .notification { background-color: #c2001f;  }
    .success  img, .notification img { float: right; cursor: pointer;}
    
    .loadingimg {
        /*background: url("images/loading.gif") no-repeat scroll center center #000;*/
        /* height: 20%;
        width: 20%; */
        z-index: 10000;
        position: absolute;
        top: 50%;
        left: 48%;
    }

    .sidebarXwr .regionbodywr {font-family: Arial;}	
    .sidebarXwr .regionbodywr .danewr{margin: 10px auto; position: relative; width: 100%; padding: 0.2em}	
    .sidebarXwr .regionbodywr .danewr th, .sidebarXwr .regionbodywr .danewr td{margin: 0; padding:0;}	
    .sidebarXwr .regionbodywr .danewr td {width: 50%; font-size: 1.3em; font-weight: 700; border-bottom: 1px solid rgba(238,238,234);}
    .sidebarXwr .regionbodywr .danewr td.footer-left {text-align: left;  font-size: 0.75em; font-weight: 400; border: 0;}
    .sidebarXwr .regionbodywr .danewr td.footer-right {text-align: right;  font-size: 0.75em; font-weight: 400; border: 0;}				
    .sidebarXwr .regionbodywr .danewr td div {position: relative; padding-bottom:9px;} 			
    .sidebarXwr .regionbodywr .danewr td.right {padding-top: 7px; text-align: center; background: #fff; padding-left: 2em; border-right: 0px solid #fff;}
    .sidebarXwr .regionbodywr .danewr td.left {padding-top: 7px; color: rgba(207,105,30); text-align: center; background: #fff; padding-left: 0em; border-left: 0px solid #fff;}
    .sidebarXwr .regionbodywr .danewr td.left .kw{height: 1.3em; width: 1.8em;display: block;position: absolute;right: -0.25em;top: -0.2em;background-size: 100%; z-index: 1; cursor: pointer;} 
    .sidebarXwr .regionbodywr .danewr td.left .kw1{height: auto; width: 20px;display: block;position: absolute;right: -1.5em;top: 0.1em;background-size: 100%; z-index: 1; cursor: pointer;}
    .sidebarXwr .regionbodywr .danewr td.left .para{border: 0px; position: absolute; right: -3.45em; text-align-last: left; bottom: 0; line-height: 1.0em; font-size: 0.50em; font-weight: 400; background: #fff; width: 7em; border-bottom: 0px solid #989a96; z-index: 10;}
    .sidebarXwr .regionbodywr .danewr td.left .napis1{color:#989a96; padding-bottom:2px; position: relative; right: 4.5em; bottom: -1.1em; line-height: 1.0em; font-size: 0.50em; font-weight: 400; background: #fff; width: 3em;  border-bottom: 0px solid #989a96;}
    .sidebarXwr .regionbodywr .danewr td.left .napis2{color:#989a96; padding-bottom:2px; position: relative; right: -9.5em; bottom: -1.1em; line-height: 1.0em; font-size: 0.50em; font-weight: 400; background: #fff; width: 3em;  border-bottom: 0px solid #989a96;}
    .div1 {margin-left:10px; width: 300px; padding: 0.0em; display: inline-block; vertical-align: top;}
    .wykres {padding: 0.0em; border-bottom: 1px solid rgba(238,238,234);}
    IMG.displayed { display: inline-block; margin-left: auto; margin-right: auto }
    div.displayed { display: inline-block; font-family: Arial; font-size: 12px; text-align: center }
    .dual { display: flex; flex-flow: row wrap; margin-top: 0em}
    .item {margin-left: auto; margin-right: auto; min-width: 300px; max-width: 300px;}
    #containerwr{
        text-align: center;
    }
    
    .tooltip {
        position: relative;
        display: inline-block;
    }
    
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 60px;
        height: auto;
        background-color: white;
        color: black;
        border: 1px solid black;
        text-align: center;
        border-radius: 0px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -30px;
        font-weight:normal;
        font-size: 10px;
        
        opacity: 0;
        transition: opacity 1s;
    }
    
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
    
    .tooltip2 {
        position: relative;
        display: inline-block;
    }
    
    .tooltip2 .tooltiptext2 {
        visibility: hidden;
        width: 70px;
        height: 24px;
        background-color: white;
        color: black;
        border: 1px solid black;
        text-align: center;
        border-radius: 0px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 20%;
        left: 50%;
        margin-left: -35px;
        font-weight:normal;
        font-size: 10px;
        
        opacity: 0;
        transition: opacity 1s;
    }
    
    .tooltip2:hover .tooltiptext2 {
        visibility: visible;
        opacity: 1;
    }

    .CellWithComment{
        position:relative;

      }
      
      .CellComment{
        display:none;
        /* position:absolute;  */
        z-index:100;
        border:1px;
        background-color:rgba(0, 0, 0, 0.0);
        /* border-style:solid; */
        /* border-width:1px; */
        border-color:#CF691E;
        padding:0px;
        color:#CF691E; 
        /* top:-20px;  */
        /* left: 50x; */
        /* margin-left: calc(50% - (90px(--width) / 2)); */
      }
      
      .CellWithComment:hover span.CellComment{
        display:block;
        margin-left:auto; 
        margin-right:auto;
      }
    
    
    body {font-family: Arial, Helvetica, sans-serif;}
    

    @-webkit-keyframes animatetop {
        from {top:-300px; opacity:0} 
        to {top:0; opacity:1}
    }
    
    @keyframes animatetop {
        from {top:-300px; opacity:0}
        to {top:0; opacity:1}
    }
    
    
    .close {
        color: black;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    
    .close:hover,
    .close:focus {
        color: white;
        text-decoration: none;
        cursor: pointer;
    }
    
    .btnwr{min-width: 38px; 
         max-width: 38px;
        }
    .btnwr:enabled,
    .btnwr:enabled{
      background-color: white;
      display: inline-block; 
      margin-left: auto; 
      margin-right: auto; 
      font-family: Arial;
        color: rgba(207,105,30);
        border: 1px solid rgba(207,105,30);
        padding: 5px;
        text-align: center;
        font-size: 24px;
        cursor: pointer;
    }
    .btnwr:enabled:hover,
    .btnwr:enabled:focus,
    .btnwr.enabled:hover,
    .btnwr.enabled:focus {
      background-color: white;
        color: rgba(207,105,30);
        cursor: pointer;
    }
    .btnwr:disabled,
    .btnwr.disabled{
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    font-family: Arial;
    border: 1px solid grey;
    background-color: white; 
    color: grey;
    padding: 5px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    }
    .btnwr:disabled:hover,
    .btnwr:disabled:focus,
    .btnwr.disabled:hover,
    .btnwr.disabled:focus {
      color:grey;
      border-color: #a0a0a0;
      background-color: white;
      cursor: not-allowed;
    }


    .note {
        color: #989a96;
        padding-bottom: 2px;
        position: relative;
        right: 2em;
        bottom: -1.5em;
        line-height: 2.6em;
        font-size: 0.8em;
        font-weight: 400;
        background: #fff;
        width: 3em;
    }

    .footer {
        position: unset;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 0;
        border-top: 1px solid black;
        background-color: #fff;
        color: black;
        text-align: center;
     }

     .navbar-toggle {
        /* position: relative; */
        float: left;
        /* padding: 9px 10px;
        margin-top: 8px;
        margin-right: 15px;
        margin-bottom: 8px; 
        background-color: grey; 
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px; */
    }
    @media (max-width: 767px){
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #000;
        background-color: #CF691E; 
    }
    /* #logo { */
        /* position: absolute;
        top: 1.6em;
        left: 50%;
        transform: translate(-50%, -50%); */
        /* width:auto; 
        height: 70px; 
        background-color:#fff; 
        margin-left: 0px; */
        /* display: block;
        margin-left: auto;
        margin-right: auto; */
        /* margin-left: 30%;
        margin-left: auto;
    margin-right: auto;
    width: 8em */
    /* } */
}


/* @media only screen and (min-width: 800px) {
    #logo {
        margin-left: 30px;
    }
  }

  @media only screen and (min-width: 400px) {
    #logo {
        margin-left: 15px;
    }
  } */

  @media screen and (min-width: 400px) {
    #logo {
        margin-left: 15px;
    }
  }
  
  @media screen and (min-width: 800px) {
    #logo {
        margin-left: 30px;
    }
  }

.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header {
    margin-right: 0px;
    margin-left: 0px;
    background-color: #FFF;
}
    
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #CF691E;
}
.navbar-inverse { border-color: #fff}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
    background-color: #f2f2f2;
}

.navbar-inverse .navbar-toggle {
    border-color: #fff;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-toggle .icon-bar {
    width: 26px;
    height: 3px;
    border-radius: 12px;
}

.div-small-td {
    font-size: 0.7em;
    color: #858783;
    margin-top: 0px;
}



.even4n1even4n2 tr {
    background-color: #FFF;
}
.even4n1even4n2 tr:nth-child(4n+1) {
    background-color: #f2f2f2
}
.even4n1even4n2 tr:nth-child(4n+2) {
    background-color: #f2f2f2
}

.mySlides{
    position:relative;
    width:1000px;
    margin:40px auto;
    display:table;
}

.number{
    position:absolute;
    margin:20px;
}

.text{
    position:absolute;
    bottom:20px;
    text-align:center;
    width:100%;
}

.prev, .next{
    position:absolute;
    top:40%;
    background-color:black;
    color:white;
    padding:20px;
    cursor:pointer;
    user-select:none;
}

.next{
    right:0;
}

.text-align{
    text-align:center;
}

.dot{
    width:30px;
    height:30px;
    background-color:gray;
    display:inline-block;
}

.dot.active, .dot:hover{
    background-color:orange;
}

.animation-title {
  font-family: sans-serif;
  text-align: center;
}
.baner-animation {
  width: 100%;
  display: block;
  
  margin: auto; 
}

.qaz:enabled,
.qaz:enabled{ background-color: white; margin-left: auto;  margin-right: auto;  font-family: Arial; color: #CF691E ; border: 1px solid #CF691E ; padding: 10px; text-align: center; font-size: 13px; cursor: pointer;}
.qaz:enabled:hover,
.qaz:enabled:focus,
.qaz.enabled:hover,
.qaz.enabled:focus {background-color: white; color: #CF691E ;cursor: pointer;}
@media only screen and (max-width: 1100px) {
 .qaz{min-width: 120px; max-width: 120px; display: none;}
.qaz1 {cursor: pointer; margin-top: 15px; display:inline-block;}
  }
@media only screen and (min-width: 1101px) {
 .qaz{min-width: 120px; max-width: 120px; display: inline-block;  }
.qaz1 {cursor: pointer; display:none;}
  }
 
.header_bottom_right_widget_holder {
  position: absolute;
  right: 0px;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 0 20px;
}

.header_top_left_widget_holder {
    position: absolute;
    left: 0px;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding: 0 0px;
}

.wrap {text-align: center; margin: 15px auto; color: #333333;
    font-family: 'Arial', sans-serif;
    
    font-size: 18px;
    line-height: 25px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
    text-transform: none;}
.resp {display: inline-block; text-align: left; width: 21%; margin-right: 1%;}
.resp.fixed {width: 250px; margin-right: 10px; margin-bottom: 10px; margin-left: 10px; margin-top: 5px}

#a {background: #fff; color: #000; vertical-align: top;} 
#b {background: #fff; color: #000; vertical-align: top;}
#c {background: #fff; color: #000; vertical-align: top;}
#d {background: #fff; color: #000; vertical-align: top;}
audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel {
                background-color: #fff;
}