:root {
    --primary-color: #0a74bd;
    --secondary-color: #032338;
}

#gtt {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50px;
    color: white;
    position: fixed;
    right: -50px;
    bottom: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

#gtt:hover {
    background-color: var(--secondary-color);
}

.showBtn {
    right: 20px !important;
    position: fixed;
}