/* При двух панелях на странице (наш модуль + плагин iwebsite-accessibility) показываем только нашу */
body .iwebsite-access-container:not(.iwe-accessibility) {
	display: none !important;
}

.iwebsite-access-container *{
	font-family: Open Sans Hebrew,Arial,Helvetica,sans-serif ;
	line-height: 16px;
	font-weight: 400;
	padding: 0;
	margin: 0;
}

.iwebsite-access-container {
	font-size: 16px;
}

.iwebsite-access-btn-wrap {
	position: fixed;
	margin: 0;
	padding: 0;
	height: 50px;
	width: auto;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	top: 50px;
	z-index: 99998;
	-o-transition: right .45s ease, left .45s ease;
	-moz-transition: right .45s ease, left .45s ease;
	-ms-transition: right .45s ease, left .45s ease;
	-webkit-transition: right .45s ease, left .45s ease;
	transition: right .45s ease, left .45s ease;
}


.right-side .iwebsite-access-btn-wrap {
	right: 0;
	left: auto;
}

.iwebsite-access-menu-active .right-side .iwebsite-access-btn-wrap {
	right: 440px;
	z-index: 100000;
}


.left-side  .iwebsite-access-btn-wrap {
	left: 0;
	right: auto;
}

.iwebsite-access-menu-active .left-side .iwebsite-access-btn-wrap {
	left: 440px;
	z-index: 100000;
}

button.iwebsite-access-menu-toggle {
	background-color: #e8e8e8;
	border-radius: 0;
	border-color: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 50px;
	height: 50px;
	position: relative;
	border-top-left-radius: 25%;
	border-bottom-left-radius: 25%;
	vertical-align: middle;
}

.left-side button.iwebsite-access-menu-toggle {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 25%;
	border-bottom-right-radius: 25%;
}

button.iwebsite-access-menu-toggle svg {
	height:40px;
	width:40px;
}

button.iwebsite-access-menu-toggle .svg-default-fill {
	fill: #838383 !important;
}
button.iwebsite-access-menu-toggle:focus-visible {
	outline: 2px solid #1cb7e0;
	outline-offset: 2px;
}

button.iwebsite-access-menu-btn {
	background-color: transparent;
	color: transparent;
	border-color: transparent;
	border:none;
	padding: 0;
	cursor: pointer;
	font-size:  16px;
	text-transform: none;
}
button.iwebsite-access-menu-btn:focus-visible {
	outline: 2px solid #1cb7e0;
	outline-offset: 2px;
	border-radius: 4px;
}

.iwebsite-access-btn-tooltip {
	position: absolute;
	top: 10px;
	right: 65px;
	margin: 0;
	padding: 7px 21px;
	min-width: 192px;
	box-sizing: content-box;
	float: right;
	text-align: center;
	direction: rtl;
	color: #fff;
	background: #000;
	border: none;
	border-radius: 3px;
	-webkit-filter: drop-shadow( 0 0 2px white );
	-moz-filter: drop-shadow( 0 0 2px white );
	-ms-filter: drop-shadow( 0 0 2px white );
	filter: drop-shadow( 0 0 2px white );
	-webkit-transition-property: 0.2s all;
	-o-transition-property: 0.2s all;
	-moz-transition-property: 0.2s all;
	-ms-transition-property: 0.2s all;
	transition-property: 0.2s all;
	opacity: 0;
	visibility: hidden;
	z-index: 99999;
}

.btn-icon-menu-toggle {
	font-size: 35px;
	text-align: center;
}

.iwebsite-access-btn-wrap:hover .iwebsite-access-btn-tooltip {
	opacity: 0.85;
	visibility: visible;
}

/* Overlay: затемнение фона при открытой панели, клик закрывает */
.iwebsite-access-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99997;
	background: rgba(0, 0, 0, 0.25);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
body.iwebsite-access-menu-active .iwebsite-access-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.iwebsite-access-menu{
	position: fixed;
	margin: 0;
	padding: 20px;
	right: -100%;
	left: auto;
	z-index: 99999;
	max-width: 440px;
	width: 100%;
	height: 95%;
	visibility: visible;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	border: none;
	border-left: 2px solid #e8e8e8;
	border-top: 2px solid #e8e8e8;
	background: #fff;
	-o-transition: right .5s ease, left .5s ease;
	-moz-transition: right .5s ease, left .5s ease;
	-ms-transition: right .5s ease, left .5s ease;
	-webkit-transition: right .5s ease, left .5s ease;
	transition: right .5s ease, left .5s ease;
}

.right-side .iwebsite-access-menu {
	right: -100%;
	left: auto;
	border-left:  2px solid #e8e8e8;
	border-right: none;
}

