﻿/*@-moz-keyframes bounce {
    from {
        width: 50px;
        height: 50px;
    }

    to {
        width: 60px;
        height: 60px;
    }
}

@-webkit-keyframes bounce {
    from {
        width: 50px;
        height: 50px;
    }

    to {
        width: 60px;
        height: 60px;
    }
}

@keyframes bounce {
    from {
        width: 50px;
        height: 50px;
    }

    to {
        width: 55px;
        height: 55px;
    }
}*/

@keyframes blur {
    from {
        text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 50px #fff, 0 0 50px #7B96B8, 0 0 150px #7B96B8, 0 10px 100px #7B96B8, 0 10px 100px #7B96B8, 0 10px 100px #7B96B8, 0 10px 100px #7B96B8, 0 -10px 100px #7B96B8, 0 -10px 100px #7B96B8;
    }
}


@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




@keyframes pulsered {
    0% {
        -moz-box-shadow: 0 0 30px rgb(255, 0, 0);
        -webkit-box-shadow: 0 0 30px rgb(255, 0, 0);
        box-shadow: 0 0 30px rgb(255, 0, 0);
        border-radius: 50%;
    }

    25% {
        -moz-box-shadow: 0 0 30px rgb(255, 0, 0);
        -webkit-box-shadow: 0 0 30px rgb(255, 0, 0);
        box-shadow: 0 0 50px rgb(255, 0, 0);
        border-radius: 50%;
    }

    75% {
        -moz-box-shadow: 0 0 50px rgb(255, 0, 0);
        -webkit-box-shadow: 0 0 50px rgb(255, 0, 0);
        box-shadow: 0 0 50px rgb(255, 0, 0);
        border-radius: 50%;
    }

    100% {
        -moz-box-shadow: 0 0 50px rgba(173,0,0,0);
        -webkit-box-shadow: 0 0 300px rgba(173,0,0,0);
        box-shadow: 0 0 50px rgba(173,0,0,0);
        border-radius: 50%;
    }
}



