/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Burger - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityMenu .burger {
    display: table;
    position: relative;
    min-width: 20px;
    height: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.accessibilityMenu .burger .burgerLines {
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    overflow: hidden;
    width: 20px;
    height: 16px;
}

.accessibilityMenu .burger .burgerLine {
    display: block;
    position: absolute;
    top: 7px;
    height: 2px;
    border-radius: 0;
    background-color: var(--color-primary);
}

.accessibilityMenu .burger .burgerSlashes {
    display: inline-block;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

.accessibilityMenu .burger .burgerSlash {
    opacity: 0;
    display: block;
    position: absolute;
    top: 9px;
    left: -3px;
    width: 26px;
    height: 2px;
    border-radius: 0;
    background-color: var(--color-primary);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms;
}

.accessibilityMenu .burger .burgerText {
    display: block;
    position: relative;
    overflow: hidden;
    margin-left: 26px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
}

.accessibilityMenu .burger .burgerText .textOpen {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.accessibilityMenu .burger .burgerText .textClose {
    display: block;
    opacity: 0;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.accessibilityMenu .burger.burgerHover:hover .burgerLine {
    background-color: var(--color-secondary);
}

.accessibilityMenu .burger.burgerHover:hover .burgerSlash {
    background-color: var(--color-secondary);
}

.accessibilityMenu .burger.burgerHover:hover .burgerText {
    color: var(--color-secondary);
}

.accessibilityMenu .burger.open .burgerText .textOpen {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.accessibilityMenu .burger.open .burgerText .textClose {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.accessibilityMenu .burgerOne .burgerLine {
    width: 20px;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(1) {
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 0ms;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(2) {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 100ms;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(3) {
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 200ms;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(4) {
    opacity: 0;
    -webkit-transform: translate(-20px, -7px);
    transform: translate(-20px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 50ms;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(5) {
    opacity: 0;
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 150ms;
}

.accessibilityMenu .burgerOne .burgerLine:nth-of-type(6) {
    opacity: 0;
    -webkit-transform: translate(-20px, 7px);
    transform: translate(-20px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 250ms;
}

.accessibilityMenu .burgerOne .burgerSlash:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerOne .burgerSlash:nth-of-type(2) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerOne .burgerSlash:nth-of-type(3) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerOne .burgerSlash:nth-of-type(4) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(4) {
    opacity: 1;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(5) {
    opacity: 1;
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.accessibilityMenu .burgerOne.burgerHover:not(.open):hover .burgerLine:nth-of-type(6) {
    opacity: 1;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(1) {
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(2) {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(3) {
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(4) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(5) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerOne.open .burgerLine:nth-of-type(6) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerOne.open .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerOne.open .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerOne.open.burgerHover:hover .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(45px, 45px) rotate(45deg);
    transform: translate(45px, 45px) rotate(45deg);
    opacity: 0;
}

.accessibilityMenu .burgerOne.open.burgerHover:hover .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(-45px, 45px) rotate(-45deg);
    transform: translate(-45px, 45px) rotate(-45deg);
    opacity: 0;
}

.accessibilityMenu .burgerOne.open.burgerHover:hover .burgerSlash:nth-of-type(3) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerOne.open.burgerHover:hover .burgerSlash:nth-of-type(4) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(1) {
    width: 18px;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 0ms;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(2) {
    width: 20px;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 100ms;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(3) {
    width: 14px;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 200ms;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(4) {
    opacity: 0;
    width: 19px;
    -webkit-transform: translate(-20px, -7px);
    transform: translate(-20px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 50ms;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(5) {
    opacity: 0;
    width: 20px;
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 150ms;
}

.accessibilityMenu .burgerTwo .burgerLine:nth-of-type(6) {
    opacity: 0;
    width: 14px;
    -webkit-transform: translate(-20px, 7px);
    transform: translate(-20px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 250ms;
}

.accessibilityMenu .burgerTwo .burgerSlash:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerTwo .burgerSlash:nth-of-type(2) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerTwo .burgerSlash:nth-of-type(3) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerTwo .burgerSlash:nth-of-type(4) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(4) {
    opacity: 1;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(5) {
    opacity: 1;
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.accessibilityMenu .burgerTwo.burgerHover:not(.open):hover .burgerLine:nth-of-type(6) {
    opacity: 1;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(1) {
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(2) {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(3) {
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(4) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(5) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerTwo.open .burgerLine:nth-of-type(6) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerTwo.open .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerTwo.open .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerTwo.open.burgerHover:hover .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(45px, 45px) rotate(45deg);
    transform: translate(45px, 45px) rotate(45deg);
    opacity: 0;
}

.accessibilityMenu .burgerTwo.open.burgerHover:hover .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(-45px, 45px) rotate(-45deg);
    transform: translate(-45px, 45px) rotate(-45deg);
    opacity: 0;
}

.accessibilityMenu .burgerTwo.open.burgerHover:hover .burgerSlash:nth-of-type(3) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerTwo.open.burgerHover:hover .burgerSlash:nth-of-type(4) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(1) {
    width: 20px;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 0ms;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(2) {
    width: 20px;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 100ms;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(3) {
    width: 14px;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 200ms;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(4) {
    opacity: 0;
    width: 20px;
    -webkit-transform: translate(-20px, -7px);
    transform: translate(-20px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 50ms;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(5) {
    opacity: 0;
    width: 20px;
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 150ms;
}

.accessibilityMenu .burgerThree .burgerLine:nth-of-type(6) {
    opacity: 0;
    width: 14px;
    -webkit-transform: translate(-20px, 7px);
    transform: translate(-20px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 250ms;
}

.accessibilityMenu .burgerThree .burgerSlash:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerThree .burgerSlash:nth-of-type(2) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerThree .burgerSlash:nth-of-type(3) {
    -webkit-transform: rotate(45deg) translate(-40px, 0);
    transform: rotate(45deg) translate(-40px, 0);
}

.accessibilityMenu .burgerThree .burgerSlash:nth-of-type(4) {
    -webkit-transform: rotate(-45deg) translate(40px, 0);
    transform: rotate(-45deg) translate(40px, 0);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(4) {
    opacity: 1;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(5) {
    opacity: 1;
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.accessibilityMenu .burgerThree.burgerHover:not(.open):hover .burgerLine:nth-of-type(6) {
    opacity: 1;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(1) {
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(2) {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(3) {
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(4) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(5) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerThree.open .burgerLine:nth-of-type(6) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerThree.open .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerThree.open .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerThree.open.burgerHover:hover .burgerSlash:nth-of-type(1) {
    -webkit-transform: translate(45px, 45px) rotate(45deg);
    transform: translate(45px, 45px) rotate(45deg);
    opacity: 0;
}

.accessibilityMenu .burgerThree.open.burgerHover:hover .burgerSlash:nth-of-type(2) {
    -webkit-transform: translate(-45px, 45px) rotate(-45deg);
    transform: translate(-45px, 45px) rotate(-45deg);
    opacity: 0;
}

.accessibilityMenu .burgerThree.open.burgerHover:hover .burgerSlash:nth-of-type(3) {
    -webkit-transform: translate(0, 0) rotate(45deg);
    transform: translate(0, 0) rotate(45deg);
    opacity: 1;
}

.accessibilityMenu .burgerThree.open.burgerHover:hover .burgerSlash:nth-of-type(4) {
    -webkit-transform: translate(0, 0) rotate(-45deg);
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
}

.accessibilityMenu .burgerFour .burgerLines {
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms;
}

.accessibilityMenu .burgerFour .burgerLine {
    width: 20px;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(1) {
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 0ms;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(2) {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 100ms;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(3) {
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 200ms;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(4) {
    opacity: 0;
    -webkit-transform: translate(-20px, -7px);
    transform: translate(-20px, -7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 50ms;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(5) {
    opacity: 0;
    -webkit-transform: translate(-20px, 0px);
    transform: translate(-20px, 0px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 150ms;
}

.accessibilityMenu .burgerFour .burgerLine:nth-of-type(6) {
    opacity: 0;
    -webkit-transform: translate(-20px, 7px);
    transform: translate(-20px, 7px);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 360ms 250ms;
}

.accessibilityMenu .burgerFour .burgerSlashes {
    display: none;
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translate(20px, -7px);
    transform: translate(20px, -7px);
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: translate(20px, 7px);
    transform: translate(20px, 7px);
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(4) {
    opacity: 1;
    -webkit-transform: translate(0px, -7px);
    transform: translate(0px, -7px);
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(5) {
    opacity: 1;
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.accessibilityMenu .burgerFour.burgerHover:hover .burgerLine:nth-of-type(6) {
    opacity: 1;
    -webkit-transform: translate(0px, 7px);
    transform: translate(0px, 7px);
}

.accessibilityMenu .burgerFour.open .burgerLines {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Burger - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Menu - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

body.accessibilityOpened .accessibilityMenuWrap {
    display: block;
}

.accessibilityMenu {
    font-family: "Tahoma", "Calibri", "Helvetica", "Arial", "Verdana", "Times New Roman" !important;
    position: fixed;
    right: 0;
    bottom: 0;
    min-height: 450px;
    width: calc(100% - 30px);
    -webkit-transform: translate(calc(100% + 15px), 0);
    transform: translate(calc(100% + 15px), 0);
    transition: cubic-bezier(0.82, 0.01, 0.21, 1) 800ms;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    background-color: #095A5B;
    box-sizing: border-box;
    z-index: 9999;
    border-radius: 30px;
    margin: 15px;
}

@media screen and (min-width: 560px) {
    .accessibilityMenu {
        width: 500px;
    }
}

.accessibilityMenu h1,
.accessibilityMenu h2,
.accessibilityMenu h3,
.accessibilityMenu h4,
.accessibilityMenu h5,
.accessibilityMenu h6 {
    margin: 0 0 30px 0;
}

.accessibilityMenu.open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.accessibilityMenu .accessibilityMenuWrap {
    background-color: white;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    display: none;
    border-radius: 20px;
}

.accessibilityMenu .accessibilityMenuHeader {
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accessibilityMenu .accessibilityMenuLogo {
    display: flex;
    align-items: center;
}

.accessibilityMenu .accessibilityMenuLogo>* {
    margin: 0;
}

.accessibilityMenu .accessibilityMenuLogo>*:not(:last-child) {
    margin: 0 15px 0 0;
}

.accessibilityMenu .accessibilityMenuLogo h2 {
    color: black;
    font-size: 18px;
}

@media screen and (min-width: 560px) {
    .accessibilityMenu .accessibilityMenuLogo h2 {
        font-size: unset;
    }
}

.accessibilityMenu .burger .burgerSlash {
    background-color: black;
}

.accessibilityMenu .burger:hover .burgerSlash {
    background-color: #2EB7A0;
}

.accessibilityMenu .burger .burgerText {
    color: black;
}

.accessibilityMenu .burger:hover .burgerText {
    color: #2EB7A0;
}

.accessibilityMenu .accessibilityMainOptionsMenu {
    display: grid;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
}

@media screen and (min-width: 560px) {
    .accessibilityMenu .accessibilityMainOptionsMenu {
        grid-template-columns: repeat(12, 1fr);
    }
}

.accessibilityMenu .accessbilityMenuButton {
    cursor: pointer;
    position: absolute;
    left: 0;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    top: 30%;
    font-size: 0;
    background: #095A5B;
    padding: 4px 8px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.accessibilityMenu .accessibilityMenuItem .accessibilityMenuItemButton {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #095A5B;
    color: white;
    border: none;
    padding: 15px;
    text-align: left;
    cursor: pointer;
}

.accessibilityMenu .accessibilityMenuItem .accessibilityMenuItemButton::after {
    content: "";
    display: block;
    width: 30px;
    height: 17px;
    background-image: url("data:image/svg+xml;utf8,<svg width='450px' height='258px' viewBox='0 0 450 258' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><g id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'><g id='Group' transform='translate(1.000000, 1.000000)' fill='white' fill-rule='nonzero' stroke='white'><path d='M223.995,256 C215.807,256 207.615,252.875 201.375,246.625 L9.375,54.625 C-3.125,42.125 -3.125,21.875 9.375,9.375 C21.875,-3.125 42.125,-3.125 54.625,9.375 L223.995,178.8 L393.395,9.4 C405.895,-3.1 426.145,-3.1 438.645,9.4 C451.145,21.9 451.145,42.15 438.645,54.65 L246.645,246.65 C240.395,252.9 232.195,256 223.995,256 Z' id='Path'></path></g></g></svg>");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transition: cubic-bezier(0.82, 0.01, 0.21, 1) 800ms;
}

.accessibilityMenu .accessibilityMenuItem.active .accessibilityMenuItemButton::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accessibilityMenu .accessibilityMenuItem .accessibilityMenuItemInner {
    max-height: 0;
    overflow: hidden;
    transition: cubic-bezier(0.82, 0.01, 0.21, 1) 800ms;
}

.accessibilityMenu .accessibilityMenuItem.active .accessibilityMenuItemInner {
    max-height: var(--contentHeight);
}

.accessibilityMenu .accessibilityMenuItemInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1px;
    background-color: black;
}

.accessibilityMenu .accessibilityCredit {
    display: block;
    text-align: right;
    margin: 60px 0 0 0;
}

.accessibilityMenu .accessibilityCredit a {
    color: #2EB7A0;
}

.accessibilityMenu .accessibilityCredit a:hover {
    color: #095A5B;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Menu - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Button - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessbilityMenuButton {
    position: fixed;
    z-index: 30;
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
    color: #095A5B;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.accessbilityMenuButton:hover {
    color: #2EB7A0;
}

.accessbilityMenuButton.isActive {
    display: none;
}

.accessbilityMenuButton>svg {
    width: 100%;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Button - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Utilities - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

*:focus-visible {
    outline: 3px solid #66FF00 !important;
}

.visuallyHidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.accessibleFont {
    font-family: "Tahoma", "Calibri", "Helxvetica", "Arial", "Verdana", "Times New Roman" !important;
}

.accessibleFont * {
    font-family: "Tahoma", "Calibri", "Helvetica", "Arial", "Verdana", "Times New Roman" !important;
}

.accessibilityGreyScale .defaultPage,
.accessibilityGreyScale footer {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    overflow: hidden;
}

.linksHighLight {
    background: #FF1493 !important;
    color: #fff !important;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Utilities - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Notification - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityNotificationsContainer {
    display: flex;
    justify-content: center;
}

.accessibilityNotification {
    position: fixed;
    top: 10px;
    margin: 0 30px;
    max-width: 500px;
    width: calc(100% - 60px);
    min-height: 75px;
    border: none;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 18px;
    display: block;
    padding: 10px 20px;
    z-index: 99999999999;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Notification - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Main Options Default - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityMenu .accessibilityMainOptionsDefault {
    border: 1px solid black;
    border-radius: 8px;
    padding: 10px 20px;
    min-height: 60px;
    cursor: pointer;
    text-align: left;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: linear 300ms;
    font-size: 16px;
    color: black;
}

.accessibilityMenu .accessibilityMainOptionsDefault.isActive {
    background-color: black;
    color: white;
}

.accessibilityMenu .accessibilityMainOptionsDefault:hover {
    background-color: black;
    color: white;
}

.accessibilityMenu .accessibilityMainOptionsDefault svg {
    height: 15px;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Main Options Default - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Main Options Plus Minus - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityMenu .accessibilityMainOptionsPlusMinus {
    border: 1px solid black;
    border-radius: 8px;
    padding: 10px 20px;
    min-height: 60px;
    text-align: left;
    background-color: white;
    font-size: 16px;
    color: black;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus .accessibilityMainOptionsTitle {
    margin: 0 0 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus .accessibilityMainOptionsTitle svg {
    height: 15px;
    margin: 0 0 0 10px;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus .accessibilityMainOptionsControl {
    display: flex;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus button {
    transition: linear 300ms;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    border-radius: 50%;
    cursor: pointer;
    background-color: white;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus button:hover {
    background-color: black;
    color: white;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus button svg {
    height: 15px;
}

.accessibilityMenu .accessibilityMainOptionsPlusMinus .accessibilityMainOptionsControlDisplay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Main Options Plus Minus - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Skip To Content Button - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilitySkipToContentButton {
    position: fixed;
    top: 10px;
    left: 10px;
    max-height: 0;
    overflow: hidden;
    max-width: 200px;
    width: 100%;
    z-index: 9999999;
}

.accessibilitySkipToContentButton.focused {
    max-height: calc(var(--maxHeight) + 5px);
}

.accessibilitySkipToContentButton>button {
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    border: 1px dashed black;
    border-radius: 5px;
    background-color: black;
    color: white;
    font-weight: bold;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: cubic-bezier(0.82, 0.01, 0.21, 1) 800ms;
}

.accessibilitySkipToContentButton>button:hover {
    background-color: darkblue;
}

.accessibilitySkipToContentButton svg {
    height: 18px;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: cubic-bezier(0.82, 0.01, 0.21, 1) 800ms;
}

.accessibilitySkipToContentButton svg * {
    transition: none;
}

.accessibilitySkipToContentButton>button:hover svg {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Skip To Content Button - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Text Only Button - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

body.accessibilityTextOnlyOn {
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

body.accessibilityTextOnlyOn *:not(.MWAccessibility):not(.MWAccessibility *) {
    display: block !important;
    width: 100% !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 0 15px 0;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Text Only Button - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Tab Navigation - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityTabNavigationMenu .Menu * {
    visibility: visible !important;
}

.accessibilityTabNavigationActive>ul,
.accessibilityTabNavigationActive>.mega-menu-panel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Tab Navigation - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
  | Accessibility Form Error Handler - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.MWAccesssibility_formError {
    color: red;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Form Error Handler - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Eshop - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/

.accessibilityEshopItem {
    cursor: pointer;
}

.accessibilityEshopItem:focus-within,
.accessibilityEshopItem:hover {
    outline: 3px solid #66FF00 !important;
}

.accessibilityEshopItemImage {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | Accessibility Eshop - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/