#refLink {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 300px;
    padding: 6px;
    border-radius: 6px;
    border: none;
    
    z-index: 9999;
}

#link {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    background: #00aaff;
    color: white;
    cursor: pointer;

    z-index: 9999;
}

@media (max-width: 600px) {

    #refLink {
        width: 100px;           /* menor */
        font-size: 12px;        /* texto menor */
        padding: 4px;           /* menos espaço branco */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* vira ... */
    }

    #refLink::placeholder {
        font-size: 12px;
    }
}

#toggleSorteio {
    position: absolute;
    top: 60px;
    right: 10px;
    z-index: 9999;
}

.switchS {
    width: 50px;
    height: 26px;
    background: #555;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.switchS::before {
    content: "";
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

/* ATIVO */
.switchS.active {
    background: #00c853;
}

.switchS.active::before {
    left: 26px;
}