.left-side .iwebsite-access-menu {
	left: -100%;
	right: auto;
	border-right:  2px solid #e8e8e8;
	border-left: none;
}

.iwebsite-access-menu-active .right-side .iwebsite-access-menu {
	right:0;
}

.iwebsite-access-menu-active .left-side .iwebsite-access-menu{
	left:0;
}

/* Наша панель: показ по body-классу даже без .right-side/.left-side */
body.iwebsite-access-menu-active .iwe-accessibility .iwebsite-access-menu {
	right: 0;
	left: auto;
}
body.iwebsite-access-menu-active .iwe-accessibility.left-side .iwebsite-access-menu {
	left: 0;
	right: auto;
}

[dir="rtl"] .iwe-accessibility .iwebsite-access-menu {
	direction: rtl;
	text-align: right;
}
[dir="rtl"] .iwe-accessibility .iwebsite-access-menu .iwebsite-access-menu-row:not(.settings-row) {
	text-align: right;
}

.iwebsite-access-menu-body{
	position: relative;
	margin-top: 15px;
	padding-bottom: 50px;

/**/
	overflow-y: scroll;
	height: 75%;
	padding: 0 5px 0 0 ;
}

.rtl .iwebsite-access-menu-body{
	padding: 0 0 0 5px;
}

.iwebsite-access-action-description{
	background-color: #d3dc25;
	color: #000;
	padding: 2px 5px;
	opacity: 0;
	-webkit-transition-property: opacity 0.35s;
	-o-transition-property: opacity 0.35s;
	-moz-transition-property: opacity 0.35s;
	-ms-transition-property: opacity 0.35s;
	transition-property: opacity 0.35s;
}

.iwebsite-access-action-description.active {
	opacity: 1;
}

.iwebsite-access-menu-header .iwebsite-access-menu-close span {
	display: block;
}
.iwebsite-access-menu-close:hover {
	background-color: #fff!important;
	color: #000!important;
}

.iwebsite-access-menu .iwebsite-access-menu-btn {
	width: 25%;
	float: left;
	display: inline-block;
	font-size: 16px;
	border-radius: 0;
	padding:3px;
	font-weight: normal;
	margin: 0 auto;
}

button.iwebsite-access-menu-btn span.button-text {
	margin: 15px 0 0;
	line-height: 1.2;
	display: block;
	min-height: 55px;
	color: #000;
}

button.iwebsite-access-menu-btn span.btn-icon {
	display: block;
	height: 75px;
	width: 75px;
	border-radius: 50%;
	background-color: blue;
}

.iwebsite-access-menu-footer .iwebsite-access-menu-btn
button.iwebsite-access-menu-btn svg {
	display: block;
	margin: 0 auto;
}

#ACCESSsoundreader{
	display: none;
}

.iwebsite-access-menu-row {
	position: relative;
}

.keyboard-info-circle {
	background-color: #303030;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	height: 25px;
	left: 10px;
	line-height: 25px;
	position: absolute;
	text-align: center;
	top: 11px;
	width: 25px;
}

.iwebsite-access-menu-row:after {
	clear: both;
	content: "";
	display: table;
}

.iwebsite-access-menu-footer{
	width: 100%;
	background-color: #fff;
	padding-top: 12px;
	-webkit-box-shadow: 0 -4px 5px 0 rgba(0,0,0,0.2);
	box-shadow: 0 -4px 5px 0 rgba(0,0,0,0.2);
}

.iwebsite-access-popup-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999998;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-o-transition: opacity 400ms ease-in, visibility 400ms ease-in;
	-webkit-transition: opacity 400ms ease-in, visibility 400ms ease-in;
	-moz-transition: opacity 400ms ease-in, visibility 400ms ease-in;
	-ms-transition: opacity 400ms ease-in, visibility 400ms ease-in;
	transition: opacity 400ms ease-in, visibility 400ms ease-in;
}

body.ACCESSfeedback .iwebsite-access-popup-overlay,
body.ACCESSfeedback .iwebsite-access-popup,
.iwebsite-access-popup-overlay.active,
.iwebsite-access-keyboard-manage-inctruction.active,

.accessibility-statement-active .iwebsite-access-popup-overlay,
.accessibility-statement-active .iwebsite-accessibility-statement,
.iwebsite-accessibility-statement.active {
	opacity: 1;
	visibility: visible;
}
.iwebsite-access-popup-overlay.active {
	pointer-events: auto;
}

.iwebsite-access-keyboard-manage-inctruction h3{
	text-align: center;
	font-size: 19px;
	color: #eb0000;
}

