
html {
    scroll-behavior: auto !important;
}
.backtotop {
    opacity: 0;
    visibility: hidden; 
    transition: opacity .6s ease, visibility .6s; 
    text-align: center;
    position: fixed;
    bottom: 60px;
    right: 50px;
    z-index: 1000;
    width: 46px;
    height: 46px;
	padding: 0px;
	/*outline-color: var(--focus-color); */
	cursor: pointer;
    text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible, .no-icon-image-present a:focus-visible, .search-icon:focus-visible , #language-selector-icon:focus-visible {
    outline: 2px solid var(--focus-color) !important;
}

#accessControl .fontScaler.current, #accessControl .fontScaler:hover, #accessControl .fontScaler:focus {
    outline: 2px solid #fff !important;
}

/* Mobile + Tablet (up to 992px) */
@media (max-width: 992px) {
    #accessControl .fontScaler.current,
    #accessControl .fontScaler:hover,
    #accessControl .fontScaler:focus {
        outline: 2px solid #000 !important;
    }
}

.backtotop.show {
    opacity: 1;
    visibility: visible;
}
.backtotop:hover {
    cursor: pointer;
}
span.backtotop-icon {
	color:#00a3ad;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color:#fff;
	transition: opacity .5s ease;
	opacity:1;
	transition: background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease;
}

@media screen and (min-width:1200px){
	.backtotop,span.backtotop-icon {
	--size: clamp(40px, 3.5vw, 60px);
    width: var(--size);
    height: var(--size);
}
}
@media screen and (min-width:1600px){
	.backtotop,span.backtotop-icon {
	--size: clamp(40px, 4.5vw, 60px);
    width: var(--size);
    height: var(--size);
}
}
@media screen and (min-width:1900px){
	.backtotop,span.backtotop-icon {
	--size: clamp(40px, 5vw, 60px);
    width: var(--size);
    height: var(--size);
}
}
@media screen and (max-width: 992px) {
    .backtotop {
        right: 15px;
    }	
}
@media screen and (max-width:550px) {
    .backtotop {
        bottom: 80px;
    }	
}