.rec-no {
    margin: 0 0 0 0;
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

.rec-off {
    margin: 0 0 0 5px;
    background-color:  #a9a9a9 !important;
    background-image: url('../App_Images/buttons/rec.png');
    display: block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    border-radius: 50%;
    cursor: pointer;
}

    .rec-off:hover {
        /*background-color: #a97e7e;
        -moz-box-shadow: 0 0 20px rgb(255, 0, 0);
        -webkit-box-shadow: 0 0 20px rgb(255, 0, 0);
        box-shadow: 0 0 20px rgb(255, 0, 0);
        border-radius: 50%;*/
    }

.rec-on {
    margin: 0 0 0 5px;
    background-color: #a97e7e !important;
    background-image: url('../App_Images/buttons/rec.png');
    display: block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    border-radius: 50%;
    cursor: none;
    -moz-animation-name: pulsered;
    -o-animation-name: pulsered;
    -webkit-animation-name: pulsered;
    animation-name: pulsered;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


.rec-stop-on {
    background-image: url('../App_Images/buttons/stop_rec.png');
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
}

    .rec-stop-on:hover {
        background-color: rgb(0, 0, 0);
        -moz-box-shadow: 0 0 20px rgb(0, 0, 0);
        -webkit-box-shadow: 0 0 20px rgb(0, 0, 0);
        box-shadow: 0 0 20px rgb(0, 0, 0);
        border-radius: 50%;
        cursor: pointer;
    }

.rec-stop-off {
    background-image: url('../App_Images/buttons/stop_rec.png');
    border-radius: 50%;
    border-top: 0 solid #3498db; /* Blue */
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
}

    .rec-stop-off:hover {
        border-radius: 50%;
        /*background-color: rgb(0, 0, 0);*/
    }


.hangup-active {
    background-image: url('../App_Images/buttons/hang_up.png');
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
}

    .hangup-active:hover {
        border: 0 solid #f3f3f3; /* Light grey */
        border-top: 0 solid #3498db; /* Blue */
        border-radius: 20%;
        /*-moz-animation: spin 10s linear infinite;
        -o-animation: spin 10s linear infinite;
        -webkit-animation: spin 10s linear infinite;
        animation: spin 10s linear infinite;*/
        box-shadow: 0 0 20px rgb(255, 0, 0);
    }

.answer-active {
    background-image: url('../App_Images/buttons/answer.png');
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
}

    .answer-active:hover {
        border: 0 solid #f3f3f3; /* Light grey */
        border-top: 0 solid #3498db; /* Blue */
        border-radius: 20%;
        /*-moz-animation: spin 10s linear infinite;
        -o-animation: spin 10s linear infinite;
        -webkit-animation: spin 10s linear infinite;
        animation: spin 10s linear infinite;*/
        box-shadow: 0 0 20px rgb(0, 255, 26);
    }

.incoming {
    text-align: center;
    font-size: 2em;
    color: #fff;
    letter-spacing: -1px;
    font-weight: 400;
    text-transform: uppercase;
    -moz-animation: blur .75s ease-out infinite;
    -o-animation: blur .75s ease-out infinite;
    -webkit-animation: blur .75s ease-out infinite;
    animation: blur .75s ease-out infinite;
    text-shadow: 0 0 5px #808080, 0 0 7px #808080;
    -webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: 10; /* Safari 4.0 - 8.0 */
    -moz-animation-iteration-count: 10;
    -o-animation-iteration-count: 10;
    animation-iteration-count: 10;
}

.incomingoff {
    visibility: hidden;
}

.onoffswitch {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #999999;
    border-radius: 37px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    -webkit-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

    .onoffswitch-inner:before, .onoffswitch-inner:after {
        display: block;
        float: left;
        width: 50%;
        height: 28px;
        padding: 0;
        line-height: 28px;
        font-size: 17px;
        color: white;
        font-family: Trebuchet, Arial, sans-serif;
        font-weight: bold;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .onoffswitch-inner:before {
        content: "DIALER IS ON";
        padding-left: 15px;
        background-color: rgb(43, 126, 40);
        color: #FFFFFF;
    }

    .onoffswitch-inner:after {
        content: "DIALER IS OFF";
        padding-right: 15px;
        background-color: #EEEEEE;
        color: #999999;
        text-align: right;
    }

.onoffswitch-switch {
    display: block;
    width: 17px;
    margin: 8px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 147px;
    border: 3px solid #999999;
    border-radius: 37px;
    -moz-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}


/*.Save-Avaible {
    background-image: url('../App_Images/floppy-128.png');
    background-color: transparent;
    background-repeat: no-repeat;
    display: block;
    width: 128px;
    height: 128px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
}

    .Save-Avaible:hover {
        background-color: rgb(0, 0, 0);
    }*/

/*.Save-Succsess {
    background-image: url('../App_Images/OK-128.png');
    background-color: transparent;
    background-repeat: no-repeat;
    display: block;
    width: 128px;
    height: 128px;
    margin-top: -80px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
}

    .Save-Succsess:hover {
        background-color: rgb(0, 0, 0);
    }*/

    
.Save-Avaible {
  background: transparent;
  border: solid 2px #0066cc;
  border-radius: 7px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  transition: background 0.5s ease, color 0.5s ease, width 0.5s ease, padding 0.5s ease;
  outline: none;
  height: 35px;
  width: 120px;  

}
.Save-Avaible:hover {
  /*background: #19cc95;*/
  /*background: #3399ff;*/
  background: #0066cc;
  border: solid 2px #fff;
  color: #FFF;
  cursor: pointer;
}

.Save-Succsess {
  background: rgba(76, 175, 80, 1);
  border: solid 2px #fff;
  border-radius: 100px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  transition: background 0.5s ease, color 0.5s ease, width 0.5s ease, padding 0.5s ease;
  outline: none;
  height: 35px;
  width: 120px;  

}
.Save-Succsess:hover {
 
}

/*Special Hover on create offer on energy*/
.btn_en {
    position: relative;
    display: inline-block;
    letter-spacing: 1.2px;
    padding: 12px 32px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

    .btn_en:focus {
        outline: none;
    }

.btn--primary {
    color: #fff;
}

.btn--border {
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    box-sizing: border-box;
    border-color: #4cae4c;
}

.btn--animated {
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: #dab20a;
}

    .btn--animated.btn--border.btn--primary {
        border: 0px solid #fff;
    }

    .btn--animated:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #5cb85c;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        z-index: -1;
    }

    .btn--animated:hover {
        color: white;
    }

        .btn--animated:hover:before {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
            transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
        }