.iwebsite-access-popup,
.iwebsite-access-keyboard-manage-inctruction,
.iwebsite-accessibility-statement {
	padding: 15px;
	border: 1px solid #888;
	position: fixed;
	max-width: 380px;
	width: 100%;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	background-color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	z-index: 999999;

}

.iwebsite-access-container .iwebsite-accessibility-statement * {
	line-height: 28px;
}

.iwebsite-accessibility-statement{
	max-width: 800px;
	margin-top: 1vh;
}

.iwebsite-accessibility-statement .statement-content{
	overflow-y: auto;
	max-height: 96vh;
	padding: 30px;
}

.iwebsite-accessibility-statement .statement-content::-webkit-scrollbar-thumb {
	background-color: #555555;
}

.iwebsite-accessibility-statement .statement-content::-webkit-scrollbar {
	width: 0.3rem;
	max-height:50px;
}

.iwebsite-accessibility-statement .statement-content::-webkit-scrollbar-thumb {
	height:20px;
}

.iwebsite-accessibility-statement .article-part:nth-child(2) h2{
	padding-top: 0;
}

.iwebsite-accessibility-statement h2{
	padding-top: 25px;
	padding-bottom: 10px;
}

.iwebsite-access-popup .iwebsite-popup-close,
.iwebsite-keyboard-manage-inctruction-close,
.iwebsite-accessibility-statement .iwebsite-popup-close {
	cursor: pointer;
	display: block;
	height: 20px;
	left: 5px;
	position: absolute;
	top: 5px;
	width: 20px;
}

.iwebsite-access-popup .iwebsite-popup-close {
	left: 0;
	top: -25px;
}

.iwebsite-access-popup .iwebsite-popup-close:before,
.iwebsite-access-popup .iwebsite-popup-close:after,
.iwebsite-keyboard-manage-inctruction-close:after,
.iwebsite-keyboard-manage-inctruction-close:before,
.iwebsite-accessibility-statement .iwebsite-popup-close:after,
.iwebsite-accessibility-statement .iwebsite-popup-close:before {
	content: '';
	height: 2px;
	color: inherit;
	display: block;
	width: 100%;
	background-color: #000;
}

.iwebsite-access-popup .iwebsite-popup-close:before,
.iwebsite-keyboard-manage-inctruction-close:before,
.iwebsite-accessibility-statement .iwebsite-popup-close:before {
	-o-transform: rotate(45deg) translate(8px,8px);
	-moz-transform: rotate(45deg) translate(8px,8px);
	-ms-transform: rotate(45deg) translate(8px,8px);
	-webkit-transform: rotate(45deg) translate(8px,8px);
	transform: rotate(45deg) translate(8px,8px);
}

.iwebsite-access-popup .iwebsite-popup-close:after,
.iwebsite-keyboard-manage-inctruction-close:after,
.iwebsite-accessibility-statement .iwebsite-popup-close:after {
	-o-transform: rotate(-45deg) translate(-7px,6px);
	-moz-transform: rotate(-45deg) translate(-7px,6px);
	-ms-transform: rotate(-45deg) translate(-7px,6px);
	-webkit-transform: rotate(-45deg) translate(-7px,6px);
	transform: rotate(-45deg) translate(-7px,6px);
}

.iwebsite-accessibility-feedback>div {
	margin: 0 0 10px;
}

.iwebsite-accessibility-feedback input,
.iwebsite-accessibility-feedback textarea{
	padding: 0 15px;
	line-height: 40px;
	border-radius: 0;
}

.iwe-accessibility-rtl .iwebsite-accessibility-feedback input,
.iwe-accessibility-rtl .iwebsite-accessibility-feedback textarea {
	direction: rtl;
}

.iwebsite-accessibility-feedback textarea {
	max-height: 150px;
	min-height: 150px;
	resize:none;
}
.iwebsite-accessibility-feedback button {
	max-width: 100%;
	width: 100%;
	background-color: #f68125;
	border-color: transparent;
	padding: 0 15px;
	line-height: 40px;
	border-radius: 0;
}

body.no-scroll,
body.ACCESSfeedback {
	overflow-y: hidden;
}

.iwebsite-access-input-tooltips {
	display: none;
}
.iwebsite-access-keyboard-manage-inctruction p {
	padding: 5px 10px
}
.iwebsite-access-keyboard-manage-inctruction ul {
	padding: 10px;
}
.iwebsite-access-keyboard-manage-inctruction ul li{
	border-bottom: 1px dotted #ccc;
	padding: 10px 5px
}

.iwebsite-access-keyboard-manage-inctruction ul li:nth-child(2n) {
	background: #efefef none repeat scroll 0 0;
}

