﻿/* back to top */
.back-to-top-container {
    text-align: right;
    display: none;
}

.back-to-top-container #back-to-top-button {
    display: inline-block;
    width: 160px;
    height: 60px;
    margin: 30px 30px 0 10px;
    margin-bottom: 0;
    position: fixed;
    bottom: -180px;
    right: 30px;
    z-index: 1000;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 18px 20px 15px 16px;
    border-radius: 4px;
    background-color: #007c9a;
    border: 2px solid #007c9a;
    color: #fff;
    white-space: nowrap;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.-icon-carat:before {
    /* content: "\e908"; */
    content: "\e900";
    font-family: "icomoon";
    transform: rotate(180deg);
}

a.-icon-carat {
    transition: none;
}

#back-to-top-button:hover,
.back-to-top-container .-icon-carat:hover {
    cursor: pointer;
    background-color: #fff;
    color: #007c9a;
}

#back-to-top-button:active {
    background-color: #fff;
    color: #007c9a;
}

.back-to-top-container .-icon-carat {
    display: inline-flex;
    z-index: 1000;
    margin-right: 6px;
}

@media print {
    .back-to-top-container {
        display: none !important;
    }
}