
#controlButton {
    background-color: transparent;
    color: #fff;
    border: 0;
    padding: 0;
    margin: 0;
    line-height: 1em;
    cursor: pointer;
    font-size:1em;
    font-weight: 600;
    transition: all linear .2s;
}

#controlButton:hover {
  color:#ffffff;
  text-decoration: underline;
  transition: all linear .2s;
}


#topbarAccess {
    position: relative;
    z-index: 300;
    background-color: #000;
    min-height: 20px;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 1em;
    padding: 5px 0px;
    height: 36px;
}

#topbarAccess .wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

.access-block {
    padding:0 0.5rem;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    box-sizing: inherit;
}

.access-expand {
    /* position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border: 1px solid black; z-index: 10000; */
    position: fixed;
    top: 40px;
    margin-top: 1.2rem;
    padding: 2rem  3rem 2rem 2rem;
    border-radius: 7px;
    background-color: #111;
    color: #fff;
    z-index: 1000;
    display: block;
    max-height: 80em;
    transition: visibility 0s ease, max-height 0.5s ease, opacity 0.5s ease;
    transition-delay: 0s, 0s, 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
    box-sizing: inherit;
    line-height: 1.5;
    width: 320px;
    margin-left:-220px;
}

.access-expand:before {
    display: block;
    position: absolute;
    top: -1.3rem;
    right: 2.3rem;
    width: 1em;
    height: 1.7em;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #111;
    border-left: 8px solid transparent;
    content: "";
    z-index: 1000;
}

.access-expand-title {
  color:#fff;
  font-size:20px;
  display: block;
  margin-bottom:0px;
}

.no-animation *, 
.animations-disabled * {
  animation: none ;
  transition: none ;
}

.form-switch {
  display: flex;
  height: 24px;
  position: relative;
  width: 40px;
}

.form-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-switch-checkbox:focus + .form-switch-checkbox-toggle{
  outline: #4479fb solid 0.1rem;
  /*box-shadow: 0 0 0.8rem #E20019;*/
}

.form-switch-checkbox-toggle {
  background-color: #888;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.form-switch-checkbox-toggle:before {
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 18px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 18px;
}

.form-switch-checkbox:checked + .form-switch-checkbox-toggle {
  background-color: #E20019;
}

.form-switch-checkbox:checked + .form-switch-checkbox-toggle:before {
  transform: translateX(14px);
}

.form-switch-checkbox-toggle{
  border-radius: 34px;
}

.form-switch-checkbox-toggle:before {
  border-radius: 50%;
}

.form-switch-checkbox-text {
  margin-left: 50px;
  font-size: 16px;
  display: inline-flex;
  height: 100%;
  align-items: center;
  line-height: 1em;
  color:#ffffff;
  width: 300px;
  position: absolute;
}


.form-switch-close {
  height: 36px;
  width: 36px;
  position: relative;
  box-sizing: border-box;
  line-height: 50px;
  display: inline-block;
  border: solid 0 #E20019;
  border-radius: 50px;
  transition: all 0.25s ease-out;
  margin-bottom: 20px;
  float: left;
  border: solid 4px #fff;
  background-color: transparent;
  position: absolute;
  top:1em;
  right:1em;
  cursor:pointer;
}

.form-switch-close:before,
.form-switch-close:after {
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2px;
  margin-left: -9px;
  display: block;
  height: 3px;
  width: 18px;
  background-color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 30px;
}
.form-switch-close:after {
  transform: rotate(-135deg);
}
.form-switch-close:hover {
  border: solid 18px #E20019;
  border: solid 18px #fff;
}
.form-switch-close:hover:before {
  transform: rotate(45deg);
  background-color: #E20019;
}
.form-switch-close:hover:after {
  transform: rotate(-45deg);
  background-color: #E20019;
}

.header-menu {
  top:36px !important;
}

.header-menu.menu-sticky {
  top:0 !important;  
}