.iwebsite-access-keyboard-manage-inctruction ul li:last-child {
	border-bottom: 0;
}

/*   Accessibilities
********************************************************************************************************/
/* monochrome color sheme
*/
body.ACCESSmonochrome > :not(.iwebsite-access-container)  {
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-ms-filter: grayscale(1);
	-o-filter: grayscale(1);
	filter: grayscale(1);
}

/* Readable font */
body.ACCESSreadable > :not(.iwebsite-access-container)  * :not(.dashicons) :not(.fa)  {
	font-family: Arial!important;
}

/* Change defaulr cursor to big black cursor
*/
body.ACCESSblackcursor {
	cursor: url(../../images/black-arrow.png), auto!important;
}

/* Change default cursor to big white cursor
*/
body.ACCESSwhitecursor {
	cursor: url(../../images/white-arrow.png), auto!important;

}

/* Underline all links
*/
body.ACCESSlinks  > :not(.iwebsite-access-container) a,
body.ACCESSlinks  > :not(.iwebsite-access-container) a * {
	text-decoration: underline;
}

/* Zoom elements
*/
body.ACCESSmagnifire-125 > :not(.iwebsite-access-container) {
	zoom: 1.25;
	-ms-zoom: 1.25;
	-webkit-zoom: 1.25;
	-moz-transform:  scale(1.25,1.25);
	-moz-transform-origin: center 0 0;
	overflow-x:hidden;
}

body.ACCESSmagnifire-125,
body.ACCESSmagnifire-150 {
	margin:  0 auto!important;
}

body.ACCESSmagnifire-150 > :not(.iwebsite-access-container) {
	zoom: 1.5;
	-ms-zoom: 1.5;
	-webkit-zoom: 1.5;
	-moz-transform:  scale(1.5,1.5);
	-moz-transform-origin: center 0 0;
	overflow-x:hidden;

}
body.ACCESSmagnifire .tooltip-text   {
	zoom: 1;
}

/* Highlight all headers
*/

body.ACCESSheaders > :not(.iwebsite-access-container) h1,
body.ACCESSheaders > :not(.iwebsite-access-container) h2,
body.ACCESSheaders > :not(.iwebsite-access-container) h3,
body.ACCESSheaders > :not(.iwebsite-access-container) h4,
body.ACCESSheaders > :not(.iwebsite-access-container) h5,
body.ACCESSheaders > :not(.iwebsite-access-container) h6 {
	font-weight: bold !important;
	margin: 0 auto;
	text-decoration: underline !important;
}

.ACCESSkeyboardIcon kbd {
	border: 1px solid;
	border-radius: 2px;
	border-color: #efefef #bbb #777 #999;
	background-color: #eee;
	background-image: linear-gradient(to bottom left, #e7e7e7, #dddddd, #eee));
	padding: 2px 6px;
	color: #000;
	margin: 0 0 0 2px;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
}
.keyboard-buttons {
	padding: 8px 0 0;
	display: block;
}

/* Tolltip for all alt
*/

/* Tooltip text */
body .tooltip-text{
	visibility: hidden;
	width: auto;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 999999;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-o-transition: transform 0.2s, visibility 0.05s;
	-ms-transition: transform 0.2s, visibility 0.05s;
	-moz-transition: transform 0.2s, visibility 0.05s;
	-webkit-transition: transform 0.2s, visibility 0.05s;
	transition: transform 0.2s, visibility 0.05s;
}
body.ACCESSalttext .tooltip-text.visible {
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}


/* Change color to white over black
*/

body.ACCESSblackwhte .site-container {
	-webkit-filter: invert(1);
	-moz-filter: invert(1);
	-ms-filter: invert(1);
	-o-filter: invert(1);
	filter: invert(1);
}

body.ACCESSwhiteblack .site-container {
	-webkit-filter: contrast(1.5);
	-moz-filter: contrast(1.5);
	-ms-filter: contrast(1.5);
	-o-filter: contrast(1.5);
	filter: contrast(1.5);
}

/* Change color to white over black */
body.ACCESSblackwhite > :not(.iwebsite-access-container),
body.ACCESSblackwhite > :not(.iwebsite-access-container) *:not(img),
body.ACCESSblackwhite > :not(.iwebsite-access-container) *:not(.background-image-invert){
	color:            #fff!important;
	background-color: #000!important;

}
/* Change color to black over white */
body.ACCESSwhiteblack,
body.ACCESSwhiteblack > :not(.iwebsite-access-container),
body.ACCESSwhiteblack > :not(.iwebsite-access-container) *:not(img),
body.ACCESSwhiteblack > :not(.iwebsite-access-container) *:not(.background-image-contrast)  {
	color: #000!important;
	background-color: #fff!important;
	border-color: #000!important;
}

/* Links */
body.ACCESSblackwhite > a,
body.ACCESSblackwhite > :not(.iwebsite-access-container) a {
	outline: 1px dashed Gold;
}
body.ACCESSwhiteblack > a,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) a {
	outline: 1px dashed MidnightBlue;
}

