/* Hide the default SantralCell widget */
#webphoneplus-widget,
#webphoneplus-container,
.webphoneplus-widget,
.webphoneplus-container,
#sc-login-window,
.sc-notification-div {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#sc-login-window * {
    box-sizing: border-box;
}


.sc-call-button {
    background-color: #279602;
    font-size: 10pt;
    color: #ffffff;
    font-family: Verdana;
    width: 54px;
    height: 35px;
    border: none;
    border-radius: 5px;
    margin: 2px;
}

.sc-call-button:hover {
    background-color: #165901;
    border: 1px solid #279602;
}

.sc-call-button:active {
    background-color: #3bd904;
    color: #000000;
}

.sc-notification-div {
    opacity: 1;
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

.sc-unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sc-keybutton {
    background-color: #585858;
    font-size: 10pt;
    color: #ffffff;
    font-family: Verdana;
    width: 54px;
    height: 35px;
    border: none;
    border-radius: 5px;
    margin: 2px;
}

.sc-keybutton:hover {
    background-color: #3a3939;
    border: 1px solid #585858;
}

.sc-keybutton:active {
    background-color: #9d9c9c;
    color: #000000;
}


.sc-detailbuttons:hover {
    background-color: #3b3b60 !important;
}

.sc-detailbuttons-active {
    background-color: #ef1a1a !important;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    border-radius: 10px;
}

#sc-exitbutton {
    background-color: #000000;
    visibility: visible;
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}


#sc-loading {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(192, 192, 192, 0.5);
    background-image: url("https://i.stack.imgur.com/MnyxU.gif");
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    left: 0px;
}



.sc-transfer-input {
    width:1px;
    background-color: #ffffff;
    margin: 3px 5px;
}


.sc-transfer-button {
}

.sc-transfer-button:hover {
    background-color: #3a3939 !important;
}

.sc-transfer-button:active {
    background-color: #9d9c9c !important;
    color: #000000 !important;
}