/* Headers */
body.ACESSblackwhite > h1:not(.iwebsite-access-container),
body.ACESSblackwhite > h2:not(.iwebsite-access-container),
body.ACESSblackwhite > h3:not(.iwebsite-access-container),
body.ACESSblackwhite > h4:not(.iwebsite-access-container),
body.ACESSblackwhite > h5:not(.iwebsite-access-container),
body.ACESSblackwhite > h6:not(.iwebsite-access-container),
body.ACESSblackwhite > :not(.iwebsite-access-container) h1,
body.ACESSblackwhite > :not(.iwebsite-access-container) h2,
body.ACESSblackwhite > :not(.iwebsite-access-container) h3,
body.ACESSblackwhite > :not(.iwebsite-access-container) h4,
body.ACESSblackwhite > :not(.iwebsite-access-container) h5,
body.ACESSblackwhite > :not(.iwebsite-access-container) h6{
	color: Gold;
}
body.ACCESSwhiteblack > h1:not(.iwebsite-access-container),
body.ACCESSwhiteblack > h2:not(.iwebsite-access-container),
body.ACCESSwhiteblack  > h3:not(.iwebsite-access-container),
body.ACCESSwhiteblack  > h4:not(.iwebsite-access-container),
body.ACCESSwhiteblack  > h5:not(.iwebsite-access-container),
body.ACCESSwhiteblack  > h6:not(.iwebsite-access-container),
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h1,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h2,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h3,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h4,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h5,
body.ACCESSwhiteblack > :not(.iwebsite-access-container) h6 {
	color: MidnightBlue;
}

/* accessibility menu focus fix */
body.ACCESSblackwhite #INDmenu button[aria-pressed="true"] span,
body.ACCESSblackwhite #INDmenu button[aria-pressed="true"] svg * {
	color:              #f68125;
	fill:               #f68125;
	font-weight:        bold;
}

/* accessibility menu focus fix */

body.ACCESSblackwhite > :not(.iwebsite-access-container) img,
body.ACCESSblackwhite .background-image-invert {
	-webkit-filter: invert(1);
	-moz-filter: invert(1);
	-ms-filter: invert(1);
	-o-filter: invert(1);
	filter: invert(1);
}

body.ACCESSwhiteblack > :not(.iwebsite-access-container) img,
body.ACCESSwhiteblack  .background-image-contrast {
	-webkit-filter: contrast(1.5);
	-moz-filter: contrast(1.5);
	-ms-filter: contrast(1.5);
	-o-filter: contrast(1.5);
	filter: contrast(1.5);
}

.pos-rel {
	position: relative;
}

body.ACCESSepilepsy * {
	-webkit-transition: none!important;
	-o-transition: none!important;
	-moz-transition: none!important;
	-ms-transition: none!important;
	transition: none!important;
	-webkit-animation: none!important;
	-o-animation: none!important;
	-moz-animation: none!important;
	-ms-animation: none!important;
	animation: none!important;
}

body.ACCESSkeyboard *:focus,
body.ACCESSkeyboard > :not(.iwebsite-access-container) *:focus {
	color: #bf1722!important;
	border-radius: 5px!important;
	outline:none!important;
	text-shadow:#bbb 1px 1px 1px;
	background-color: #ffffcc!important;
	box-shadow: 0 0 6px 3px #ffff00, 0 0 2px #333 inset !important;
	-o-transition: color 0.2s ease-in, text-shadow 0.2s ease-in;
	-ms-transition: color 0.2s ease-in, text-shadow 0.2s ease-in;
	-moz-transition: color 0.2s ease-in, text-shadow 0.2s ease-in;
	-webkit-transition: color 0.2s ease-in, text-shadow 0.2s ease-in;
	transition: color 0.2s ease-in, text-shadow 0.2s ease-in;
}

/*
 * /End Color Schemes
 */

.iwebsite-access-input-tooltip.ui-tooltip {
	background-color: #303030;
	color: #fff;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	z-index: 9999;
}
.iwebsite-access-input-tooltip.ui-tooltip:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	margin-left: -4px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #303030;
}
.iwebsite-access-input-tooltip {
	max-width: 300px;
	text-align: center;
}

.iwebsite-accessibility-feedback {
	position: relative;
	padding: 20px;

}

.iwebsite-accessibility-loader-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 999998;
	visibility: hidden;
	opacity: 0;
	margin: 0;
	-o-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition-property: all 0.2s;
	-o-transition-property: all 0.2s;
	-moz-transition-property: all 0.2s;
	-ms-transition-property: all 0.2s;
	transition-property: all 0.2s;
}

.iwebsite-accessibility-message{
	padding: 5px;
	width: 100%;
	box-shadow: 1px 1px 5px #ccc;
	text-align: center;
	background-color: #fff;
}

.iwebsite-accessibility-loader-overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color:#fff;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
	-webkit-transition-property: all 0.2s;
	-o-transition-property: all 0.2s;
	-moz-transition-property: all 0.2s;
	-ms-transition-property: all 0.2s;
	transition-property: all 0.2s;
}

.iwebsite-accessibility-loader-overlay.active {
	visibility: visible;
	opacity: 0.6;
}

.iwebsite-accessibility-loader.active,
.iwebsite-accessibility-loader-wrap.active,
.iwebsite-accessibility-font-loader.active {
	opacity: 1;
	visibility: visible;
}

.iwebsite-accessibility-loader,
.iwebsite-accessibility-font-loader {
	border: 6px solid #f3f3f3;
	border-top: 6px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px!important;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 999999;
	visibility: hidden;
	opacity: 0;
	animation: spin 1.5s linear infinite;
}

.iwebsite-access-settings{
	display: none;
	position: absolute;
	left: 0;
	top: 280px;
	background: #71a394;
	color: #fff;
	z-index: 500000;
	padding: 20px;
	border: 1px solid;
}


.iwebsite-accessibility-loader.hidden{
	visibility: hidden;
	opacity: 0;
}

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

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

@-o-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

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

@keyframes fadeInFadeOut {
	0%   { opacity:0; }
	50%  { opacity:1; }
	100% { opacity:0; }
}

@-o-keyframes fadeInFadeOut{
	0%   { opacity:0; }
	50%  { opacity:1; }
	100% { opacity:0; }
}

@-moz-keyframes fadeInFadeOut{
	0%   { opacity:0; }
	50%  { opacity:1; }
	100% { opacity:0; }
}

@-webkit-keyframes fadeInFadeOut{
	0%   { opacity:0; }
	50%  { opacity:1; }
	100% { opacity:0; }
}

.ACCESSfadein-fadeout {
	-webkit-animation: fadeInFadeOut 2s;
	-moz-animation: fadeInFadeOut 2s;
	-o-animation: fadeInFadeOut 2s;
	animation: fadeInFadeOut 2s;
}

/*close*/

/*.close-responsive*/

.close-iwebsite-access-menu {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	opacity: 0.3;
	display: none;
}


/**/

.iwebsite-access-menu-active .iwebsite-access-menu-toggle img,
.iwebsite-access-menu-active .iwebsite-access-menu-toggle svg {
	display: none;
}

.iwebsite-access-menu-active .close-iwebsite-access-menu {
	display: block;
}

.close-responsive:hover,
.close-cross:hover {
	opacity: 1;
}

.close-iwebsite-access-menu:before,
.close-iwebsite-access-menu:after,

.close-cross:before,
.close-cross:after,
.close-responsive:before,
.close-responsive:after{
	position: absolute;
	left: 13px;
	content: ' ';
	height: 30px;
	width: 2px;
	background-color: #333;
}

.close-iwebsite-access-menu:before,

.close-cross:before,
.close-responsive:before {
	transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.close-iwebsite-access-menu:after,

.close-cross:after ,
.close-responsive:after {
	transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/*New styles */
#ACCESSfontincrease, #ACCESSfontdecrease, #ACCESSmagnifire{
	display: none;
}

.svg-default-fill{
	fill: #fff !important;
}

.svg-container svg,
.little-swg-container svg {
	height: 50%;
	width: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.little-swg-container svg {
	height: 80%;
	width: 80%;
}

/*.svg-container:before,
.little-swg-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
*/

.iwebsite-access-container .svg-container{
	display: block;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
}

img.svg-img,
.iwebsite-access-container .svg-container img{
	padding: 2px;
	position: absolute;
	width: 70%;
	height: 70%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.iwebsite-access-menu-toggle img.svg-img {
	width: 80%;
	height: 80%;
	padding: 0;
}

.iwebsite-access-btn-wrap.active img.svg-img {
	left: -100%;
}

.iwebsite-access-menu-header-settings .access-title{
	font-size: 30px;
	font-weight: 400;
	color: #838383;
	line-height: 1;
	vertical-align: middle;
	text-align: center;
	float: right;
}

.settings-row .iwebsite-access-menu-btn{
	width:auto;
	padding: 0;
	width: auto;
	margin: 0 0 0 5px;
	float: none;
}

.iwebsite-settings-row-rtl .iwebsite-access-menu-btn{
	float: left;
}

.settings-row .svg-container{
	height: 30px;
	width: 30px;
}

.slider-area .little-swg-container .svg-default-fill{
	fill: #8e8e8e !important;
}

.little-swg-container{
	height: 30px;
	width: 30px;
	display: inline-block;
	border-radius: 50%;
	background-color: #1cb7e0;
	text-align: center;
	vertical-align: middle;
	position: relative;
}

.slider-area{
	background-color: #f3f3f3;
	height: 45px;
	line-height: 45px;
	border-radius: 34px;
	margin-top: 15px;
	padding: 0 20px;
	text-align: center;
}

.svg-wrap{
	display: inline-block;
	width:30px;
	vertical-align: text-bottom;
	position: relative;
}

.iwebsite-slider{
	width: 60%;
	height: 8px;
	display: inline-block;
}

.iwebsite-slider .ui-slider-handle.ui-corner-all.ui-state-default{
	cursor: pointer;
	left: 100%;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	outline: none;
	border:none;
	top: -11px;
}

.iwebsite-slider  .ui-slider-handle{
	top: -13px;
	margin-left: -16px;
}

.iwebsite-slider .ui-state-default{
	background: white;
}

.iwebsite-slider-title{
	font-size: 19px;
	color: #6e6e6e;
	display: block;
	text-align: center;
	margin: 20px 0 0;
}

.iwebsite-slider-native{
	display: none;
	vertical-align: middle;
	max-width: 60%;
}

.slider-font-size{
	margin-top:25px;
}

.iwebsite-access-menu .iwebsite-access-menu-btn.light-header-margin{
	margin-left:50px ;
}

.iwebsite-access-menu-body .iwebsite-access-menu-row{
	margin-top: 30px;
}

.iwebsite-question-mark{
	font-size: 16px;
	cursor:help;
	height: 20px;
	width: 20px;
	background-color: #db386f;
	border-radius: 50%;
	color: #fff;
	right: -5px;
	top: -5px;
	text-align: center;
	position: absolute;
	letter-spacing: 0.1px;
	line-height: 1.3;
}

#ACCESSkeyboard:hover .iwebsite-question-mark{
	display: block;
}

.iwebsite-responsive-container{
	position: relative;
	box-sizing: border-box;
	height: 95%;
}

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

#ACCESSwhitecursor svg,
#ACCESSblackcursor svg {
	margin-top: 1px;
	margin-left: 2px;
}

.iwebsite-access-menu{
	top: 0;
}

/****************************************************************************************************
TO FRONTEND STYLE
****************************************************************************************************/

/* Slider
*/

.iwebsite-access-container div.iwebsite-slider.ui-slider {
	width: 60%;
	height: 5px;
	display: inline-block;
	position: relative;
	margin: 0 20px;
}


.iwebsite-access-container div.iwebsite-slider.ui-slider .ui-slider-range {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1;
	font-size: .75rem;
	display: block;
	border: 0;
	background-position: 0 0;
	background-color: #fff;
}

.iwebsite-access-container .ui-slider {
	position: relative;
	text-align: left;
}

.iwebsite-access-container  .ui-corner-all{
	border-radius: 3px;
}

.iwebsite-slider .ui-slider-handle.ui-state-default{
	cursor: pointer;
	left: 100%;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	outline: none;
	border:none;
	position: absolute;
	z-index: 2;
	cursor: default;
}

.iwebsite-slider  .ui-slider-handle{
	top: -10px;
	margin-left: -12px;
}

.slider-value{
	height: 30px;
	width: 30px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	color: #fff;
	margin: 0 0 0 0;
	background-color: #1cb7e0;
	vertical-align: middle;
}

/*
scroll
*/
.iwebsite-access-menu-body::-webkit-scrollbar{
	width: 5px;
	height: 50px;
	margin-left: 20px;
}

/* Track */
.iwebsite-access-menu-body::-webkit-scrollbar-track {
	background: transparent;
}

/* Handle */
.iwebsite-access-menu-body::-webkit-scrollbar-thumb {
	border-radius: 5px;
}

/* Handle on hover */
.iwebsite-access-menu-body::-webkit-scrollbar-thumb:hover {
}

.iwebsite-access-menu-body::-webkit-scrollbar-thumb,
.iwebsite-access-menu-body::-webkit-scrollbar-thumb:hover,
.iwebsite-access-container div.iwebsite-slider.ui-slider,
.iwebsite-slider .ui-slider-handle.ui-state-default {
	background-color: #e7e2d6;
}

/*
#ACCESSsoundreader,
#ACCESSkeyboard,
#ACCESSepilepsy,
.iwebsite-access-menu-row .iwebsite-access-menu-btn:last-child {
	border-left: 0;
}

.iwebsite-access-menu .iwebsite-access-menu-btn:hover {
	background-color: #ddeeff!important;
}

.iwebsite-access-menu-footer.fixed-access {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
}

.iwebsite-access-menu-body .iwebsite-access-menu-btn{
	margin-top: 27px;
}

.iwebsite-access-menu-header h4{
	color: #fff!important;
	font-size: 1em;
	margin: 0;
	padding: 0;
	border-bottom: none!important;
	font-weight:600!important;
	text-align: center;
	line-height: 50px;
}

.iwebsite-access-menu-header .iwebsite-access-menu-close{
	color: #fff!important;
	background-color: transparent;
	font-weight: 700;
	position: absolute;
	top: 17px;
	left: 10px;
	font-size: 15px;
	display: inline-block;
	width: auto;
}

button.iwebsite-access-menu-btn:hover,
button.iwebsite-access-menu-toggle:hover {
	background-color: #17384c;
}

.btn-icon-menu-toggle {
	left: 50%;
	margin: -15px 0 0 -13px;
	position: absolute;
	top: 50%;
	font-size: 35px;
}*/

.iwebsite-access-help {

/*    position: absolute;
	right: 60px;
	top: 0;*/
	display: inline-block;

	/*min-width: 200px;*/
	width: 0;
	border-radius: 10px;
	background-color: #e8e8e8;
	padding: 0;
	/*padding: 5px 12px;*/
/*    opacity: 0;
	visibility: hidden;*/
	vertical-align: middle;
	font-size: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.iwebsite-access-help.active {
/*    opacity: 1;
	visibility: visible;*/
	font-size:1rem ;
	width: 200px;
	padding: 5px 12px
}

@media only screen and (max-width:1024px ){
	.iwebsite-access-help {
		display: none;
	}
}

@media only screen and (max-width:782px ){
	.iwebsite-accessibility-statement {
		max-width: 500px;
	}

	#ACCESSlinks{
		margin:0 auto ;
	}

	#ACCESSwhitecursor{
		display: none;
	}

	#ACCESSblackcursor{
		display: none;
	}

	#ACCESSkeyboard{
		display: none;
	}

	#ACCESSalttext{
		display: none;
	}


	#ACCESSalttext{
		display: none;
	}
}

@media only screen and (max-width:620px ){
	.iwebsite-access-menu-body .iwebsite-access-menu-row .iwebsite-access-menu-btn {
		width: 48%;
		padding: 0;
	}

	.iwebsite-access-menu-body .iwebsite-access-menu-row .iwebsite-access-menu-btn#ACCESSheaders  {
		float: none;
	}

	.iwebsite-access-container .svg-container {
		width: 40px;
		height: 40px;
	}
}


@media only screen and (max-width:540px ) {
	.iwebsite-accessibility-statement {
		max-width: 310px;
	}

	.close-responsive{
		position: absolute;
		right: 10px;
		top: 6px;
	}

	.iwebsite-settings-row-rtl .close-responsive{
		left: 10px;
		right: auto;
	}

	.iwebsite-access-btn-wrap.right-side.active{
		right: 320px;
	}

	.iwebsite-access-btn-wrap.left-side.active{
		/*display: none;*/
		left: 320px;
	}

	.iwebsite-access-menu{
		width: 320px;
		padding: 10px;
	}

	.iwebsite-access-menu-active .right-side .iwebsite-access-btn-wrap {
		right: 320px;
		z-index: 100000;
	}

	.iwebsite-access-menu-active .left-side .iwebsite-access-btn-wrap {
		left: 320px;
		z-index: 100000;
	}

	.settings-row .iwebsite-access-menu-btn {
		margin-top: 0;
	}

/*    .iwebsite-settings-row-rtl .iwebsite-access-menu-btn:nth-child(2){
		margin-left: 50px;
	}*/

	.settings-row .svg-container {
		height: 34px !important;
		width: 34px !important;
	}

	.iwebsite-access-menu-header-settings h2 {
		font-size: 24px;
		line-height: 1.8;
	}

	.iwebsite-slider {
		width: 50% !important;
	}

	.ui-slider.iwebsite-slider .ui-slider-handle {
		top: -10.5px;
	}

	.iwebsite-slider .ui-slider-handle.ui-corner-all.ui-state-default {
		height: 25px;
		width: 25px;
	}
}

@media only screen and (max-height:700px ){

}